From 5a3f91de536873b0c3a07e03da04c5619d5350b1 Mon Sep 17 00:00:00 2001 From: Mayuri Nehate <33225191+mayurinehate@users.noreply.github.com> Date: Thu, 27 Jul 2023 17:01:39 +0530 Subject: [PATCH 01/11] =?UTF-8?q?docs(ingest/bigquery):=20add=20permission?= =?UTF-8?q?s=20to=20profile=20google=20drive=20backed=E2=80=A6=20(#8490)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- metadata-ingestion/docs/sources/bigquery/bigquery_pre.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/metadata-ingestion/docs/sources/bigquery/bigquery_pre.md b/metadata-ingestion/docs/sources/bigquery/bigquery_pre.md index 2217e4185d4b7..0d856b915629d 100644 --- a/metadata-ingestion/docs/sources/bigquery/bigquery_pre.md +++ b/metadata-ingestion/docs/sources/bigquery/bigquery_pre.md @@ -85,6 +85,10 @@ If you have multiple projects in your BigQuery setup, the role should be granted client_id: "123456678890" ``` +##### Profiling Requirements + +To profile BigQuery external tables backed by Google Drive document, you need to grant document's "Viewer" access to service account's email address (`client_email` in credentials json file). To find the Google Drive document linked to BigQuery table, open the BigQuery console, locate the needed table, select "Details" from the drop-down menu in the top-right corner and refer "Source" field . To share access of Google Drive document, open the document, click "Share" in the top-right corner, add the service account's email address that needs "Viewer" access. ![Google Drive Sharing Dialog](https://github.com/datahub-project/static-assets/raw/main/imgs/integrations/bigquery/google_drive_share.png) + ### Lineage Computation Details When `use_exported_bigquery_audit_metadata` is set to `true`, lineage information will be computed using exported bigquery logs. On how to setup exported bigquery audit logs, refer to the following [docs](https://cloud.google.com/bigquery/docs/reference/auditlogs#defining_a_bigquery_log_sink_using_gcloud) on BigQuery audit logs. Note that only protoPayloads with "type.googleapis.com/google.cloud.audit.BigQueryAuditMetadata" are supported by the current ingestion version. The `bigquery_audit_metadata_datasets` parameter will be used only if `use_exported_bigquery_audit_metadat` is set to `true`. From b9060db5153ecd140b34aa7485519f1e04f7a9e3 Mon Sep 17 00:00:00 2001 From: Mayuri Nehate <33225191+mayurinehate@users.noreply.github.com> Date: Thu, 27 Jul 2023 17:02:48 +0530 Subject: [PATCH 02/11] chore(ingest/tableau): miscellaneous cleanup refractor (#8417) Co-authored-by: Andrew Sikowitz --- .../src/datahub/ingestion/source/tableau.py | 178 +- .../ingestion/source/tableau_constant.py | 1 - ...bleau_extract_all_project_mces_golden.json | 773 +- .../tableau/tableau_mces_golden.json | 773 +- .../tableau_mces_golden_deleted_stateful.json | 260 +- .../tableau_nested_project_mces_golden.json | 773 +- .../tableau_signout_timeout_mces_golden.json | 773 +- .../tableau/tableau_state_mces_golden.json | 32464 ---------------- ...au_with_platform_instance_mces_golden.json | 773 +- 9 files changed, 399 insertions(+), 36369 deletions(-) delete mode 100644 metadata-ingestion/tests/integration/tableau/tableau_state_mces_golden.json diff --git a/metadata-ingestion/src/datahub/ingestion/source/tableau.py b/metadata-ingestion/src/datahub/ingestion/source/tableau.py index 67bd1af6c2d7f..e923727a990f4 100644 --- a/metadata-ingestion/src/datahub/ingestion/source/tableau.py +++ b/metadata-ingestion/src/datahub/ingestion/source/tableau.py @@ -613,7 +613,6 @@ def _init_datasource_registry(self) -> None: ) continue self.datasource_project_map[ds.id] = ds.project_id - self.report.get_all_datasources_query_failed = False except Exception as e: self.report.get_all_datasources_query_failed = True logger.info(f"Get all datasources query failed due to error {e}") @@ -763,7 +762,7 @@ def get_connection_objects( offset += count - for obj in connection_objects.get(tableau_constant.NODES, []): + for obj in connection_objects.get(tableau_constant.NODES) or []: yield obj def emit_workbooks(self) -> Iterable[MetadataWorkUnit]: @@ -977,18 +976,19 @@ def get_upstream_tables(self, tables, datasource_name, browse_path, is_custom_sq ) continue - schema = table.get(tableau_constant.SCHEMA, "") - table_name = table.get(tableau_constant.NAME, "") - full_name = table.get(tableau_constant.FULL_NAME, "") + schema = table.get(tableau_constant.SCHEMA) or "" + table_name = table.get(tableau_constant.NAME) or "" + full_name = table.get(tableau_constant.FULL_NAME) or "" upstream_db = ( - table.get(tableau_constant.DATABASE, {}).get(tableau_constant.NAME, "") - if table.get(tableau_constant.DATABASE) is not None + table[tableau_constant.DATABASE][tableau_constant.NAME] + if table.get(tableau_constant.DATABASE) + and table[tableau_constant.DATABASE].get(tableau_constant.NAME) else "" ) logger.debug( "Processing Table with Connection Type: {0} and id {1}".format( - table.get(tableau_constant.CONNECTION_TYPE, ""), - table.get(tableau_constant.ID, ""), + table.get(tableau_constant.CONNECTION_TYPE) or "", + table.get(tableau_constant.ID) or "", ) ) schema = self._get_schema(schema, upstream_db, full_name) @@ -1008,7 +1008,7 @@ def get_upstream_tables(self, tables, datasource_name, browse_path, is_custom_sq table_urn = make_table_urn( self.config.env, upstream_db, - table.get(tableau_constant.CONNECTION_TYPE, ""), + table.get(tableau_constant.CONNECTION_TYPE) or "", schema, table_name, self.config.platform_instance_map, @@ -1209,7 +1209,9 @@ def emit_custom_sql_datasources(self) -> Iterable[MetadataWorkUnit]: f"Adding datasource {datasource_name}({datasource.get('id')}) to container" ) yield from add_entity_to_container( - self.gen_workbook_key(datasource[tableau_constant.WORKBOOK]), + self.gen_workbook_key( + datasource[tableau_constant.WORKBOOK][tableau_constant.ID] + ), tableau_constant.DATASET, dataset_snapshot.urn, ) @@ -1254,12 +1256,13 @@ def emit_custom_sql_datasources(self) -> Iterable[MetadataWorkUnit]: dataset_snapshot.aspects.append(dataset_properties) - view_properties = ViewPropertiesClass( - materialized=False, - viewLanguage=tableau_constant.SQL, - viewLogic=clean_query(csql.get(tableau_constant.QUERY) or ""), - ) - dataset_snapshot.aspects.append(view_properties) + if csql.get(tableau_constant.QUERY): + view_properties = ViewPropertiesClass( + materialized=False, + viewLanguage=tableau_constant.SQL, + viewLogic=clean_query(csql[tableau_constant.QUERY]), + ) + dataset_snapshot.aspects.append(view_properties) yield self.get_metadata_change_event(dataset_snapshot) yield self.get_metadata_change_proposal( @@ -1292,7 +1295,7 @@ def get_schema_metadata_for_custom_sql( fieldPath=field[tableau_constant.NAME], type=SchemaFieldDataType(type=TypeClass()), nativeDataType=nativeDataType, - description=field.get(tableau_constant.DESCRIPTION, ""), + description=field.get(tableau_constant.DESCRIPTION), ) fields.append(schema_field) @@ -1314,8 +1317,12 @@ def _get_published_datasource_project_luid(self, ds): and ds[tableau_constant.LUID] not in self.datasource_project_map.keys() and self.report.get_all_datasources_query_failed ): + logger.debug( + f"published datasource {ds.get(tableau_constant.NAME)} project_luid not found." + f" Running get datasource query for {ds[tableau_constant.LUID]}" + ) # Query and update self.datasource_project_map with luid - self._query_published_datasource_for_project_luid(ds) + self._query_published_datasource_for_project_luid(ds[tableau_constant.LUID]) if ( ds.get(tableau_constant.LUID) @@ -1331,16 +1338,12 @@ def _get_published_datasource_project_luid(self, ds): return None - def _query_published_datasource_for_project_luid(self, ds: dict) -> None: + def _query_published_datasource_for_project_luid(self, ds_luid: str) -> None: if self.server is None: return try: - logger.debug( - f"published datasource {ds.get(tableau_constant.NAME)} project_luid not found." - f" Running get datasource query for {ds[tableau_constant.LUID]}" - ) - ds_result = self.server.datasources.get_by_id(ds[tableau_constant.LUID]) + ds_result = self.server.datasources.get_by_id(ds_luid) if ds_result.project_id not in self.tableau_project_registry: logger.debug( f"project id ({ds_result.project_id}) of datasource {ds_result.name} is not present in project " @@ -1351,7 +1354,7 @@ def _query_published_datasource_for_project_luid(self, ds: dict) -> None: except Exception as e: self.report.num_get_datasource_query_failures += 1 logger.warning( - f"Failed to get datasource project_luid for {ds[tableau_constant.LUID]} due to error {e}" + f"Failed to get datasource project_luid for {ds_luid} due to error {e}" ) logger.debug("Error stack trace", exc_info=True) @@ -1589,11 +1592,11 @@ def emit_datasource( # Ownership owner = ( self._get_ownership( - datasource_info.get(tableau_constant.OWNER, {}).get( - tableau_constant.USERNAME, "" - ) + datasource_info[tableau_constant.OWNER][tableau_constant.USERNAME] ) if datasource_info + and datasource_info.get(tableau_constant.OWNER) + and datasource_info[tableau_constant.OWNER].get(tableau_constant.USERNAME) else None ) if owner is not None: @@ -1603,24 +1606,15 @@ def emit_datasource( dataset_props = DatasetPropertiesClass( name=datasource.get(tableau_constant.NAME), description=datasource.get(tableau_constant.DESCRIPTION), - customProperties={ - tableau_constant.HAS_EXTRACTS: str( - datasource.get(tableau_constant.HAS_EXTRACTS, "") - ), - tableau_constant.EXTRACT_LAST_REFRESH_TIME: datasource.get( - tableau_constant.EXTRACT_LAST_REFRESH_TIME, "" - ) - or "", - tableau_constant.EXTRACT_LAST_INCREMENTAL_UPDATE_TIME: datasource.get( - tableau_constant.EXTRACT_LAST_INCREMENTAL_UPDATE_TIME, "" - ) - or "", - tableau_constant.EXTRACT_LAST_UPDATE_TIME: datasource.get( - tableau_constant.EXTRACT_LAST_UPDATE_TIME, "" - ) - or "", - tableau_constant.TYPE: datasource.get(tableau_constant.TYPE_NAME, ""), - }, + customProperties=self.get_custom_props_from_dict( + datasource, + [ + tableau_constant.HAS_EXTRACTS, + tableau_constant.EXTRACT_LAST_REFRESH_TIME, + tableau_constant.EXTRACT_LAST_INCREMENTAL_UPDATE_TIME, + tableau_constant.EXTRACT_LAST_UPDATE_TIME, + ], + ), ) dataset_snapshot.aspects.append(dataset_props) @@ -1681,11 +1675,14 @@ def emit_datasource( dataset_snapshot.urn, ) + def get_custom_props_from_dict(self, obj: dict, keys: List[str]) -> Optional[dict]: + return {key: str(obj[key]) for key in keys if obj.get(key)} or None + def _get_datasource_container_key(self, datasource, workbook, is_embedded_ds): container_key: Optional[ContainerKey] = None if is_embedded_ds: # It is embedded then parent is container is workbook if workbook is not None: - container_key = self.gen_workbook_key(workbook) + container_key = self.gen_workbook_key(workbook[tableau_constant.ID]) else: logger.warning( f"Parent container not set for embedded datasource {datasource[tableau_constant.ID]}" @@ -1784,7 +1781,7 @@ def get_schema_metadata_for_table( schema_field = SchemaField( fieldPath=field[tableau_constant.NAME], type=SchemaFieldDataType(type=TypeClass()), - description="", + description=field.get(tableau_constant.DESCRIPTION), nativeDataType=nativeDataType, ) @@ -1804,7 +1801,7 @@ def get_schema_metadata_for_table( def get_sheetwise_upstream_datasources(self, sheet: dict) -> set: sheet_upstream_datasources = set() - for field in sheet.get(tableau_constant.DATA_SOURCE_FIELDS, ""): + for field in sheet.get(tableau_constant.DATA_SOURCE_FIELDS) or []: if field and field.get(tableau_constant.DATA_SOURCE): sheet_upstream_datasources.add( field[tableau_constant.DATA_SOURCE][tableau_constant.ID] @@ -1891,12 +1888,15 @@ def emit_sheets_as_charts( sheet.get(tableau_constant.CONTAINED_IN_DASHBOARDS) is not None and len(sheet[tableau_constant.CONTAINED_IN_DASHBOARDS]) > 0 and sheet[tableau_constant.CONTAINED_IN_DASHBOARDS][0] is not None + and sheet[tableau_constant.CONTAINED_IN_DASHBOARDS][0].get( + tableau_constant.PATH + ) ): # sheet contained in dashboard site_part = f"/t/{self.config.site}" if self.config.site else "" - dashboard_path = sheet[tableau_constant.CONTAINED_IN_DASHBOARDS][0].get( - tableau_constant.PATH, "" - ) + dashboard_path = sheet[tableau_constant.CONTAINED_IN_DASHBOARDS][0][ + tableau_constant.PATH + ] sheet_external_url = f"{self.config.connect_uri}{site_part}/authoring/{dashboard_path}/{sheet.get(tableau_constant.NAME, '')}" else: # hidden or viz-in-tooltip sheet @@ -1920,15 +1920,15 @@ def emit_sheets_as_charts( # Chart Info chart_info = ChartInfoClass( description="", - title=sheet.get(tableau_constant.NAME, ""), + title=sheet.get(tableau_constant.NAME) or "", lastModified=last_modified, externalUrl=sheet_external_url if self.config.ingest_external_links_for_charts else None, inputs=sorted(datasource_urn), - customProperties={ - tableau_constant.LUID: sheet.get(tableau_constant.LUID) or "" - }, + customProperties=self.get_custom_props_from_dict( + sheet, [tableau_constant.LUID] + ), ) chart_snapshot.aspects.append(chart_info) # chart_snapshot doesn't support the stat aspect as list element and hence need to emit MCP @@ -1964,13 +1964,10 @@ def emit_sheets_as_charts( chart_snapshot.aspects.append(owner) # Tags - tag_list = sheet.get(tableau_constant.TAGS, []) - if tag_list and self.config.ingest_tags: - tag_list_str = [ - t.get(tableau_constant.NAME, "") for t in tag_list if t is not None - ] + tags = self.get_tags(sheet) + if tags: chart_snapshot.aspects.append( - builder.make_global_tag_aspect_with_tag_list(tag_list_str) + builder.make_global_tag_aspect_with_tag_list(tags) ) yield self.get_metadata_change_event(chart_snapshot) if sheet_external_url is not None and self.config.ingest_embed_url is True: @@ -1982,7 +1979,7 @@ def emit_sheets_as_charts( ) if workbook is not None: yield from add_entity_to_container( - self.gen_workbook_key(workbook), + self.gen_workbook_key(workbook[tableau_constant.ID]), tableau_constant.CHART, chart_snapshot.urn, ) @@ -2037,7 +2034,7 @@ def populate_sheet_upstream_fields( ) def emit_workbook_as_container(self, workbook: Dict) -> Iterable[MetadataWorkUnit]: - workbook_container_key = self.gen_workbook_key(workbook) + workbook_container_key = self.gen_workbook_key(workbook[tableau_constant.ID]) creator = workbook.get(tableau_constant.OWNER, {}).get( tableau_constant.USERNAME ) @@ -2049,11 +2046,9 @@ def emit_workbook_as_container(self, workbook: Dict) -> Iterable[MetadataWorkUni ) site_part = f"/site/{self.config.site}" if self.config.site else "" - workbook_uri = workbook.get("uri", "") + workbook_uri = workbook.get("uri") workbook_part = ( - workbook_uri[workbook_uri.index("/workbooks/") :] - if workbook.get("uri") - else None + workbook_uri[workbook_uri.index("/workbooks/") :] if workbook_uri else None ) workbook_external_url = ( f"{self.config.connect_uri}/#{site_part}{workbook_part}" @@ -2061,12 +2056,8 @@ def emit_workbook_as_container(self, workbook: Dict) -> Iterable[MetadataWorkUni else None ) - tag_list = workbook.get(tableau_constant.TAGS, []) - tag_list_str = ( - [t.get(tableau_constant.NAME, "") for t in tag_list if t is not None] - if (tag_list and self.config.ingest_tags) - else None - ) + tags = self.get_tags(workbook) + parent_key = None project_luid: Optional[str] = self._get_workbook_project_luid(workbook) if project_luid and project_luid in self.tableau_project_registry.keys(): @@ -2080,20 +2071,20 @@ def emit_workbook_as_container(self, workbook: Dict) -> Iterable[MetadataWorkUni yield from gen_containers( container_key=workbook_container_key, - name=workbook.get(tableau_constant.NAME, ""), + name=workbook.get(tableau_constant.NAME) or "", parent_container_key=parent_key, description=workbook.get(tableau_constant.DESCRIPTION), sub_types=[BIContainerSubTypes.TABLEAU_WORKBOOK], owner_urn=owner_urn, external_url=workbook_external_url, - tags=tag_list_str, + tags=tags, ) - def gen_workbook_key(self, workbook: Dict) -> WorkbookKey: + def gen_workbook_key(self, workbook_id: str) -> WorkbookKey: return WorkbookKey( platform=self.platform, instance=self.config.platform_instance, - workbook_id=workbook[tableau_constant.ID], + workbook_id=workbook_id, ) def gen_project_key(self, project_luid): @@ -2182,6 +2173,18 @@ def emit_dashboards(self) -> Iterable[MetadataWorkUnit]: dashboard, dashboard.get(tableau_constant.WORKBOOK) ) + def get_tags(self, obj: dict) -> Optional[List[str]]: + tag_list = obj.get(tableau_constant.TAGS, []) + if tag_list and self.config.ingest_tags: + tag_list_str = [ + t[tableau_constant.NAME] + for t in tag_list + if t is not None and t.get(tableau_constant.NAME) + ] + + return tag_list_str + return None + def emit_dashboard( self, dashboard: dict, workbook: Optional[Dict] ) -> Iterable[MetadataWorkUnit]: @@ -2223,19 +2226,16 @@ def emit_dashboard( dashboardUrl=dashboard_external_url if self.config.ingest_external_links_for_dashboards else None, - customProperties={ - tableau_constant.LUID: dashboard.get(tableau_constant.LUID) or "" - }, + customProperties=self.get_custom_props_from_dict( + dashboard, [tableau_constant.LUID] + ), ) dashboard_snapshot.aspects.append(dashboard_info_class) - tag_list = dashboard.get(tableau_constant.TAGS, []) - if tag_list and self.config.ingest_tags: - tag_list_str = [ - t.get(tableau_constant.NAME, "") for t in tag_list if t is not None - ] + tags = self.get_tags(dashboard) + if tags: dashboard_snapshot.aspects.append( - builder.make_global_tag_aspect_with_tag_list(tag_list_str) + builder.make_global_tag_aspect_with_tag_list(tags) ) if self.config.extract_usage_stats: @@ -2293,7 +2293,7 @@ def emit_dashboard( if workbook is not None: yield from add_entity_to_container( - self.gen_workbook_key(workbook), + self.gen_workbook_key(workbook[tableau_constant.ID]), tableau_constant.DASHBOARD, dashboard_snapshot.urn, ) diff --git a/metadata-ingestion/src/datahub/ingestion/source/tableau_constant.py b/metadata-ingestion/src/datahub/ingestion/source/tableau_constant.py index da398df932841..e80c9d8fd1f25 100644 --- a/metadata-ingestion/src/datahub/ingestion/source/tableau_constant.py +++ b/metadata-ingestion/src/datahub/ingestion/source/tableau_constant.py @@ -63,7 +63,6 @@ EXTRACT_LAST_REFRESH_TIME = "extractLastRefreshTime" EXTRACT_LAST_INCREMENTAL_UPDATE_TIME = "extractLastIncrementalUpdateTime" EXTRACT_LAST_UPDATE_TIME = "extractLastUpdateTime" -TYPE = "type" PUBLISHED_DATA_SOURCES_CONNECTION = "publishedDatasourcesConnection" DATA_SOURCE_FIELDS = "datasourceFields" SHEETS_CONNECTION = "sheetsConnection" diff --git a/metadata-ingestion/tests/integration/tableau/tableau_extract_all_project_mces_golden.json b/metadata-ingestion/tests/integration/tableau/tableau_extract_all_project_mces_golden.json index 665541a140cc9..e6782c1c9f5f3 100644 --- a/metadata-ingestion/tests/integration/tableau/tableau_extract_all_project_mces_golden.json +++ b/metadata-ingestion/tests/integration/tableau/tableau_extract_all_project_mces_golden.json @@ -1308,9 +1308,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/EmailPerformancebyCampaign/EmailPerformancebyCampaign/Campaign List", "title": "Campaign List", "description": "", @@ -1869,9 +1867,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/EmailPerformancebyCampaign/EmailPerformancebyCampaign/Summary", "title": "Summary", "description": "", @@ -2482,9 +2478,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/EmailPerformancebyCampaign/EmailPerformancebyCampaign/Mobile - Sent by Campaign", "title": "Mobile - Sent by Campaign", "description": "", @@ -2991,9 +2985,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/#/site/acryl/views/dvdrental/Sheet1", "title": "Sheet 1", "description": "", @@ -3136,9 +3128,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/#/site/acryl/views/dvdrental/Sheet2", "title": "Sheet 2", "description": "", @@ -3449,9 +3439,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/#/site/acryl/views/dvdrental/Sheet3", "title": "Sheet 3", "description": "", @@ -3646,9 +3634,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Opened Requests", "title": "Opened Requests", "description": "", @@ -4147,9 +4133,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Top 10 Items by Requests and YoY Change", "title": "Top 10 Items by Requests and YoY Change", "description": "", @@ -4616,9 +4600,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Opened Problems", "title": "Opened Problems", "description": "", @@ -5117,9 +5099,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Overdue", "title": "Overdue", "description": "", @@ -5499,9 +5479,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/High and Critical Priority Problems", "title": "High and Critical Priority Problems", "description": "", @@ -5861,9 +5839,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Total Incidents by Category and YoY Change", "title": "Total Incidents by Category and YoY Change", "description": "", @@ -6246,9 +6222,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Known Errors", "title": "Known Errors", "description": "", @@ -6686,9 +6660,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Overdue Requests", "title": "Overdue Requests", "description": "", @@ -7100,9 +7072,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/AVG Time to Solve an Incident", "title": "AVG Time to Solve an Incident", "description": "", @@ -7430,9 +7400,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Made SLA?", "title": "Made SLA?", "description": "", @@ -7792,9 +7760,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/#/site/acryl/views/ExecutiveDashboard/Tooltip-IncidentBreakdownbyPriority", "title": "Tooltip - Incident Breakdown by Priority", "description": "", @@ -8044,9 +8010,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Overdue Problems", "title": "Overdue Problems", "description": "", @@ -8484,9 +8448,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/#/site/acryl/views/ExecutiveDashboard/Tooltip-ProblemBreakdownbyPriority", "title": "Tooltip - Problem Breakdown by Priority", "description": "", @@ -8820,9 +8782,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/#/site/acryl/views/ExecutiveDashboard/Tooltip-RequestBreakdownbyPriority", "title": "Tooltip - Request Breakdown by Priority", "description": "", @@ -9182,9 +9142,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Age of Active Problems", "title": "Age of Active Problems", "description": "", @@ -9570,9 +9528,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Opened Incidents", "title": "Opened Incidents", "description": "", @@ -10010,9 +9966,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/#/site/acryl/views/Workbookpublishedds/Sheet1", "title": "published sheet ds", "description": "", @@ -10323,9 +10277,7 @@ }, { "com.linkedin.pegasus2avro.dashboard.DashboardInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "title": "dvd Rental Dashboard", "description": "", "charts": [ @@ -10425,9 +10377,7 @@ }, { "com.linkedin.pegasus2avro.dashboard.DashboardInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "title": "Story 1", "description": "", "charts": [], @@ -10525,9 +10475,7 @@ }, { "com.linkedin.pegasus2avro.dashboard.DashboardInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "title": "Executive Dashboard", "description": "", "charts": [ @@ -11006,9 +10954,7 @@ "customProperties": { "hasExtracts": "True", "extractLastRefreshTime": "2018-02-09T00:05:25Z", - "extractLastIncrementalUpdateTime": "", - "extractLastUpdateTime": "2018-02-09T00:05:25Z", - "type": "EmbeddedDatasource" + "extractLastUpdateTime": "2018-02-09T00:05:25Z" }, "name": "Marketo", "tags": [] @@ -12943,13 +12889,7 @@ }, { "com.linkedin.pegasus2avro.dataset.DatasetProperties": { - "customProperties": { - "hasExtracts": "False", - "extractLastRefreshTime": "", - "extractLastIncrementalUpdateTime": "", - "extractLastUpdateTime": "", - "type": "EmbeddedDatasource" - }, + "customProperties": {}, "name": "Customer Payment Query", "tags": [] } @@ -13279,13 +13219,7 @@ }, { "com.linkedin.pegasus2avro.dataset.DatasetProperties": { - "customProperties": { - "hasExtracts": "False", - "extractLastRefreshTime": "", - "extractLastIncrementalUpdateTime": "", - "extractLastUpdateTime": "", - "type": "EmbeddedDatasource" - }, + "customProperties": {}, "name": "actor+ (dvdrental)", "tags": [] } @@ -14189,13 +14123,7 @@ }, { "com.linkedin.pegasus2avro.dataset.DatasetProperties": { - "customProperties": { - "hasExtracts": "False", - "extractLastRefreshTime": "", - "extractLastIncrementalUpdateTime": "", - "extractLastUpdateTime": "", - "type": "EmbeddedDatasource" - }, + "customProperties": {}, "name": "Superstore Datasource", "tags": [] } @@ -15148,9 +15076,7 @@ "customProperties": { "hasExtracts": "True", "extractLastRefreshTime": "2018-01-18T19:35:39Z", - "extractLastIncrementalUpdateTime": "", - "extractLastUpdateTime": "2018-01-18T19:35:39Z", - "type": "EmbeddedDatasource" + "extractLastUpdateTime": "2018-01-18T19:35:39Z" }, "name": "Requests", "tags": [] @@ -22011,9 +21937,7 @@ "customProperties": { "hasExtracts": "True", "extractLastRefreshTime": "2018-01-18T20:21:33Z", - "extractLastIncrementalUpdateTime": "", - "extractLastUpdateTime": "2018-01-18T20:21:33Z", - "type": "EmbeddedDatasource" + "extractLastUpdateTime": "2018-01-18T20:21:33Z" }, "name": "Problems", "tags": [] @@ -26122,9 +26046,7 @@ "customProperties": { "hasExtracts": "True", "extractLastRefreshTime": "2018-01-18T20:13:08Z", - "extractLastIncrementalUpdateTime": "", - "extractLastUpdateTime": "2018-01-18T20:13:08Z", - "type": "EmbeddedDatasource" + "extractLastUpdateTime": "2018-01-18T20:13:08Z" }, "name": "Incidents", "tags": [] @@ -31464,13 +31386,7 @@ }, { "com.linkedin.pegasus2avro.dataset.DatasetProperties": { - "customProperties": { - "hasExtracts": "False", - "extractLastRefreshTime": "", - "extractLastIncrementalUpdateTime": "", - "extractLastUpdateTime": "", - "type": "EmbeddedDatasource" - }, + "customProperties": {}, "name": "test publish datasource", "tags": [] } @@ -31858,13 +31774,7 @@ }, { "com.linkedin.pegasus2avro.dataset.DatasetProperties": { - "customProperties": { - "hasExtracts": "False", - "extractLastRefreshTime": "", - "extractLastIncrementalUpdateTime": "", - "extractLastUpdateTime": "", - "type": "PublishedDatasource" - }, + "customProperties": {}, "name": "test publish datasource", "description": "description for test publish datasource", "tags": [] @@ -32324,13 +32234,7 @@ }, { "com.linkedin.pegasus2avro.dataset.DatasetProperties": { - "customProperties": { - "hasExtracts": "False", - "extractLastRefreshTime": "", - "extractLastIncrementalUpdateTime": "", - "extractLastUpdateTime": "", - "type": "PublishedDatasource" - }, + "customProperties": {}, "name": "Superstore Datasource", "description": "Description for Superstore dataset", "tags": [] @@ -33712,7 +33616,6 @@ { "fieldPath": "Test_Variant", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33725,7 +33628,6 @@ { "fieldPath": "Mailing_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33738,7 +33640,6 @@ { "fieldPath": "Campaign_Run_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33751,7 +33652,6 @@ { "fieldPath": "id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33764,7 +33664,6 @@ { "fieldPath": "Activity_Date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -33777,7 +33676,6 @@ { "fieldPath": "Choice_Number", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33790,7 +33688,6 @@ { "fieldPath": "Step_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33803,7 +33700,6 @@ { "fieldPath": "Campaign_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33816,7 +33712,6 @@ { "fieldPath": "Lead_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33829,7 +33724,6 @@ { "fieldPath": "Has_Predictive", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -33910,7 +33804,6 @@ { "fieldPath": "Campaign_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33923,7 +33816,6 @@ { "fieldPath": "Campaign_Run_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33936,7 +33828,6 @@ { "fieldPath": "Link", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -33949,7 +33840,6 @@ { "fieldPath": "Test_Variant", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33962,7 +33852,6 @@ { "fieldPath": "Platform", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -33975,7 +33864,6 @@ { "fieldPath": "id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33988,7 +33876,6 @@ { "fieldPath": "Activity_Date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -34001,7 +33888,6 @@ { "fieldPath": "Choice_Number", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34014,7 +33900,6 @@ { "fieldPath": "Mailing_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34027,7 +33912,6 @@ { "fieldPath": "Step_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34040,7 +33924,6 @@ { "fieldPath": "Lead_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34053,7 +33936,6 @@ { "fieldPath": "Link_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34066,7 +33948,6 @@ { "fieldPath": "Is_Predictive", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -34079,7 +33960,6 @@ { "fieldPath": "Device", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34092,7 +33972,6 @@ { "fieldPath": "Is_Mobile_Device", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -34105,7 +33984,6 @@ { "fieldPath": "User_Agent", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34186,7 +34064,6 @@ { "fieldPath": "Platform", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34199,7 +34076,6 @@ { "fieldPath": "Device", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34212,7 +34088,6 @@ { "fieldPath": "Choice_Number", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34225,7 +34100,6 @@ { "fieldPath": "Lead_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34238,7 +34112,6 @@ { "fieldPath": "Activity_Date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -34251,7 +34124,6 @@ { "fieldPath": "Test_Variant", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34264,7 +34136,6 @@ { "fieldPath": "Is_Mobile_Device", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -34277,7 +34148,6 @@ { "fieldPath": "Has_Predictive", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -34290,7 +34160,6 @@ { "fieldPath": "Step_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34303,7 +34172,6 @@ { "fieldPath": "User_Agent", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34316,7 +34184,6 @@ { "fieldPath": "Mailing_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34329,7 +34196,6 @@ { "fieldPath": "Campaign_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34342,7 +34208,6 @@ { "fieldPath": "Campaign_Run_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34355,7 +34220,6 @@ { "fieldPath": "id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34436,7 +34300,6 @@ { "fieldPath": "Test_Variant", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34449,7 +34312,6 @@ { "fieldPath": "Campaign_Run_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34462,7 +34324,6 @@ { "fieldPath": "Activity_Date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -34475,7 +34336,6 @@ { "fieldPath": "Mailing_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34488,7 +34348,6 @@ { "fieldPath": "Has_Predictive", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -34501,7 +34360,6 @@ { "fieldPath": "id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34514,7 +34372,6 @@ { "fieldPath": "Campaign_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34527,7 +34384,6 @@ { "fieldPath": "Step_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34540,7 +34396,6 @@ { "fieldPath": "Lead_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34553,7 +34408,6 @@ { "fieldPath": "Choice_Number", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34634,7 +34488,6 @@ { "fieldPath": "programName", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34647,7 +34500,6 @@ { "fieldPath": "name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34660,7 +34512,6 @@ { "fieldPath": "programId", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34673,7 +34524,6 @@ { "fieldPath": "description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34686,7 +34536,6 @@ { "fieldPath": "createdAt", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -34699,7 +34548,6 @@ { "fieldPath": "id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34712,7 +34560,6 @@ { "fieldPath": "workspaceName", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34725,7 +34572,6 @@ { "fieldPath": "updatedAt", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -34738,7 +34584,6 @@ { "fieldPath": "active", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -34819,7 +34664,6 @@ { "fieldPath": "postal_code", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34832,7 +34676,6 @@ { "fieldPath": "last_update", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -34845,7 +34688,6 @@ { "fieldPath": "phone", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34858,7 +34700,6 @@ { "fieldPath": "address2", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34871,7 +34712,6 @@ { "fieldPath": "address", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34884,7 +34724,6 @@ { "fieldPath": "city_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34897,7 +34736,6 @@ { "fieldPath": "district", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34910,7 +34748,6 @@ { "fieldPath": "address_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34991,7 +34828,6 @@ { "fieldPath": "last_update", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -35004,7 +34840,6 @@ { "fieldPath": "last_name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35017,7 +34852,6 @@ { "fieldPath": "first_name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35030,7 +34864,6 @@ { "fieldPath": "actor_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -35111,7 +34944,6 @@ { "fieldPath": "Person", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35124,7 +34956,6 @@ { "fieldPath": "Region", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35202,7 +35033,6 @@ { "fieldPath": "Returned", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35215,7 +35045,6 @@ { "fieldPath": "Order ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35293,7 +35122,6 @@ { "fieldPath": "Product ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35306,7 +35134,6 @@ { "fieldPath": "Category", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35319,7 +35146,6 @@ { "fieldPath": "Postal Code", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -35332,7 +35158,6 @@ { "fieldPath": "City", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35345,7 +35170,6 @@ { "fieldPath": "Quantity", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -35358,7 +35182,6 @@ { "fieldPath": "State", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35371,7 +35194,6 @@ { "fieldPath": "Order Date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.DateType": {} @@ -35384,7 +35206,6 @@ { "fieldPath": "Customer Name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35397,7 +35218,6 @@ { "fieldPath": "Country/Region", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35410,7 +35230,6 @@ { "fieldPath": "Sales", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -35423,7 +35242,6 @@ { "fieldPath": "Segment", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35436,7 +35254,6 @@ { "fieldPath": "Sub-Category", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35449,7 +35266,6 @@ { "fieldPath": "Profit", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -35462,7 +35278,6 @@ { "fieldPath": "Product Name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35475,7 +35290,6 @@ { "fieldPath": "Customer ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35488,7 +35302,6 @@ { "fieldPath": "Order ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35501,7 +35314,6 @@ { "fieldPath": "Row ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -35514,7 +35326,6 @@ { "fieldPath": "Discount", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -35527,7 +35338,6 @@ { "fieldPath": "Ship Date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.DateType": {} @@ -35540,7 +35350,6 @@ { "fieldPath": "Ship Mode", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35553,7 +35362,6 @@ { "fieldPath": "Region", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35633,7 +35441,6 @@ { "fieldPath": "contact_type", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35646,7 +35453,6 @@ { "fieldPath": "sys_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35659,7 +35465,6 @@ { "fieldPath": "user_input", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35672,7 +35477,6 @@ { "fieldPath": "opened_at", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -35685,7 +35489,6 @@ { "fieldPath": "expected_start", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -35698,7 +35501,6 @@ { "fieldPath": "delivery_plan", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35711,7 +35513,6 @@ { "fieldPath": "opened_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35724,7 +35525,6 @@ { "fieldPath": "delivery_task", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35737,7 +35537,6 @@ { "fieldPath": "approval_set", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -35750,7 +35549,6 @@ { "fieldPath": "urgency", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -35763,7 +35561,6 @@ { "fieldPath": "comments", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35776,7 +35573,6 @@ { "fieldPath": "active", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -35789,7 +35585,6 @@ { "fieldPath": "priority", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -35802,7 +35597,6 @@ { "fieldPath": "knowledge", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -35815,7 +35609,6 @@ { "fieldPath": "closed_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35828,7 +35621,6 @@ { "fieldPath": "activity_due", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -35841,7 +35633,6 @@ { "fieldPath": "assignment_group", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35854,7 +35645,6 @@ { "fieldPath": "correlation_display", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35867,7 +35657,6 @@ { "fieldPath": "state", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -35880,7 +35669,6 @@ { "fieldPath": "work_end", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -35893,7 +35681,6 @@ { "fieldPath": "description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35906,7 +35693,6 @@ { "fieldPath": "business_service", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35919,7 +35705,6 @@ { "fieldPath": "approval_history", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35932,7 +35717,6 @@ { "fieldPath": "upon_reject", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35945,7 +35729,6 @@ { "fieldPath": "sys_created_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -35958,7 +35741,6 @@ { "fieldPath": "parent", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35971,7 +35753,6 @@ { "fieldPath": "order", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -35984,7 +35765,6 @@ { "fieldPath": "work_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35997,7 +35777,6 @@ { "fieldPath": "work_notes_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36010,7 +35789,6 @@ { "fieldPath": "sys_created_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36023,7 +35801,6 @@ { "fieldPath": "sys_updated_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36036,7 +35813,6 @@ { "fieldPath": "work_start", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36049,7 +35825,6 @@ { "fieldPath": "group_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36062,7 +35837,6 @@ { "fieldPath": "sys_mod_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -36075,7 +35849,6 @@ { "fieldPath": "location", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36088,7 +35861,6 @@ { "fieldPath": "correlation_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36101,7 +35873,6 @@ { "fieldPath": "sys_updated_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36114,7 +35885,6 @@ { "fieldPath": "sla_due", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36127,7 +35897,6 @@ { "fieldPath": "number", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36140,7 +35909,6 @@ { "fieldPath": "business_duration", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36153,7 +35921,6 @@ { "fieldPath": "follow_up", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36166,7 +35933,6 @@ { "fieldPath": "additional_assignee_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36179,7 +35945,6 @@ { "fieldPath": "escalation", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -36192,7 +35957,6 @@ { "fieldPath": "due_date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36205,7 +35969,6 @@ { "fieldPath": "approval", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36218,7 +35981,6 @@ { "fieldPath": "made_sla", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -36231,7 +35993,6 @@ { "fieldPath": "assigned_to", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36244,7 +36005,6 @@ { "fieldPath": "calendar_duration", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36257,7 +36017,6 @@ { "fieldPath": "closed_at", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36270,7 +36029,6 @@ { "fieldPath": "sys_domain", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36283,7 +36041,6 @@ { "fieldPath": "cmdb_ci", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36296,7 +36053,6 @@ { "fieldPath": "comments_and_work_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36309,7 +36065,6 @@ { "fieldPath": "impact", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -36322,7 +36077,6 @@ { "fieldPath": "close_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36335,7 +36089,6 @@ { "fieldPath": "reassignment_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -36348,7 +36101,6 @@ { "fieldPath": "company", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36361,7 +36113,6 @@ { "fieldPath": "sys_domain_path", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36374,7 +36125,6 @@ { "fieldPath": "short_description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36387,7 +36137,6 @@ { "fieldPath": "upon_approval", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36400,7 +36149,6 @@ { "fieldPath": "watch_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36413,7 +36161,6 @@ { "fieldPath": "time_worked", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36426,7 +36173,6 @@ { "fieldPath": "sys_class_name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36507,7 +36253,6 @@ { "fieldPath": "work_notes_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36520,7 +36265,6 @@ { "fieldPath": "closed_at", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36533,7 +36277,6 @@ { "fieldPath": "user_input", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36546,7 +36289,6 @@ { "fieldPath": "requested_for", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36559,7 +36301,6 @@ { "fieldPath": "opened_at", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36572,7 +36313,6 @@ { "fieldPath": "price", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36585,7 +36325,6 @@ { "fieldPath": "assigned_to", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36598,7 +36337,6 @@ { "fieldPath": "number", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36611,7 +36349,6 @@ { "fieldPath": "delivery_plan", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36624,7 +36361,6 @@ { "fieldPath": "delivery_address", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36637,7 +36373,6 @@ { "fieldPath": "business_duration", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36650,7 +36385,6 @@ { "fieldPath": "urgency", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -36663,7 +36397,6 @@ { "fieldPath": "work_end", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36676,7 +36409,6 @@ { "fieldPath": "due_date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36689,7 +36421,6 @@ { "fieldPath": "parent", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36702,7 +36433,6 @@ { "fieldPath": "made_sla", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -36715,7 +36445,6 @@ { "fieldPath": "assignment_group", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36728,7 +36457,6 @@ { "fieldPath": "sys_class_name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36741,7 +36469,6 @@ { "fieldPath": "additional_assignee_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36754,7 +36481,6 @@ { "fieldPath": "work_start", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36767,7 +36493,6 @@ { "fieldPath": "sys_domain_path", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36780,7 +36505,6 @@ { "fieldPath": "time_worked", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36793,7 +36517,6 @@ { "fieldPath": "comments_and_work_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36806,7 +36529,6 @@ { "fieldPath": "group_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36819,7 +36541,6 @@ { "fieldPath": "business_service", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36832,7 +36553,6 @@ { "fieldPath": "correlation_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36845,7 +36565,6 @@ { "fieldPath": "cmdb_ci", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36858,7 +36577,6 @@ { "fieldPath": "requested_date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.DateType": {} @@ -36871,7 +36589,6 @@ { "fieldPath": "follow_up", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36884,7 +36601,6 @@ { "fieldPath": "sys_updated_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36897,7 +36613,6 @@ { "fieldPath": "state", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -36910,7 +36625,6 @@ { "fieldPath": "comments", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36923,7 +36637,6 @@ { "fieldPath": "approval_set", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36936,7 +36649,6 @@ { "fieldPath": "close_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36949,7 +36661,6 @@ { "fieldPath": "upon_approval", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36962,7 +36673,6 @@ { "fieldPath": "company", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36975,7 +36685,6 @@ { "fieldPath": "activity_due", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36988,7 +36697,6 @@ { "fieldPath": "contact_type", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37001,7 +36709,6 @@ { "fieldPath": "approval", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37014,7 +36721,6 @@ { "fieldPath": "calendar_duration", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -37027,7 +36733,6 @@ { "fieldPath": "reassignment_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -37040,7 +36745,6 @@ { "fieldPath": "delivery_task", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37053,7 +36757,6 @@ { "fieldPath": "approval_history", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37066,7 +36769,6 @@ { "fieldPath": "sys_created_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -37079,7 +36781,6 @@ { "fieldPath": "request_state", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37092,7 +36793,6 @@ { "fieldPath": "watch_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37105,7 +36805,6 @@ { "fieldPath": "upon_reject", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37118,7 +36817,6 @@ { "fieldPath": "expected_start", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -37131,7 +36829,6 @@ { "fieldPath": "active", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -37144,7 +36841,6 @@ { "fieldPath": "opened_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37157,7 +36853,6 @@ { "fieldPath": "work_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37170,7 +36865,6 @@ { "fieldPath": "impact", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -37183,7 +36877,6 @@ { "fieldPath": "description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37196,7 +36889,6 @@ { "fieldPath": "sla_due", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -37209,7 +36901,6 @@ { "fieldPath": "correlation_display", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37222,7 +36913,6 @@ { "fieldPath": "priority", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -37235,7 +36925,6 @@ { "fieldPath": "stage", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37248,7 +36937,6 @@ { "fieldPath": "sys_created_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37261,7 +36949,6 @@ { "fieldPath": "sys_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37274,7 +36961,6 @@ { "fieldPath": "escalation", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -37287,7 +36973,6 @@ { "fieldPath": "closed_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37300,7 +36985,6 @@ { "fieldPath": "short_description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37313,7 +36997,6 @@ { "fieldPath": "location", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37326,7 +37009,6 @@ { "fieldPath": "special_instructions", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37339,7 +37021,6 @@ { "fieldPath": "order", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -37352,7 +37033,6 @@ { "fieldPath": "sys_updated_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37365,7 +37045,6 @@ { "fieldPath": "sys_mod_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -37378,7 +37057,6 @@ { "fieldPath": "knowledge", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -37391,7 +37069,6 @@ { "fieldPath": "sys_domain", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37404,7 +37081,6 @@ { "fieldPath": "calendar_stc", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -37485,7 +37161,6 @@ { "fieldPath": "watch_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37498,7 +37173,6 @@ { "fieldPath": "due_date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -37511,7 +37185,6 @@ { "fieldPath": "made_sla", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -37524,7 +37197,6 @@ { "fieldPath": "parent", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37537,7 +37209,6 @@ { "fieldPath": "assigned_to", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37550,7 +37221,6 @@ { "fieldPath": "sys_mod_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -37563,7 +37233,6 @@ { "fieldPath": "cmdb_ci", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37576,7 +37245,6 @@ { "fieldPath": "sys_domain", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37589,7 +37257,6 @@ { "fieldPath": "configuration_item", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37602,7 +37269,6 @@ { "fieldPath": "closed_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37615,7 +37281,6 @@ { "fieldPath": "active", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -37628,7 +37293,6 @@ { "fieldPath": "expected_start", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -37641,7 +37305,6 @@ { "fieldPath": "recurring_price", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37654,7 +37317,6 @@ { "fieldPath": "work_end", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -37667,7 +37329,6 @@ { "fieldPath": "short_description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37680,7 +37341,6 @@ { "fieldPath": "approval", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37693,7 +37353,6 @@ { "fieldPath": "opened_at", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -37706,7 +37365,6 @@ { "fieldPath": "order", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -37719,7 +37377,6 @@ { "fieldPath": "assignment_group", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37732,7 +37389,6 @@ { "fieldPath": "sc_catalog", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37745,7 +37401,6 @@ { "fieldPath": "knowledge", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -37758,7 +37413,6 @@ { "fieldPath": "stage", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37771,7 +37425,6 @@ { "fieldPath": "correlation_display", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37784,7 +37437,6 @@ { "fieldPath": "reassignment_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -37797,7 +37449,6 @@ { "fieldPath": "delivery_plan", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37810,7 +37461,6 @@ { "fieldPath": "sys_class_name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37823,7 +37473,6 @@ { "fieldPath": "user_input", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37836,7 +37485,6 @@ { "fieldPath": "description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37849,7 +37497,6 @@ { "fieldPath": "activity_due", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -37862,7 +37509,6 @@ { "fieldPath": "price", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37875,7 +37521,6 @@ { "fieldPath": "work_notes_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37888,7 +37533,6 @@ { "fieldPath": "estimated_delivery", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -37901,7 +37545,6 @@ { "fieldPath": "additional_assignee_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37914,7 +37557,6 @@ { "fieldPath": "context", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37927,7 +37569,6 @@ { "fieldPath": "business_duration", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -37940,7 +37581,6 @@ { "fieldPath": "approval_set", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -37953,7 +37593,6 @@ { "fieldPath": "priority", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -37966,7 +37605,6 @@ { "fieldPath": "sys_updated_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -37979,7 +37617,6 @@ { "fieldPath": "sys_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37992,7 +37629,6 @@ { "fieldPath": "state", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -38005,7 +37641,6 @@ { "fieldPath": "business_service", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38018,7 +37653,6 @@ { "fieldPath": "billable", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -38031,7 +37665,6 @@ { "fieldPath": "approval_history", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38044,7 +37677,6 @@ { "fieldPath": "recurring_frequency", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38057,7 +37689,6 @@ { "fieldPath": "contact_type", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38070,7 +37701,6 @@ { "fieldPath": "cat_item", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38083,7 +37713,6 @@ { "fieldPath": "sys_updated_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38096,7 +37725,6 @@ { "fieldPath": "sys_domain_path", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38109,7 +37737,6 @@ { "fieldPath": "comments", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38122,7 +37749,6 @@ { "fieldPath": "impact", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -38135,7 +37761,6 @@ { "fieldPath": "order_guide", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38148,7 +37773,6 @@ { "fieldPath": "sla_due", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -38161,7 +37785,6 @@ { "fieldPath": "sys_created_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38174,7 +37797,6 @@ { "fieldPath": "comments_and_work_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38187,7 +37809,6 @@ { "fieldPath": "opened_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38200,7 +37821,6 @@ { "fieldPath": "backordered", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -38213,7 +37833,6 @@ { "fieldPath": "correlation_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38226,7 +37845,6 @@ { "fieldPath": "group_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38239,7 +37857,6 @@ { "fieldPath": "delivery_task", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38252,7 +37869,6 @@ { "fieldPath": "number", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38265,7 +37881,6 @@ { "fieldPath": "sys_created_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -38278,7 +37893,6 @@ { "fieldPath": "company", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38291,7 +37905,6 @@ { "fieldPath": "work_start", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -38304,7 +37917,6 @@ { "fieldPath": "request", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38317,7 +37929,6 @@ { "fieldPath": "close_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38330,7 +37941,6 @@ { "fieldPath": "work_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38343,7 +37953,6 @@ { "fieldPath": "calendar_duration", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -38356,7 +37965,6 @@ { "fieldPath": "quantity", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -38369,7 +37977,6 @@ { "fieldPath": "follow_up", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -38382,7 +37989,6 @@ { "fieldPath": "location", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38395,7 +38001,6 @@ { "fieldPath": "upon_reject", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38408,7 +38013,6 @@ { "fieldPath": "closed_at", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -38421,7 +38025,6 @@ { "fieldPath": "time_worked", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38434,7 +38037,6 @@ { "fieldPath": "escalation", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -38447,7 +38049,6 @@ { "fieldPath": "urgency", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -38460,7 +38061,6 @@ { "fieldPath": "upon_approval", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38541,7 +38141,6 @@ { "fieldPath": "sc_catalogs", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38554,7 +38153,6 @@ { "fieldPath": "sys_updated_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38567,7 +38165,6 @@ { "fieldPath": "type", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38580,7 +38177,6 @@ { "fieldPath": "mobile_picture_type", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38593,7 +38189,6 @@ { "fieldPath": "workflow", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38606,7 +38201,6 @@ { "fieldPath": "sys_customer_update", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -38619,7 +38213,6 @@ { "fieldPath": "sys_class_name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38632,7 +38225,6 @@ { "fieldPath": "visible_standalone", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -38645,7 +38237,6 @@ { "fieldPath": "no_quantity", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -38658,7 +38249,6 @@ { "fieldPath": "order", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -38671,7 +38261,6 @@ { "fieldPath": "sys_updated_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -38684,7 +38273,6 @@ { "fieldPath": "sys_scope", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38697,7 +38285,6 @@ { "fieldPath": "template", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38710,7 +38297,6 @@ { "fieldPath": "no_proceed_checkout", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -38723,7 +38309,6 @@ { "fieldPath": "billable", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -38736,7 +38321,6 @@ { "fieldPath": "name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38749,7 +38333,6 @@ { "fieldPath": "delivery_plan", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38762,7 +38345,6 @@ { "fieldPath": "description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38775,7 +38357,6 @@ { "fieldPath": "meta", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38788,7 +38369,6 @@ { "fieldPath": "ordered_item_link", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38801,7 +38381,6 @@ { "fieldPath": "sys_mod_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -38814,7 +38393,6 @@ { "fieldPath": "sc_ic_version", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -38827,7 +38405,6 @@ { "fieldPath": "image", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38840,7 +38417,6 @@ { "fieldPath": "sys_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38853,7 +38429,6 @@ { "fieldPath": "short_description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38866,7 +38441,6 @@ { "fieldPath": "sys_policy", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38879,7 +38453,6 @@ { "fieldPath": "roles", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38892,7 +38465,6 @@ { "fieldPath": "picture", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38905,7 +38477,6 @@ { "fieldPath": "list_price", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38918,7 +38489,6 @@ { "fieldPath": "no_order_now", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -38931,7 +38501,6 @@ { "fieldPath": "vendor", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38944,7 +38513,6 @@ { "fieldPath": "sc_ic_item_staging", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38957,7 +38525,6 @@ { "fieldPath": "no_order", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -38970,7 +38537,6 @@ { "fieldPath": "entitlement_script", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38983,7 +38549,6 @@ { "fieldPath": "active", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -38996,7 +38561,6 @@ { "fieldPath": "icon", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39009,7 +38573,6 @@ { "fieldPath": "ignore_price", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -39022,7 +38585,6 @@ { "fieldPath": "start_closed", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -39035,7 +38597,6 @@ { "fieldPath": "sys_package", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39048,7 +38609,6 @@ { "fieldPath": "group", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39061,7 +38621,6 @@ { "fieldPath": "sys_replace_on_upgrade", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -39074,7 +38633,6 @@ { "fieldPath": "cost", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -39087,7 +38645,6 @@ { "fieldPath": "use_sc_layout", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -39100,7 +38657,6 @@ { "fieldPath": "location", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39113,7 +38669,6 @@ { "fieldPath": "availability", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39126,7 +38681,6 @@ { "fieldPath": "model", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39139,7 +38693,6 @@ { "fieldPath": "custom_cart", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39152,7 +38705,6 @@ { "fieldPath": "mobile_picture", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39165,7 +38717,6 @@ { "fieldPath": "category", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39178,7 +38729,6 @@ { "fieldPath": "no_cart", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -39191,7 +38741,6 @@ { "fieldPath": "mobile_hide_price", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -39204,7 +38753,6 @@ { "fieldPath": "sys_created_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39217,7 +38765,6 @@ { "fieldPath": "price", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39230,7 +38777,6 @@ { "fieldPath": "delivery_time", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -39243,7 +38789,6 @@ { "fieldPath": "no_search", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -39256,7 +38801,6 @@ { "fieldPath": "sys_created_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -39269,7 +38813,6 @@ { "fieldPath": "recurring_frequency", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39282,7 +38825,6 @@ { "fieldPath": "recurring_price", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39295,7 +38837,6 @@ { "fieldPath": "delivery_plan_script", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39308,7 +38849,6 @@ { "fieldPath": "visible_bundle", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -39321,7 +38861,6 @@ { "fieldPath": "sys_update_name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39334,7 +38873,6 @@ { "fieldPath": "sys_name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39347,7 +38885,6 @@ { "fieldPath": "visible_guide", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -39360,7 +38897,6 @@ { "fieldPath": "preview", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39373,7 +38909,6 @@ { "fieldPath": "omit_price", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -39454,7 +38989,6 @@ { "fieldPath": "u_u", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39467,7 +39001,6 @@ { "fieldPath": "sys_updated_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39480,7 +39013,6 @@ { "fieldPath": "source", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39493,7 +39025,6 @@ { "fieldPath": "exclude_manager", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -39506,7 +39037,6 @@ { "fieldPath": "description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39519,7 +39049,6 @@ { "fieldPath": "cost_center", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39532,7 +39061,6 @@ { "fieldPath": "sys_created_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39545,7 +39073,6 @@ { "fieldPath": "parent", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39558,7 +39085,6 @@ { "fieldPath": "sys_mod_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -39571,7 +39097,6 @@ { "fieldPath": "sys_updated_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -39584,7 +39109,6 @@ { "fieldPath": "u_lucha", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39597,7 +39121,6 @@ { "fieldPath": "sys_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39610,7 +39133,6 @@ { "fieldPath": "u_lu2", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39623,7 +39145,6 @@ { "fieldPath": "type", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39636,7 +39157,6 @@ { "fieldPath": "roles", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39649,7 +39169,6 @@ { "fieldPath": "sys_created_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -39662,7 +39181,6 @@ { "fieldPath": "default_assignee", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39675,7 +39193,6 @@ { "fieldPath": "email", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39688,7 +39205,6 @@ { "fieldPath": "manager", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39701,7 +39217,6 @@ { "fieldPath": "name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39714,7 +39229,6 @@ { "fieldPath": "active", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -39727,7 +39241,6 @@ { "fieldPath": "include_members", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -39808,7 +39321,6 @@ { "fieldPath": "opened_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39821,7 +39333,6 @@ { "fieldPath": "sys_class_name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39834,7 +39345,6 @@ { "fieldPath": "sys_created_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39847,7 +39357,6 @@ { "fieldPath": "sys_updated_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -39860,7 +39369,6 @@ { "fieldPath": "closed_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39873,7 +39381,6 @@ { "fieldPath": "close_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39886,7 +39393,6 @@ { "fieldPath": "made_sla", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -39899,7 +39405,6 @@ { "fieldPath": "state", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -39912,7 +39417,6 @@ { "fieldPath": "related_incidents", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -39925,7 +39429,6 @@ { "fieldPath": "business_duration", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -39938,7 +39441,6 @@ { "fieldPath": "sys_domain", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39951,7 +39453,6 @@ { "fieldPath": "delivery_task", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39964,7 +39465,6 @@ { "fieldPath": "priority", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -39977,7 +39477,6 @@ { "fieldPath": "sys_created_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -39990,7 +39489,6 @@ { "fieldPath": "sys_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40003,7 +39501,6 @@ { "fieldPath": "escalation", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -40016,7 +39513,6 @@ { "fieldPath": "business_service", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40029,7 +39525,6 @@ { "fieldPath": "comments_and_work_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40042,7 +39537,6 @@ { "fieldPath": "rfc", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40055,7 +39549,6 @@ { "fieldPath": "sys_domain_path", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40068,7 +39561,6 @@ { "fieldPath": "cmdb_ci", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40081,7 +39573,6 @@ { "fieldPath": "problem_state", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -40094,7 +39585,6 @@ { "fieldPath": "delivery_plan", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40107,7 +39597,6 @@ { "fieldPath": "user_input", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40120,7 +39609,6 @@ { "fieldPath": "active", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -40133,7 +39621,6 @@ { "fieldPath": "location", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40146,7 +39633,6 @@ { "fieldPath": "expected_start", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -40159,7 +39645,6 @@ { "fieldPath": "calendar_duration", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -40172,7 +39657,6 @@ { "fieldPath": "number", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40185,7 +39669,6 @@ { "fieldPath": "sla_due", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -40198,7 +39681,6 @@ { "fieldPath": "work_notes_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40211,7 +39693,6 @@ { "fieldPath": "knowledge", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -40224,7 +39705,6 @@ { "fieldPath": "sys_updated_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40237,7 +39717,6 @@ { "fieldPath": "time_worked", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40250,7 +39729,6 @@ { "fieldPath": "order", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -40263,7 +39741,6 @@ { "fieldPath": "assignment_group", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40276,7 +39753,6 @@ { "fieldPath": "upon_approval", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40289,7 +39765,6 @@ { "fieldPath": "company", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40302,7 +39777,6 @@ { "fieldPath": "opened_at", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -40315,7 +39789,6 @@ { "fieldPath": "group_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40328,7 +39801,6 @@ { "fieldPath": "work_around", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40341,7 +39813,6 @@ { "fieldPath": "description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40354,7 +39825,6 @@ { "fieldPath": "work_end", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -40367,7 +39837,6 @@ { "fieldPath": "correlation_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40380,7 +39849,6 @@ { "fieldPath": "approval_set", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -40393,7 +39861,6 @@ { "fieldPath": "urgency", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -40406,7 +39873,6 @@ { "fieldPath": "impact", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -40419,7 +39885,6 @@ { "fieldPath": "short_description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40432,7 +39897,6 @@ { "fieldPath": "approval", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40445,7 +39909,6 @@ { "fieldPath": "closed_at", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -40458,7 +39921,6 @@ { "fieldPath": "known_error", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -40471,7 +39933,6 @@ { "fieldPath": "due_date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -40484,7 +39945,6 @@ { "fieldPath": "work_start", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -40497,7 +39957,6 @@ { "fieldPath": "activity_due", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -40510,7 +39969,6 @@ { "fieldPath": "sys_mod_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -40523,7 +39981,6 @@ { "fieldPath": "correlation_display", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40536,7 +39993,6 @@ { "fieldPath": "contact_type", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40549,7 +40005,6 @@ { "fieldPath": "additional_assignee_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40562,7 +40017,6 @@ { "fieldPath": "approval_history", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40575,7 +40029,6 @@ { "fieldPath": "reassignment_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -40588,7 +40041,6 @@ { "fieldPath": "follow_up", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -40601,7 +40053,6 @@ { "fieldPath": "comments", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40614,7 +40065,6 @@ { "fieldPath": "work_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40627,7 +40077,6 @@ { "fieldPath": "parent", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40640,7 +40089,6 @@ { "fieldPath": "assigned_to", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40653,7 +40101,6 @@ { "fieldPath": "watch_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40666,7 +40113,6 @@ { "fieldPath": "upon_reject", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40747,7 +40193,6 @@ { "fieldPath": "sys_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40760,7 +40205,6 @@ { "fieldPath": "correlation_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40773,7 +40217,6 @@ { "fieldPath": "urgency", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -40786,7 +40229,6 @@ { "fieldPath": "severity", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -40799,7 +40241,6 @@ { "fieldPath": "business_service", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40812,7 +40253,6 @@ { "fieldPath": "location", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40825,7 +40265,6 @@ { "fieldPath": "approval_set", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -40838,7 +40277,6 @@ { "fieldPath": "closed_at", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -40851,7 +40289,6 @@ { "fieldPath": "parent_incident", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40864,7 +40301,6 @@ { "fieldPath": "subcategory", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40877,7 +40313,6 @@ { "fieldPath": "company", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40890,7 +40325,6 @@ { "fieldPath": "caller_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40903,7 +40337,6 @@ { "fieldPath": "resolved_at", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -40916,7 +40349,6 @@ { "fieldPath": "group_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40929,7 +40361,6 @@ { "fieldPath": "correlation_display", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40942,7 +40373,6 @@ { "fieldPath": "resolved_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40955,7 +40385,6 @@ { "fieldPath": "sys_created_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -40968,7 +40397,6 @@ { "fieldPath": "business_stc", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -40981,7 +40409,6 @@ { "fieldPath": "sys_domain_path", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40994,7 +40421,6 @@ { "fieldPath": "parent", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41007,7 +40433,6 @@ { "fieldPath": "category", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41020,7 +40445,6 @@ { "fieldPath": "user_input", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41033,7 +40457,6 @@ { "fieldPath": "number", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41046,7 +40469,6 @@ { "fieldPath": "escalation", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -41059,7 +40481,6 @@ { "fieldPath": "state", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -41072,7 +40493,6 @@ { "fieldPath": "approval_history", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41085,7 +40505,6 @@ { "fieldPath": "impact", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -41098,7 +40517,6 @@ { "fieldPath": "expected_start", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -41111,7 +40529,6 @@ { "fieldPath": "additional_assignee_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41124,7 +40541,6 @@ { "fieldPath": "child_incidents", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -41137,7 +40553,6 @@ { "fieldPath": "cmdb_ci", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41150,7 +40565,6 @@ { "fieldPath": "incident_state", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -41163,7 +40577,6 @@ { "fieldPath": "notify", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -41176,7 +40589,6 @@ { "fieldPath": "work_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41189,7 +40601,6 @@ { "fieldPath": "reassignment_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -41202,7 +40613,6 @@ { "fieldPath": "contact_type", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41215,7 +40625,6 @@ { "fieldPath": "opened_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41228,7 +40637,6 @@ { "fieldPath": "sys_class_name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41241,7 +40649,6 @@ { "fieldPath": "problem_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41254,7 +40661,6 @@ { "fieldPath": "due_date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -41267,7 +40673,6 @@ { "fieldPath": "approval", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41280,7 +40685,6 @@ { "fieldPath": "description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41293,7 +40697,6 @@ { "fieldPath": "order", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -41306,7 +40709,6 @@ { "fieldPath": "opened_at", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -41319,7 +40721,6 @@ { "fieldPath": "work_notes_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41332,7 +40733,6 @@ { "fieldPath": "priority", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -41345,7 +40745,6 @@ { "fieldPath": "time_worked", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41358,7 +40757,6 @@ { "fieldPath": "sys_domain", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41371,7 +40769,6 @@ { "fieldPath": "caused_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41384,7 +40781,6 @@ { "fieldPath": "sys_updated_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41397,7 +40793,6 @@ { "fieldPath": "upon_reject", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41410,7 +40805,6 @@ { "fieldPath": "delivery_task", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41423,7 +40817,6 @@ { "fieldPath": "knowledge", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -41436,7 +40829,6 @@ { "fieldPath": "sys_updated_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -41449,7 +40841,6 @@ { "fieldPath": "calendar_duration", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -41462,7 +40853,6 @@ { "fieldPath": "closed_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41475,7 +40865,6 @@ { "fieldPath": "comments", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41488,7 +40877,6 @@ { "fieldPath": "short_description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41501,7 +40889,6 @@ { "fieldPath": "assigned_to", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41514,7 +40901,6 @@ { "fieldPath": "assignment_group", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41527,7 +40913,6 @@ { "fieldPath": "work_end", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -41540,7 +40925,6 @@ { "fieldPath": "reopen_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -41553,7 +40937,6 @@ { "fieldPath": "work_start", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -41566,7 +40949,6 @@ { "fieldPath": "made_sla", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -41579,7 +40961,6 @@ { "fieldPath": "sys_mod_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -41592,7 +40973,6 @@ { "fieldPath": "calendar_stc", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -41605,7 +40985,6 @@ { "fieldPath": "rfc", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41618,7 +40997,6 @@ { "fieldPath": "delivery_plan", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41631,7 +41009,6 @@ { "fieldPath": "close_code", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41644,7 +41021,6 @@ { "fieldPath": "close_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41657,7 +41033,6 @@ { "fieldPath": "activity_due", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -41670,7 +41045,6 @@ { "fieldPath": "sys_created_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41683,7 +41057,6 @@ { "fieldPath": "active", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -41696,7 +41069,6 @@ { "fieldPath": "business_duration", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -41709,7 +41081,6 @@ { "fieldPath": "follow_up", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -41722,7 +41093,6 @@ { "fieldPath": "comments_and_work_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41735,7 +41105,6 @@ { "fieldPath": "upon_approval", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41748,7 +41117,6 @@ { "fieldPath": "watch_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41761,7 +41129,6 @@ { "fieldPath": "sla_due", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -41842,7 +41209,6 @@ { "fieldPath": "first_discovered", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -41855,7 +41221,6 @@ { "fieldPath": "operational_status", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -41868,7 +41233,6 @@ { "fieldPath": "last_discovered", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -41881,7 +41245,6 @@ { "fieldPath": "cost_cc", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41894,7 +41257,6 @@ { "fieldPath": "checked_in", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -41907,7 +41269,6 @@ { "fieldPath": "attributes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41920,7 +41281,6 @@ { "fieldPath": "serial_number", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41933,7 +41293,6 @@ { "fieldPath": "vendor", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41946,7 +41305,6 @@ { "fieldPath": "ip_address", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41959,7 +41317,6 @@ { "fieldPath": "support_group", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41972,7 +41329,6 @@ { "fieldPath": "sys_updated_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41985,7 +41341,6 @@ { "fieldPath": "asset", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41998,7 +41353,6 @@ { "fieldPath": "sys_domain", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42011,7 +41365,6 @@ { "fieldPath": "supported_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42024,7 +41377,6 @@ { "fieldPath": "invoice_number", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42037,7 +41389,6 @@ { "fieldPath": "managed_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42050,7 +41401,6 @@ { "fieldPath": "fault_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -42063,7 +41413,6 @@ { "fieldPath": "due_in", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42076,7 +41425,6 @@ { "fieldPath": "cost", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42089,7 +41437,6 @@ { "fieldPath": "correlation_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42102,7 +41449,6 @@ { "fieldPath": "justification", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42115,7 +41461,6 @@ { "fieldPath": "sys_created_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -42128,7 +41473,6 @@ { "fieldPath": "assigned", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -42141,7 +41485,6 @@ { "fieldPath": "model_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42154,7 +41497,6 @@ { "fieldPath": "sys_class_name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42167,7 +41509,6 @@ { "fieldPath": "comments", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42180,7 +41521,6 @@ { "fieldPath": "sys_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42193,7 +41533,6 @@ { "fieldPath": "company", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42206,7 +41545,6 @@ { "fieldPath": "lease_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42219,7 +41557,6 @@ { "fieldPath": "monitor", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -42232,7 +41569,6 @@ { "fieldPath": "cost_center", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42245,7 +41581,6 @@ { "fieldPath": "subcategory", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42258,7 +41593,6 @@ { "fieldPath": "delivery_date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -42271,7 +41605,6 @@ { "fieldPath": "assignment_group", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42284,7 +41617,6 @@ { "fieldPath": "can_print", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -42297,7 +41629,6 @@ { "fieldPath": "short_description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42310,7 +41641,6 @@ { "fieldPath": "model_number", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42323,7 +41653,6 @@ { "fieldPath": "name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42336,7 +41665,6 @@ { "fieldPath": "start_date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -42349,7 +41677,6 @@ { "fieldPath": "discovery_source", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42362,7 +41689,6 @@ { "fieldPath": "sys_domain_path", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42375,7 +41701,6 @@ { "fieldPath": "assigned_to", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42388,7 +41713,6 @@ { "fieldPath": "category", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42401,7 +41725,6 @@ { "fieldPath": "schedule", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42414,7 +41737,6 @@ { "fieldPath": "fqdn", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42427,7 +41749,6 @@ { "fieldPath": "warranty_expiration", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.DateType": {} @@ -42440,7 +41761,6 @@ { "fieldPath": "owned_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42453,7 +41773,6 @@ { "fieldPath": "asset_tag", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42466,7 +41785,6 @@ { "fieldPath": "manufacturer", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42479,7 +41797,6 @@ { "fieldPath": "purchase_date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.DateType": {} @@ -42492,7 +41809,6 @@ { "fieldPath": "location", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42505,7 +41821,6 @@ { "fieldPath": "department", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42518,7 +41833,6 @@ { "fieldPath": "sys_updated_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -42531,7 +41845,6 @@ { "fieldPath": "checked_out", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -42544,7 +41857,6 @@ { "fieldPath": "unverified", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -42557,7 +41869,6 @@ { "fieldPath": "skip_sync", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -42570,7 +41881,6 @@ { "fieldPath": "po_number", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42583,7 +41893,6 @@ { "fieldPath": "order_date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -42596,7 +41905,6 @@ { "fieldPath": "gl_account", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42609,7 +41917,6 @@ { "fieldPath": "maintenance_schedule", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42622,7 +41929,6 @@ { "fieldPath": "install_date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -42635,7 +41941,6 @@ { "fieldPath": "dns_domain", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42648,7 +41953,6 @@ { "fieldPath": "sys_created_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42661,7 +41965,6 @@ { "fieldPath": "mac_address", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42674,7 +41977,6 @@ { "fieldPath": "change_control", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42687,7 +41989,6 @@ { "fieldPath": "install_status", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -42700,7 +42001,6 @@ { "fieldPath": "due", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -42713,7 +42013,6 @@ { "fieldPath": "sys_mod_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} diff --git a/metadata-ingestion/tests/integration/tableau/tableau_mces_golden.json b/metadata-ingestion/tests/integration/tableau/tableau_mces_golden.json index 45b1ebca25b8a..ea15a2ac56b58 100644 --- a/metadata-ingestion/tests/integration/tableau/tableau_mces_golden.json +++ b/metadata-ingestion/tests/integration/tableau/tableau_mces_golden.json @@ -1076,9 +1076,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/EmailPerformancebyCampaign/EmailPerformancebyCampaign/Campaign List", "title": "Campaign List", "description": "", @@ -1637,9 +1635,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/EmailPerformancebyCampaign/EmailPerformancebyCampaign/Summary", "title": "Summary", "description": "", @@ -2250,9 +2246,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/EmailPerformancebyCampaign/EmailPerformancebyCampaign/Mobile - Sent by Campaign", "title": "Mobile - Sent by Campaign", "description": "", @@ -2759,9 +2753,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/#/site/acryl/views/dvdrental/Sheet1", "title": "Sheet 1", "description": "", @@ -2904,9 +2896,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/#/site/acryl/views/dvdrental/Sheet2", "title": "Sheet 2", "description": "", @@ -3217,9 +3207,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/#/site/acryl/views/dvdrental/Sheet3", "title": "Sheet 3", "description": "", @@ -3414,9 +3402,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Opened Requests", "title": "Opened Requests", "description": "", @@ -3915,9 +3901,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Top 10 Items by Requests and YoY Change", "title": "Top 10 Items by Requests and YoY Change", "description": "", @@ -4384,9 +4368,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Opened Problems", "title": "Opened Problems", "description": "", @@ -4885,9 +4867,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Overdue", "title": "Overdue", "description": "", @@ -5267,9 +5247,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/High and Critical Priority Problems", "title": "High and Critical Priority Problems", "description": "", @@ -5629,9 +5607,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Total Incidents by Category and YoY Change", "title": "Total Incidents by Category and YoY Change", "description": "", @@ -6014,9 +5990,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Known Errors", "title": "Known Errors", "description": "", @@ -6454,9 +6428,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Overdue Requests", "title": "Overdue Requests", "description": "", @@ -6868,9 +6840,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/AVG Time to Solve an Incident", "title": "AVG Time to Solve an Incident", "description": "", @@ -7198,9 +7168,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Made SLA?", "title": "Made SLA?", "description": "", @@ -7560,9 +7528,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/#/site/acryl/views/ExecutiveDashboard/Tooltip-IncidentBreakdownbyPriority", "title": "Tooltip - Incident Breakdown by Priority", "description": "", @@ -7812,9 +7778,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Overdue Problems", "title": "Overdue Problems", "description": "", @@ -8252,9 +8216,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/#/site/acryl/views/ExecutiveDashboard/Tooltip-ProblemBreakdownbyPriority", "title": "Tooltip - Problem Breakdown by Priority", "description": "", @@ -8588,9 +8550,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/#/site/acryl/views/ExecutiveDashboard/Tooltip-RequestBreakdownbyPriority", "title": "Tooltip - Request Breakdown by Priority", "description": "", @@ -8950,9 +8910,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Age of Active Problems", "title": "Age of Active Problems", "description": "", @@ -9338,9 +9296,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Opened Incidents", "title": "Opened Incidents", "description": "", @@ -9778,9 +9734,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/#/site/acryl/views/Workbookpublishedds/Sheet1", "title": "published sheet ds", "description": "", @@ -10091,9 +10045,7 @@ }, { "com.linkedin.pegasus2avro.dashboard.DashboardInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "title": "dvd Rental Dashboard", "description": "", "charts": [ @@ -10193,9 +10145,7 @@ }, { "com.linkedin.pegasus2avro.dashboard.DashboardInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "title": "Story 1", "description": "", "charts": [], @@ -10293,9 +10243,7 @@ }, { "com.linkedin.pegasus2avro.dashboard.DashboardInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "title": "Executive Dashboard", "description": "", "charts": [ @@ -10774,9 +10722,7 @@ "customProperties": { "hasExtracts": "True", "extractLastRefreshTime": "2018-02-09T00:05:25Z", - "extractLastIncrementalUpdateTime": "", - "extractLastUpdateTime": "2018-02-09T00:05:25Z", - "type": "EmbeddedDatasource" + "extractLastUpdateTime": "2018-02-09T00:05:25Z" }, "name": "Marketo", "tags": [] @@ -12711,13 +12657,7 @@ }, { "com.linkedin.pegasus2avro.dataset.DatasetProperties": { - "customProperties": { - "hasExtracts": "False", - "extractLastRefreshTime": "", - "extractLastIncrementalUpdateTime": "", - "extractLastUpdateTime": "", - "type": "EmbeddedDatasource" - }, + "customProperties": {}, "name": "Customer Payment Query", "tags": [] } @@ -13047,13 +12987,7 @@ }, { "com.linkedin.pegasus2avro.dataset.DatasetProperties": { - "customProperties": { - "hasExtracts": "False", - "extractLastRefreshTime": "", - "extractLastIncrementalUpdateTime": "", - "extractLastUpdateTime": "", - "type": "EmbeddedDatasource" - }, + "customProperties": {}, "name": "actor+ (dvdrental)", "tags": [] } @@ -13957,13 +13891,7 @@ }, { "com.linkedin.pegasus2avro.dataset.DatasetProperties": { - "customProperties": { - "hasExtracts": "False", - "extractLastRefreshTime": "", - "extractLastIncrementalUpdateTime": "", - "extractLastUpdateTime": "", - "type": "EmbeddedDatasource" - }, + "customProperties": {}, "name": "Superstore Datasource", "tags": [] } @@ -14916,9 +14844,7 @@ "customProperties": { "hasExtracts": "True", "extractLastRefreshTime": "2018-01-18T19:35:39Z", - "extractLastIncrementalUpdateTime": "", - "extractLastUpdateTime": "2018-01-18T19:35:39Z", - "type": "EmbeddedDatasource" + "extractLastUpdateTime": "2018-01-18T19:35:39Z" }, "name": "Requests", "tags": [] @@ -21779,9 +21705,7 @@ "customProperties": { "hasExtracts": "True", "extractLastRefreshTime": "2018-01-18T20:21:33Z", - "extractLastIncrementalUpdateTime": "", - "extractLastUpdateTime": "2018-01-18T20:21:33Z", - "type": "EmbeddedDatasource" + "extractLastUpdateTime": "2018-01-18T20:21:33Z" }, "name": "Problems", "tags": [] @@ -25890,9 +25814,7 @@ "customProperties": { "hasExtracts": "True", "extractLastRefreshTime": "2018-01-18T20:13:08Z", - "extractLastIncrementalUpdateTime": "", - "extractLastUpdateTime": "2018-01-18T20:13:08Z", - "type": "EmbeddedDatasource" + "extractLastUpdateTime": "2018-01-18T20:13:08Z" }, "name": "Incidents", "tags": [] @@ -31232,13 +31154,7 @@ }, { "com.linkedin.pegasus2avro.dataset.DatasetProperties": { - "customProperties": { - "hasExtracts": "False", - "extractLastRefreshTime": "", - "extractLastIncrementalUpdateTime": "", - "extractLastUpdateTime": "", - "type": "EmbeddedDatasource" - }, + "customProperties": {}, "name": "test publish datasource", "tags": [] } @@ -31626,13 +31542,7 @@ }, { "com.linkedin.pegasus2avro.dataset.DatasetProperties": { - "customProperties": { - "hasExtracts": "False", - "extractLastRefreshTime": "", - "extractLastIncrementalUpdateTime": "", - "extractLastUpdateTime": "", - "type": "PublishedDatasource" - }, + "customProperties": {}, "name": "test publish datasource", "description": "description for test publish datasource", "tags": [] @@ -32092,13 +32002,7 @@ }, { "com.linkedin.pegasus2avro.dataset.DatasetProperties": { - "customProperties": { - "hasExtracts": "False", - "extractLastRefreshTime": "", - "extractLastIncrementalUpdateTime": "", - "extractLastUpdateTime": "", - "type": "PublishedDatasource" - }, + "customProperties": {}, "name": "Superstore Datasource", "description": "Description for Superstore dataset", "tags": [] @@ -33480,7 +33384,6 @@ { "fieldPath": "Test_Variant", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33493,7 +33396,6 @@ { "fieldPath": "Mailing_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33506,7 +33408,6 @@ { "fieldPath": "Campaign_Run_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33519,7 +33420,6 @@ { "fieldPath": "id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33532,7 +33432,6 @@ { "fieldPath": "Activity_Date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -33545,7 +33444,6 @@ { "fieldPath": "Choice_Number", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33558,7 +33456,6 @@ { "fieldPath": "Step_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33571,7 +33468,6 @@ { "fieldPath": "Campaign_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33584,7 +33480,6 @@ { "fieldPath": "Lead_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33597,7 +33492,6 @@ { "fieldPath": "Has_Predictive", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -33678,7 +33572,6 @@ { "fieldPath": "Campaign_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33691,7 +33584,6 @@ { "fieldPath": "Campaign_Run_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33704,7 +33596,6 @@ { "fieldPath": "Link", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -33717,7 +33608,6 @@ { "fieldPath": "Test_Variant", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33730,7 +33620,6 @@ { "fieldPath": "Platform", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -33743,7 +33632,6 @@ { "fieldPath": "id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33756,7 +33644,6 @@ { "fieldPath": "Activity_Date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -33769,7 +33656,6 @@ { "fieldPath": "Choice_Number", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33782,7 +33668,6 @@ { "fieldPath": "Mailing_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33795,7 +33680,6 @@ { "fieldPath": "Step_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33808,7 +33692,6 @@ { "fieldPath": "Lead_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33821,7 +33704,6 @@ { "fieldPath": "Link_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -33834,7 +33716,6 @@ { "fieldPath": "Is_Predictive", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -33847,7 +33728,6 @@ { "fieldPath": "Device", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -33860,7 +33740,6 @@ { "fieldPath": "Is_Mobile_Device", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -33873,7 +33752,6 @@ { "fieldPath": "User_Agent", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -33954,7 +33832,6 @@ { "fieldPath": "Platform", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -33967,7 +33844,6 @@ { "fieldPath": "Device", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -33980,7 +33856,6 @@ { "fieldPath": "Choice_Number", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33993,7 +33868,6 @@ { "fieldPath": "Lead_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34006,7 +33880,6 @@ { "fieldPath": "Activity_Date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -34019,7 +33892,6 @@ { "fieldPath": "Test_Variant", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34032,7 +33904,6 @@ { "fieldPath": "Is_Mobile_Device", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -34045,7 +33916,6 @@ { "fieldPath": "Has_Predictive", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -34058,7 +33928,6 @@ { "fieldPath": "Step_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34071,7 +33940,6 @@ { "fieldPath": "User_Agent", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34084,7 +33952,6 @@ { "fieldPath": "Mailing_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34097,7 +33964,6 @@ { "fieldPath": "Campaign_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34110,7 +33976,6 @@ { "fieldPath": "Campaign_Run_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34123,7 +33988,6 @@ { "fieldPath": "id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34204,7 +34068,6 @@ { "fieldPath": "Test_Variant", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34217,7 +34080,6 @@ { "fieldPath": "Campaign_Run_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34230,7 +34092,6 @@ { "fieldPath": "Activity_Date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -34243,7 +34104,6 @@ { "fieldPath": "Mailing_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34256,7 +34116,6 @@ { "fieldPath": "Has_Predictive", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -34269,7 +34128,6 @@ { "fieldPath": "id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34282,7 +34140,6 @@ { "fieldPath": "Campaign_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34295,7 +34152,6 @@ { "fieldPath": "Step_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34308,7 +34164,6 @@ { "fieldPath": "Lead_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34321,7 +34176,6 @@ { "fieldPath": "Choice_Number", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34402,7 +34256,6 @@ { "fieldPath": "programName", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34415,7 +34268,6 @@ { "fieldPath": "name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34428,7 +34280,6 @@ { "fieldPath": "programId", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34441,7 +34292,6 @@ { "fieldPath": "description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34454,7 +34304,6 @@ { "fieldPath": "createdAt", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -34467,7 +34316,6 @@ { "fieldPath": "id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34480,7 +34328,6 @@ { "fieldPath": "workspaceName", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34493,7 +34340,6 @@ { "fieldPath": "updatedAt", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -34506,7 +34352,6 @@ { "fieldPath": "active", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -34587,7 +34432,6 @@ { "fieldPath": "postal_code", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34600,7 +34444,6 @@ { "fieldPath": "last_update", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -34613,7 +34456,6 @@ { "fieldPath": "phone", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34626,7 +34468,6 @@ { "fieldPath": "address2", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34639,7 +34480,6 @@ { "fieldPath": "address", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34652,7 +34492,6 @@ { "fieldPath": "city_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34665,7 +34504,6 @@ { "fieldPath": "district", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34678,7 +34516,6 @@ { "fieldPath": "address_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34759,7 +34596,6 @@ { "fieldPath": "last_update", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -34772,7 +34608,6 @@ { "fieldPath": "last_name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34785,7 +34620,6 @@ { "fieldPath": "first_name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34798,7 +34632,6 @@ { "fieldPath": "actor_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34879,7 +34712,6 @@ { "fieldPath": "Person", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34892,7 +34724,6 @@ { "fieldPath": "Region", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34970,7 +34801,6 @@ { "fieldPath": "Returned", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34983,7 +34813,6 @@ { "fieldPath": "Order ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35061,7 +34890,6 @@ { "fieldPath": "Product ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35074,7 +34902,6 @@ { "fieldPath": "Category", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35087,7 +34914,6 @@ { "fieldPath": "Postal Code", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -35100,7 +34926,6 @@ { "fieldPath": "City", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35113,7 +34938,6 @@ { "fieldPath": "Quantity", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -35126,7 +34950,6 @@ { "fieldPath": "State", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35139,7 +34962,6 @@ { "fieldPath": "Order Date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.DateType": {} @@ -35152,7 +34974,6 @@ { "fieldPath": "Customer Name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35165,7 +34986,6 @@ { "fieldPath": "Country/Region", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35178,7 +34998,6 @@ { "fieldPath": "Sales", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -35191,7 +35010,6 @@ { "fieldPath": "Segment", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35204,7 +35022,6 @@ { "fieldPath": "Sub-Category", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35217,7 +35034,6 @@ { "fieldPath": "Profit", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -35230,7 +35046,6 @@ { "fieldPath": "Product Name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35243,7 +35058,6 @@ { "fieldPath": "Customer ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35256,7 +35070,6 @@ { "fieldPath": "Order ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35269,7 +35082,6 @@ { "fieldPath": "Row ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -35282,7 +35094,6 @@ { "fieldPath": "Discount", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -35295,7 +35106,6 @@ { "fieldPath": "Ship Date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.DateType": {} @@ -35308,7 +35118,6 @@ { "fieldPath": "Ship Mode", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35321,7 +35130,6 @@ { "fieldPath": "Region", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35401,7 +35209,6 @@ { "fieldPath": "contact_type", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35414,7 +35221,6 @@ { "fieldPath": "sys_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35427,7 +35233,6 @@ { "fieldPath": "user_input", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35440,7 +35245,6 @@ { "fieldPath": "opened_at", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -35453,7 +35257,6 @@ { "fieldPath": "expected_start", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -35466,7 +35269,6 @@ { "fieldPath": "delivery_plan", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35479,7 +35281,6 @@ { "fieldPath": "opened_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35492,7 +35293,6 @@ { "fieldPath": "delivery_task", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35505,7 +35305,6 @@ { "fieldPath": "approval_set", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -35518,7 +35317,6 @@ { "fieldPath": "urgency", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -35531,7 +35329,6 @@ { "fieldPath": "comments", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35544,7 +35341,6 @@ { "fieldPath": "active", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -35557,7 +35353,6 @@ { "fieldPath": "priority", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -35570,7 +35365,6 @@ { "fieldPath": "knowledge", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -35583,7 +35377,6 @@ { "fieldPath": "closed_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35596,7 +35389,6 @@ { "fieldPath": "activity_due", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -35609,7 +35401,6 @@ { "fieldPath": "assignment_group", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35622,7 +35413,6 @@ { "fieldPath": "correlation_display", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35635,7 +35425,6 @@ { "fieldPath": "state", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -35648,7 +35437,6 @@ { "fieldPath": "work_end", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -35661,7 +35449,6 @@ { "fieldPath": "description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35674,7 +35461,6 @@ { "fieldPath": "business_service", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35687,7 +35473,6 @@ { "fieldPath": "approval_history", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35700,7 +35485,6 @@ { "fieldPath": "upon_reject", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35713,7 +35497,6 @@ { "fieldPath": "sys_created_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -35726,7 +35509,6 @@ { "fieldPath": "parent", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35739,7 +35521,6 @@ { "fieldPath": "order", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -35752,7 +35533,6 @@ { "fieldPath": "work_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35765,7 +35545,6 @@ { "fieldPath": "work_notes_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35778,7 +35557,6 @@ { "fieldPath": "sys_created_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35791,7 +35569,6 @@ { "fieldPath": "sys_updated_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35804,7 +35581,6 @@ { "fieldPath": "work_start", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -35817,7 +35593,6 @@ { "fieldPath": "group_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35830,7 +35605,6 @@ { "fieldPath": "sys_mod_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -35843,7 +35617,6 @@ { "fieldPath": "location", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35856,7 +35629,6 @@ { "fieldPath": "correlation_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35869,7 +35641,6 @@ { "fieldPath": "sys_updated_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -35882,7 +35653,6 @@ { "fieldPath": "sla_due", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -35895,7 +35665,6 @@ { "fieldPath": "number", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35908,7 +35677,6 @@ { "fieldPath": "business_duration", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -35921,7 +35689,6 @@ { "fieldPath": "follow_up", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -35934,7 +35701,6 @@ { "fieldPath": "additional_assignee_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35947,7 +35713,6 @@ { "fieldPath": "escalation", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -35960,7 +35725,6 @@ { "fieldPath": "due_date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -35973,7 +35737,6 @@ { "fieldPath": "approval", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35986,7 +35749,6 @@ { "fieldPath": "made_sla", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -35999,7 +35761,6 @@ { "fieldPath": "assigned_to", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36012,7 +35773,6 @@ { "fieldPath": "calendar_duration", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36025,7 +35785,6 @@ { "fieldPath": "closed_at", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36038,7 +35797,6 @@ { "fieldPath": "sys_domain", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36051,7 +35809,6 @@ { "fieldPath": "cmdb_ci", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36064,7 +35821,6 @@ { "fieldPath": "comments_and_work_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36077,7 +35833,6 @@ { "fieldPath": "impact", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -36090,7 +35845,6 @@ { "fieldPath": "close_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36103,7 +35857,6 @@ { "fieldPath": "reassignment_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -36116,7 +35869,6 @@ { "fieldPath": "company", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36129,7 +35881,6 @@ { "fieldPath": "sys_domain_path", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36142,7 +35893,6 @@ { "fieldPath": "short_description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36155,7 +35905,6 @@ { "fieldPath": "upon_approval", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36168,7 +35917,6 @@ { "fieldPath": "watch_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36181,7 +35929,6 @@ { "fieldPath": "time_worked", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36194,7 +35941,6 @@ { "fieldPath": "sys_class_name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36275,7 +36021,6 @@ { "fieldPath": "work_notes_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36288,7 +36033,6 @@ { "fieldPath": "closed_at", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36301,7 +36045,6 @@ { "fieldPath": "user_input", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36314,7 +36057,6 @@ { "fieldPath": "requested_for", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36327,7 +36069,6 @@ { "fieldPath": "opened_at", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36340,7 +36081,6 @@ { "fieldPath": "price", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36353,7 +36093,6 @@ { "fieldPath": "assigned_to", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36366,7 +36105,6 @@ { "fieldPath": "number", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36379,7 +36117,6 @@ { "fieldPath": "delivery_plan", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36392,7 +36129,6 @@ { "fieldPath": "delivery_address", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36405,7 +36141,6 @@ { "fieldPath": "business_duration", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36418,7 +36153,6 @@ { "fieldPath": "urgency", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -36431,7 +36165,6 @@ { "fieldPath": "work_end", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36444,7 +36177,6 @@ { "fieldPath": "due_date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36457,7 +36189,6 @@ { "fieldPath": "parent", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36470,7 +36201,6 @@ { "fieldPath": "made_sla", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -36483,7 +36213,6 @@ { "fieldPath": "assignment_group", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36496,7 +36225,6 @@ { "fieldPath": "sys_class_name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36509,7 +36237,6 @@ { "fieldPath": "additional_assignee_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36522,7 +36249,6 @@ { "fieldPath": "work_start", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36535,7 +36261,6 @@ { "fieldPath": "sys_domain_path", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36548,7 +36273,6 @@ { "fieldPath": "time_worked", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36561,7 +36285,6 @@ { "fieldPath": "comments_and_work_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36574,7 +36297,6 @@ { "fieldPath": "group_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36587,7 +36309,6 @@ { "fieldPath": "business_service", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36600,7 +36321,6 @@ { "fieldPath": "correlation_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36613,7 +36333,6 @@ { "fieldPath": "cmdb_ci", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36626,7 +36345,6 @@ { "fieldPath": "requested_date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.DateType": {} @@ -36639,7 +36357,6 @@ { "fieldPath": "follow_up", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36652,7 +36369,6 @@ { "fieldPath": "sys_updated_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36665,7 +36381,6 @@ { "fieldPath": "state", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -36678,7 +36393,6 @@ { "fieldPath": "comments", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36691,7 +36405,6 @@ { "fieldPath": "approval_set", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36704,7 +36417,6 @@ { "fieldPath": "close_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36717,7 +36429,6 @@ { "fieldPath": "upon_approval", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36730,7 +36441,6 @@ { "fieldPath": "company", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36743,7 +36453,6 @@ { "fieldPath": "activity_due", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36756,7 +36465,6 @@ { "fieldPath": "contact_type", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36769,7 +36477,6 @@ { "fieldPath": "approval", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36782,7 +36489,6 @@ { "fieldPath": "calendar_duration", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36795,7 +36501,6 @@ { "fieldPath": "reassignment_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -36808,7 +36513,6 @@ { "fieldPath": "delivery_task", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36821,7 +36525,6 @@ { "fieldPath": "approval_history", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36834,7 +36537,6 @@ { "fieldPath": "sys_created_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36847,7 +36549,6 @@ { "fieldPath": "request_state", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36860,7 +36561,6 @@ { "fieldPath": "watch_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36873,7 +36573,6 @@ { "fieldPath": "upon_reject", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36886,7 +36585,6 @@ { "fieldPath": "expected_start", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36899,7 +36597,6 @@ { "fieldPath": "active", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -36912,7 +36609,6 @@ { "fieldPath": "opened_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36925,7 +36621,6 @@ { "fieldPath": "work_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36938,7 +36633,6 @@ { "fieldPath": "impact", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -36951,7 +36645,6 @@ { "fieldPath": "description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36964,7 +36657,6 @@ { "fieldPath": "sla_due", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36977,7 +36669,6 @@ { "fieldPath": "correlation_display", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36990,7 +36681,6 @@ { "fieldPath": "priority", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -37003,7 +36693,6 @@ { "fieldPath": "stage", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37016,7 +36705,6 @@ { "fieldPath": "sys_created_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37029,7 +36717,6 @@ { "fieldPath": "sys_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37042,7 +36729,6 @@ { "fieldPath": "escalation", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -37055,7 +36741,6 @@ { "fieldPath": "closed_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37068,7 +36753,6 @@ { "fieldPath": "short_description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37081,7 +36765,6 @@ { "fieldPath": "location", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37094,7 +36777,6 @@ { "fieldPath": "special_instructions", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37107,7 +36789,6 @@ { "fieldPath": "order", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -37120,7 +36801,6 @@ { "fieldPath": "sys_updated_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37133,7 +36813,6 @@ { "fieldPath": "sys_mod_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -37146,7 +36825,6 @@ { "fieldPath": "knowledge", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -37159,7 +36837,6 @@ { "fieldPath": "sys_domain", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37172,7 +36849,6 @@ { "fieldPath": "calendar_stc", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -37253,7 +36929,6 @@ { "fieldPath": "watch_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37266,7 +36941,6 @@ { "fieldPath": "due_date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -37279,7 +36953,6 @@ { "fieldPath": "made_sla", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -37292,7 +36965,6 @@ { "fieldPath": "parent", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37305,7 +36977,6 @@ { "fieldPath": "assigned_to", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37318,7 +36989,6 @@ { "fieldPath": "sys_mod_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -37331,7 +37001,6 @@ { "fieldPath": "cmdb_ci", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37344,7 +37013,6 @@ { "fieldPath": "sys_domain", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37357,7 +37025,6 @@ { "fieldPath": "configuration_item", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37370,7 +37037,6 @@ { "fieldPath": "closed_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37383,7 +37049,6 @@ { "fieldPath": "active", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -37396,7 +37061,6 @@ { "fieldPath": "expected_start", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -37409,7 +37073,6 @@ { "fieldPath": "recurring_price", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37422,7 +37085,6 @@ { "fieldPath": "work_end", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -37435,7 +37097,6 @@ { "fieldPath": "short_description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37448,7 +37109,6 @@ { "fieldPath": "approval", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37461,7 +37121,6 @@ { "fieldPath": "opened_at", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -37474,7 +37133,6 @@ { "fieldPath": "order", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -37487,7 +37145,6 @@ { "fieldPath": "assignment_group", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37500,7 +37157,6 @@ { "fieldPath": "sc_catalog", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37513,7 +37169,6 @@ { "fieldPath": "knowledge", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -37526,7 +37181,6 @@ { "fieldPath": "stage", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37539,7 +37193,6 @@ { "fieldPath": "correlation_display", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37552,7 +37205,6 @@ { "fieldPath": "reassignment_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -37565,7 +37217,6 @@ { "fieldPath": "delivery_plan", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37578,7 +37229,6 @@ { "fieldPath": "sys_class_name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37591,7 +37241,6 @@ { "fieldPath": "user_input", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37604,7 +37253,6 @@ { "fieldPath": "description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37617,7 +37265,6 @@ { "fieldPath": "activity_due", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -37630,7 +37277,6 @@ { "fieldPath": "price", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37643,7 +37289,6 @@ { "fieldPath": "work_notes_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37656,7 +37301,6 @@ { "fieldPath": "estimated_delivery", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -37669,7 +37313,6 @@ { "fieldPath": "additional_assignee_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37682,7 +37325,6 @@ { "fieldPath": "context", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37695,7 +37337,6 @@ { "fieldPath": "business_duration", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -37708,7 +37349,6 @@ { "fieldPath": "approval_set", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -37721,7 +37361,6 @@ { "fieldPath": "priority", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -37734,7 +37373,6 @@ { "fieldPath": "sys_updated_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -37747,7 +37385,6 @@ { "fieldPath": "sys_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37760,7 +37397,6 @@ { "fieldPath": "state", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -37773,7 +37409,6 @@ { "fieldPath": "business_service", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37786,7 +37421,6 @@ { "fieldPath": "billable", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -37799,7 +37433,6 @@ { "fieldPath": "approval_history", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37812,7 +37445,6 @@ { "fieldPath": "recurring_frequency", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37825,7 +37457,6 @@ { "fieldPath": "contact_type", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37838,7 +37469,6 @@ { "fieldPath": "cat_item", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37851,7 +37481,6 @@ { "fieldPath": "sys_updated_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37864,7 +37493,6 @@ { "fieldPath": "sys_domain_path", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37877,7 +37505,6 @@ { "fieldPath": "comments", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37890,7 +37517,6 @@ { "fieldPath": "impact", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -37903,7 +37529,6 @@ { "fieldPath": "order_guide", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37916,7 +37541,6 @@ { "fieldPath": "sla_due", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -37929,7 +37553,6 @@ { "fieldPath": "sys_created_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37942,7 +37565,6 @@ { "fieldPath": "comments_and_work_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37955,7 +37577,6 @@ { "fieldPath": "opened_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37968,7 +37589,6 @@ { "fieldPath": "backordered", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -37981,7 +37601,6 @@ { "fieldPath": "correlation_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37994,7 +37613,6 @@ { "fieldPath": "group_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38007,7 +37625,6 @@ { "fieldPath": "delivery_task", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38020,7 +37637,6 @@ { "fieldPath": "number", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38033,7 +37649,6 @@ { "fieldPath": "sys_created_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -38046,7 +37661,6 @@ { "fieldPath": "company", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38059,7 +37673,6 @@ { "fieldPath": "work_start", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -38072,7 +37685,6 @@ { "fieldPath": "request", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38085,7 +37697,6 @@ { "fieldPath": "close_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38098,7 +37709,6 @@ { "fieldPath": "work_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38111,7 +37721,6 @@ { "fieldPath": "calendar_duration", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -38124,7 +37733,6 @@ { "fieldPath": "quantity", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -38137,7 +37745,6 @@ { "fieldPath": "follow_up", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -38150,7 +37757,6 @@ { "fieldPath": "location", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38163,7 +37769,6 @@ { "fieldPath": "upon_reject", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38176,7 +37781,6 @@ { "fieldPath": "closed_at", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -38189,7 +37793,6 @@ { "fieldPath": "time_worked", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38202,7 +37805,6 @@ { "fieldPath": "escalation", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -38215,7 +37817,6 @@ { "fieldPath": "urgency", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -38228,7 +37829,6 @@ { "fieldPath": "upon_approval", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38309,7 +37909,6 @@ { "fieldPath": "sc_catalogs", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38322,7 +37921,6 @@ { "fieldPath": "sys_updated_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38335,7 +37933,6 @@ { "fieldPath": "type", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38348,7 +37945,6 @@ { "fieldPath": "mobile_picture_type", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38361,7 +37957,6 @@ { "fieldPath": "workflow", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38374,7 +37969,6 @@ { "fieldPath": "sys_customer_update", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -38387,7 +37981,6 @@ { "fieldPath": "sys_class_name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38400,7 +37993,6 @@ { "fieldPath": "visible_standalone", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -38413,7 +38005,6 @@ { "fieldPath": "no_quantity", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -38426,7 +38017,6 @@ { "fieldPath": "order", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -38439,7 +38029,6 @@ { "fieldPath": "sys_updated_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -38452,7 +38041,6 @@ { "fieldPath": "sys_scope", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38465,7 +38053,6 @@ { "fieldPath": "template", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38478,7 +38065,6 @@ { "fieldPath": "no_proceed_checkout", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -38491,7 +38077,6 @@ { "fieldPath": "billable", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -38504,7 +38089,6 @@ { "fieldPath": "name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38517,7 +38101,6 @@ { "fieldPath": "delivery_plan", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38530,7 +38113,6 @@ { "fieldPath": "description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38543,7 +38125,6 @@ { "fieldPath": "meta", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38556,7 +38137,6 @@ { "fieldPath": "ordered_item_link", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38569,7 +38149,6 @@ { "fieldPath": "sys_mod_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -38582,7 +38161,6 @@ { "fieldPath": "sc_ic_version", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -38595,7 +38173,6 @@ { "fieldPath": "image", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38608,7 +38185,6 @@ { "fieldPath": "sys_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38621,7 +38197,6 @@ { "fieldPath": "short_description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38634,7 +38209,6 @@ { "fieldPath": "sys_policy", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38647,7 +38221,6 @@ { "fieldPath": "roles", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38660,7 +38233,6 @@ { "fieldPath": "picture", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38673,7 +38245,6 @@ { "fieldPath": "list_price", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38686,7 +38257,6 @@ { "fieldPath": "no_order_now", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -38699,7 +38269,6 @@ { "fieldPath": "vendor", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38712,7 +38281,6 @@ { "fieldPath": "sc_ic_item_staging", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38725,7 +38293,6 @@ { "fieldPath": "no_order", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -38738,7 +38305,6 @@ { "fieldPath": "entitlement_script", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38751,7 +38317,6 @@ { "fieldPath": "active", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -38764,7 +38329,6 @@ { "fieldPath": "icon", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38777,7 +38341,6 @@ { "fieldPath": "ignore_price", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -38790,7 +38353,6 @@ { "fieldPath": "start_closed", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -38803,7 +38365,6 @@ { "fieldPath": "sys_package", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38816,7 +38377,6 @@ { "fieldPath": "group", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38829,7 +38389,6 @@ { "fieldPath": "sys_replace_on_upgrade", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -38842,7 +38401,6 @@ { "fieldPath": "cost", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -38855,7 +38413,6 @@ { "fieldPath": "use_sc_layout", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -38868,7 +38425,6 @@ { "fieldPath": "location", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38881,7 +38437,6 @@ { "fieldPath": "availability", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38894,7 +38449,6 @@ { "fieldPath": "model", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38907,7 +38461,6 @@ { "fieldPath": "custom_cart", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38920,7 +38473,6 @@ { "fieldPath": "mobile_picture", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38933,7 +38485,6 @@ { "fieldPath": "category", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38946,7 +38497,6 @@ { "fieldPath": "no_cart", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -38959,7 +38509,6 @@ { "fieldPath": "mobile_hide_price", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -38972,7 +38521,6 @@ { "fieldPath": "sys_created_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38985,7 +38533,6 @@ { "fieldPath": "price", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38998,7 +38545,6 @@ { "fieldPath": "delivery_time", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -39011,7 +38557,6 @@ { "fieldPath": "no_search", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -39024,7 +38569,6 @@ { "fieldPath": "sys_created_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -39037,7 +38581,6 @@ { "fieldPath": "recurring_frequency", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39050,7 +38593,6 @@ { "fieldPath": "recurring_price", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39063,7 +38605,6 @@ { "fieldPath": "delivery_plan_script", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39076,7 +38617,6 @@ { "fieldPath": "visible_bundle", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -39089,7 +38629,6 @@ { "fieldPath": "sys_update_name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39102,7 +38641,6 @@ { "fieldPath": "sys_name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39115,7 +38653,6 @@ { "fieldPath": "visible_guide", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -39128,7 +38665,6 @@ { "fieldPath": "preview", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39141,7 +38677,6 @@ { "fieldPath": "omit_price", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -39222,7 +38757,6 @@ { "fieldPath": "u_u", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39235,7 +38769,6 @@ { "fieldPath": "sys_updated_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39248,7 +38781,6 @@ { "fieldPath": "source", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39261,7 +38793,6 @@ { "fieldPath": "exclude_manager", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -39274,7 +38805,6 @@ { "fieldPath": "description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39287,7 +38817,6 @@ { "fieldPath": "cost_center", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39300,7 +38829,6 @@ { "fieldPath": "sys_created_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39313,7 +38841,6 @@ { "fieldPath": "parent", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39326,7 +38853,6 @@ { "fieldPath": "sys_mod_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -39339,7 +38865,6 @@ { "fieldPath": "sys_updated_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -39352,7 +38877,6 @@ { "fieldPath": "u_lucha", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39365,7 +38889,6 @@ { "fieldPath": "sys_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39378,7 +38901,6 @@ { "fieldPath": "u_lu2", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39391,7 +38913,6 @@ { "fieldPath": "type", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39404,7 +38925,6 @@ { "fieldPath": "roles", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39417,7 +38937,6 @@ { "fieldPath": "sys_created_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -39430,7 +38949,6 @@ { "fieldPath": "default_assignee", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39443,7 +38961,6 @@ { "fieldPath": "email", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39456,7 +38973,6 @@ { "fieldPath": "manager", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39469,7 +38985,6 @@ { "fieldPath": "name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39482,7 +38997,6 @@ { "fieldPath": "active", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -39495,7 +39009,6 @@ { "fieldPath": "include_members", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -39576,7 +39089,6 @@ { "fieldPath": "opened_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39589,7 +39101,6 @@ { "fieldPath": "sys_class_name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39602,7 +39113,6 @@ { "fieldPath": "sys_created_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39615,7 +39125,6 @@ { "fieldPath": "sys_updated_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -39628,7 +39137,6 @@ { "fieldPath": "closed_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39641,7 +39149,6 @@ { "fieldPath": "close_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39654,7 +39161,6 @@ { "fieldPath": "made_sla", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -39667,7 +39173,6 @@ { "fieldPath": "state", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -39680,7 +39185,6 @@ { "fieldPath": "related_incidents", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -39693,7 +39197,6 @@ { "fieldPath": "business_duration", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -39706,7 +39209,6 @@ { "fieldPath": "sys_domain", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39719,7 +39221,6 @@ { "fieldPath": "delivery_task", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39732,7 +39233,6 @@ { "fieldPath": "priority", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -39745,7 +39245,6 @@ { "fieldPath": "sys_created_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -39758,7 +39257,6 @@ { "fieldPath": "sys_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39771,7 +39269,6 @@ { "fieldPath": "escalation", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -39784,7 +39281,6 @@ { "fieldPath": "business_service", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39797,7 +39293,6 @@ { "fieldPath": "comments_and_work_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39810,7 +39305,6 @@ { "fieldPath": "rfc", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39823,7 +39317,6 @@ { "fieldPath": "sys_domain_path", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39836,7 +39329,6 @@ { "fieldPath": "cmdb_ci", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39849,7 +39341,6 @@ { "fieldPath": "problem_state", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -39862,7 +39353,6 @@ { "fieldPath": "delivery_plan", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39875,7 +39365,6 @@ { "fieldPath": "user_input", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39888,7 +39377,6 @@ { "fieldPath": "active", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -39901,7 +39389,6 @@ { "fieldPath": "location", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39914,7 +39401,6 @@ { "fieldPath": "expected_start", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -39927,7 +39413,6 @@ { "fieldPath": "calendar_duration", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -39940,7 +39425,6 @@ { "fieldPath": "number", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39953,7 +39437,6 @@ { "fieldPath": "sla_due", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -39966,7 +39449,6 @@ { "fieldPath": "work_notes_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39979,7 +39461,6 @@ { "fieldPath": "knowledge", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -39992,7 +39473,6 @@ { "fieldPath": "sys_updated_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40005,7 +39485,6 @@ { "fieldPath": "time_worked", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40018,7 +39497,6 @@ { "fieldPath": "order", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -40031,7 +39509,6 @@ { "fieldPath": "assignment_group", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40044,7 +39521,6 @@ { "fieldPath": "upon_approval", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40057,7 +39533,6 @@ { "fieldPath": "company", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40070,7 +39545,6 @@ { "fieldPath": "opened_at", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -40083,7 +39557,6 @@ { "fieldPath": "group_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40096,7 +39569,6 @@ { "fieldPath": "work_around", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40109,7 +39581,6 @@ { "fieldPath": "description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40122,7 +39593,6 @@ { "fieldPath": "work_end", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -40135,7 +39605,6 @@ { "fieldPath": "correlation_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40148,7 +39617,6 @@ { "fieldPath": "approval_set", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -40161,7 +39629,6 @@ { "fieldPath": "urgency", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -40174,7 +39641,6 @@ { "fieldPath": "impact", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -40187,7 +39653,6 @@ { "fieldPath": "short_description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40200,7 +39665,6 @@ { "fieldPath": "approval", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40213,7 +39677,6 @@ { "fieldPath": "closed_at", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -40226,7 +39689,6 @@ { "fieldPath": "known_error", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -40239,7 +39701,6 @@ { "fieldPath": "due_date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -40252,7 +39713,6 @@ { "fieldPath": "work_start", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -40265,7 +39725,6 @@ { "fieldPath": "activity_due", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -40278,7 +39737,6 @@ { "fieldPath": "sys_mod_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -40291,7 +39749,6 @@ { "fieldPath": "correlation_display", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40304,7 +39761,6 @@ { "fieldPath": "contact_type", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40317,7 +39773,6 @@ { "fieldPath": "additional_assignee_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40330,7 +39785,6 @@ { "fieldPath": "approval_history", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40343,7 +39797,6 @@ { "fieldPath": "reassignment_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -40356,7 +39809,6 @@ { "fieldPath": "follow_up", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -40369,7 +39821,6 @@ { "fieldPath": "comments", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40382,7 +39833,6 @@ { "fieldPath": "work_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40395,7 +39845,6 @@ { "fieldPath": "parent", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40408,7 +39857,6 @@ { "fieldPath": "assigned_to", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40421,7 +39869,6 @@ { "fieldPath": "watch_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40434,7 +39881,6 @@ { "fieldPath": "upon_reject", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40515,7 +39961,6 @@ { "fieldPath": "sys_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40528,7 +39973,6 @@ { "fieldPath": "correlation_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40541,7 +39985,6 @@ { "fieldPath": "urgency", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -40554,7 +39997,6 @@ { "fieldPath": "severity", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -40567,7 +40009,6 @@ { "fieldPath": "business_service", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40580,7 +40021,6 @@ { "fieldPath": "location", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40593,7 +40033,6 @@ { "fieldPath": "approval_set", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -40606,7 +40045,6 @@ { "fieldPath": "closed_at", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -40619,7 +40057,6 @@ { "fieldPath": "parent_incident", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40632,7 +40069,6 @@ { "fieldPath": "subcategory", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40645,7 +40081,6 @@ { "fieldPath": "company", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40658,7 +40093,6 @@ { "fieldPath": "caller_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40671,7 +40105,6 @@ { "fieldPath": "resolved_at", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -40684,7 +40117,6 @@ { "fieldPath": "group_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40697,7 +40129,6 @@ { "fieldPath": "correlation_display", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40710,7 +40141,6 @@ { "fieldPath": "resolved_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40723,7 +40153,6 @@ { "fieldPath": "sys_created_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -40736,7 +40165,6 @@ { "fieldPath": "business_stc", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -40749,7 +40177,6 @@ { "fieldPath": "sys_domain_path", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40762,7 +40189,6 @@ { "fieldPath": "parent", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40775,7 +40201,6 @@ { "fieldPath": "category", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40788,7 +40213,6 @@ { "fieldPath": "user_input", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40801,7 +40225,6 @@ { "fieldPath": "number", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40814,7 +40237,6 @@ { "fieldPath": "escalation", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -40827,7 +40249,6 @@ { "fieldPath": "state", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -40840,7 +40261,6 @@ { "fieldPath": "approval_history", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40853,7 +40273,6 @@ { "fieldPath": "impact", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -40866,7 +40285,6 @@ { "fieldPath": "expected_start", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -40879,7 +40297,6 @@ { "fieldPath": "additional_assignee_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40892,7 +40309,6 @@ { "fieldPath": "child_incidents", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -40905,7 +40321,6 @@ { "fieldPath": "cmdb_ci", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40918,7 +40333,6 @@ { "fieldPath": "incident_state", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -40931,7 +40345,6 @@ { "fieldPath": "notify", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -40944,7 +40357,6 @@ { "fieldPath": "work_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40957,7 +40369,6 @@ { "fieldPath": "reassignment_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -40970,7 +40381,6 @@ { "fieldPath": "contact_type", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40983,7 +40393,6 @@ { "fieldPath": "opened_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40996,7 +40405,6 @@ { "fieldPath": "sys_class_name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41009,7 +40417,6 @@ { "fieldPath": "problem_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41022,7 +40429,6 @@ { "fieldPath": "due_date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -41035,7 +40441,6 @@ { "fieldPath": "approval", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41048,7 +40453,6 @@ { "fieldPath": "description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41061,7 +40465,6 @@ { "fieldPath": "order", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -41074,7 +40477,6 @@ { "fieldPath": "opened_at", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -41087,7 +40489,6 @@ { "fieldPath": "work_notes_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41100,7 +40501,6 @@ { "fieldPath": "priority", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -41113,7 +40513,6 @@ { "fieldPath": "time_worked", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41126,7 +40525,6 @@ { "fieldPath": "sys_domain", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41139,7 +40537,6 @@ { "fieldPath": "caused_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41152,7 +40549,6 @@ { "fieldPath": "sys_updated_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41165,7 +40561,6 @@ { "fieldPath": "upon_reject", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41178,7 +40573,6 @@ { "fieldPath": "delivery_task", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41191,7 +40585,6 @@ { "fieldPath": "knowledge", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -41204,7 +40597,6 @@ { "fieldPath": "sys_updated_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -41217,7 +40609,6 @@ { "fieldPath": "calendar_duration", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -41230,7 +40621,6 @@ { "fieldPath": "closed_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41243,7 +40633,6 @@ { "fieldPath": "comments", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41256,7 +40645,6 @@ { "fieldPath": "short_description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41269,7 +40657,6 @@ { "fieldPath": "assigned_to", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41282,7 +40669,6 @@ { "fieldPath": "assignment_group", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41295,7 +40681,6 @@ { "fieldPath": "work_end", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -41308,7 +40693,6 @@ { "fieldPath": "reopen_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -41321,7 +40705,6 @@ { "fieldPath": "work_start", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -41334,7 +40717,6 @@ { "fieldPath": "made_sla", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -41347,7 +40729,6 @@ { "fieldPath": "sys_mod_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -41360,7 +40741,6 @@ { "fieldPath": "calendar_stc", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -41373,7 +40753,6 @@ { "fieldPath": "rfc", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41386,7 +40765,6 @@ { "fieldPath": "delivery_plan", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41399,7 +40777,6 @@ { "fieldPath": "close_code", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41412,7 +40789,6 @@ { "fieldPath": "close_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41425,7 +40801,6 @@ { "fieldPath": "activity_due", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -41438,7 +40813,6 @@ { "fieldPath": "sys_created_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41451,7 +40825,6 @@ { "fieldPath": "active", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -41464,7 +40837,6 @@ { "fieldPath": "business_duration", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -41477,7 +40849,6 @@ { "fieldPath": "follow_up", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -41490,7 +40861,6 @@ { "fieldPath": "comments_and_work_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41503,7 +40873,6 @@ { "fieldPath": "upon_approval", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41516,7 +40885,6 @@ { "fieldPath": "watch_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41529,7 +40897,6 @@ { "fieldPath": "sla_due", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -41610,7 +40977,6 @@ { "fieldPath": "first_discovered", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -41623,7 +40989,6 @@ { "fieldPath": "operational_status", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -41636,7 +41001,6 @@ { "fieldPath": "last_discovered", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -41649,7 +41013,6 @@ { "fieldPath": "cost_cc", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41662,7 +41025,6 @@ { "fieldPath": "checked_in", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -41675,7 +41037,6 @@ { "fieldPath": "attributes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41688,7 +41049,6 @@ { "fieldPath": "serial_number", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41701,7 +41061,6 @@ { "fieldPath": "vendor", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41714,7 +41073,6 @@ { "fieldPath": "ip_address", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41727,7 +41085,6 @@ { "fieldPath": "support_group", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41740,7 +41097,6 @@ { "fieldPath": "sys_updated_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41753,7 +41109,6 @@ { "fieldPath": "asset", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41766,7 +41121,6 @@ { "fieldPath": "sys_domain", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41779,7 +41133,6 @@ { "fieldPath": "supported_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41792,7 +41145,6 @@ { "fieldPath": "invoice_number", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41805,7 +41157,6 @@ { "fieldPath": "managed_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41818,7 +41169,6 @@ { "fieldPath": "fault_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -41831,7 +41181,6 @@ { "fieldPath": "due_in", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41844,7 +41193,6 @@ { "fieldPath": "cost", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41857,7 +41205,6 @@ { "fieldPath": "correlation_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41870,7 +41217,6 @@ { "fieldPath": "justification", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41883,7 +41229,6 @@ { "fieldPath": "sys_created_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -41896,7 +41241,6 @@ { "fieldPath": "assigned", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -41909,7 +41253,6 @@ { "fieldPath": "model_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41922,7 +41265,6 @@ { "fieldPath": "sys_class_name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41935,7 +41277,6 @@ { "fieldPath": "comments", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41948,7 +41289,6 @@ { "fieldPath": "sys_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41961,7 +41301,6 @@ { "fieldPath": "company", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41974,7 +41313,6 @@ { "fieldPath": "lease_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41987,7 +41325,6 @@ { "fieldPath": "monitor", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -42000,7 +41337,6 @@ { "fieldPath": "cost_center", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42013,7 +41349,6 @@ { "fieldPath": "subcategory", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42026,7 +41361,6 @@ { "fieldPath": "delivery_date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -42039,7 +41373,6 @@ { "fieldPath": "assignment_group", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42052,7 +41385,6 @@ { "fieldPath": "can_print", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -42065,7 +41397,6 @@ { "fieldPath": "short_description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42078,7 +41409,6 @@ { "fieldPath": "model_number", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42091,7 +41421,6 @@ { "fieldPath": "name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42104,7 +41433,6 @@ { "fieldPath": "start_date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -42117,7 +41445,6 @@ { "fieldPath": "discovery_source", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42130,7 +41457,6 @@ { "fieldPath": "sys_domain_path", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42143,7 +41469,6 @@ { "fieldPath": "assigned_to", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42156,7 +41481,6 @@ { "fieldPath": "category", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42169,7 +41493,6 @@ { "fieldPath": "schedule", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42182,7 +41505,6 @@ { "fieldPath": "fqdn", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42195,7 +41517,6 @@ { "fieldPath": "warranty_expiration", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.DateType": {} @@ -42208,7 +41529,6 @@ { "fieldPath": "owned_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42221,7 +41541,6 @@ { "fieldPath": "asset_tag", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42234,7 +41553,6 @@ { "fieldPath": "manufacturer", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42247,7 +41565,6 @@ { "fieldPath": "purchase_date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.DateType": {} @@ -42260,7 +41577,6 @@ { "fieldPath": "location", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42273,7 +41589,6 @@ { "fieldPath": "department", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42286,7 +41601,6 @@ { "fieldPath": "sys_updated_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -42299,7 +41613,6 @@ { "fieldPath": "checked_out", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -42312,7 +41625,6 @@ { "fieldPath": "unverified", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -42325,7 +41637,6 @@ { "fieldPath": "skip_sync", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -42338,7 +41649,6 @@ { "fieldPath": "po_number", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42351,7 +41661,6 @@ { "fieldPath": "order_date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -42364,7 +41673,6 @@ { "fieldPath": "gl_account", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42377,7 +41685,6 @@ { "fieldPath": "maintenance_schedule", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42390,7 +41697,6 @@ { "fieldPath": "install_date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -42403,7 +41709,6 @@ { "fieldPath": "dns_domain", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42416,7 +41721,6 @@ { "fieldPath": "sys_created_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42429,7 +41733,6 @@ { "fieldPath": "mac_address", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42442,7 +41745,6 @@ { "fieldPath": "change_control", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42455,7 +41757,6 @@ { "fieldPath": "install_status", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -42468,7 +41769,6 @@ { "fieldPath": "due", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -42481,7 +41781,6 @@ { "fieldPath": "sys_mod_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} diff --git a/metadata-ingestion/tests/integration/tableau/tableau_mces_golden_deleted_stateful.json b/metadata-ingestion/tests/integration/tableau/tableau_mces_golden_deleted_stateful.json index 96df70dd5b02a..08d5127b18041 100644 --- a/metadata-ingestion/tests/integration/tableau/tableau_mces_golden_deleted_stateful.json +++ b/metadata-ingestion/tests/integration/tableau/tableau_mces_golden_deleted_stateful.json @@ -243,8 +243,8 @@ } }, { - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.actor,PROD)", + "entityType": "tag", + "entityUrn": "urn:li:tag:GROUPFIELD", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -259,7 +259,7 @@ }, { "entityType": "tag", - "entityUrn": "urn:li:tag:GROUPFIELD", + "entityUrn": "urn:li:tag:ATTRIBUTE", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -273,8 +273,8 @@ } }, { - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,7fbc77ba-0ab6-3727-0db3-d8402a804da5)", + "entityType": "tag", + "entityUrn": "urn:li:tag:SUM", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -288,8 +288,8 @@ } }, { - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,b679da5e-7d03-f01e-b2ea-01fb3c1926dc)", + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -304,7 +304,7 @@ }, { "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:external,sample - superstore%2C %28new%29.xls.orders,PROD)", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.customer,PROD)", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -319,7 +319,7 @@ }, { "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.customer,PROD)", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD)", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -333,8 +333,8 @@ } }, { - "entityType": "dashboard", - "entityUrn": "urn:li:dashboard:(tableau,8f7dd564-36b6-593f-3c6f-687ad06cd40b)", + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD)", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -348,8 +348,8 @@ } }, { - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,7ef184c1-5a41-5ec8-723e-ae44c20aa335)", + "entityType": "tag", + "entityUrn": "urn:li:tag:DATASOURCEFIELD", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -363,8 +363,8 @@ } }, { - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD)", + "entityType": "chart", + "entityUrn": "urn:li:chart:(tableau,38130558-4194-2e2a-3046-c0d887829cb4)", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -378,8 +378,8 @@ } }, { - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,130496dc-29ca-8a89-e32b-d73c4d8b65ff)", + "entityType": "container", + "entityUrn": "urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -393,8 +393,8 @@ } }, { - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,e70a540d-55ed-b9cc-5a3c-01ebe81a1274)", + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.campaignstable,PROD)", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -408,8 +408,8 @@ } }, { - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,20fc5eb7-81eb-aa18-8c39-af501c62d085)", + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.payment,PROD)", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -438,8 +438,8 @@ } }, { - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)", + "entityType": "chart", + "entityUrn": "urn:li:chart:(tableau,e70a540d-55ed-b9cc-5a3c-01ebe81a1274)", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -454,7 +454,7 @@ }, { "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.incident,PROD)", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sc_cat_item,PROD)", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -468,8 +468,8 @@ } }, { - "entityType": "tag", - "entityUrn": "urn:li:tag:BINFIELD", + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.cmdb_ci,PROD)", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -484,7 +484,7 @@ }, { "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,721c3c41-7a2b-16a8-3281-6f948a44be96)", + "entityUrn": "urn:li:chart:(tableau,f4317efd-c3e6-6ace-8fe6-e71b590bbbcc)", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -498,8 +498,8 @@ } }, { - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD)", + "entityType": "dashboard", + "entityUrn": "urn:li:dashboard:(tableau,39b7a1de-6276-cfc7-9b59-1d22f3bbb06b)", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -513,8 +513,8 @@ } }, { - "entityType": "tag", - "entityUrn": "urn:li:tag:TagSheet3", + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.actor,PROD)", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -528,8 +528,8 @@ } }, { - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,e604255e-0573-3951-6db7-05bee48116c1)", + "entityType": "tag", + "entityUrn": "urn:li:tag:SETFIELD", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -543,8 +543,8 @@ } }, { - "entityType": "container", - "entityUrn": "urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9", + "entityType": "chart", + "entityUrn": "urn:li:chart:(tableau,b679da5e-7d03-f01e-b2ea-01fb3c1926dc)", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -558,8 +558,8 @@ } }, { - "entityType": "dashboard", - "entityUrn": "urn:li:dashboard:(tableau,39b7a1de-6276-cfc7-9b59-1d22f3bbb06b)", + "entityType": "chart", + "entityUrn": "urn:li:chart:(tableau,7ef184c1-5a41-5ec8-723e-ae44c20aa335)", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -574,7 +574,7 @@ }, { "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD)", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD)", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -589,7 +589,7 @@ }, { "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sc_req_item,PROD)", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD)", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -603,8 +603,8 @@ } }, { - "entityType": "tag", - "entityUrn": "urn:li:tag:COLUMNFIELD", + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.address,PROD)", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -619,7 +619,7 @@ }, { "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,2b73b9dd-4ec7-75ca-f2e9-fa1984ca8b72)", + "entityUrn": "urn:li:chart:(tableau,618b3e76-75c1-cb31-0c61-3f4890b72c31)", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -634,7 +634,7 @@ }, { "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:external,sample - superstore%2C %28new%29.xls.returns,PROD)", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,4fb670d5-3e19-9656-e684-74aa9729cf18,PROD)", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -648,8 +648,8 @@ } }, { - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD)", + "entityType": "tag", + "entityUrn": "urn:li:tag:HIERARCHYFIELD", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -664,7 +664,7 @@ }, { "entityType": "container", - "entityUrn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d", + "entityUrn": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -678,8 +678,8 @@ } }, { - "entityType": "tag", - "entityUrn": "urn:li:tag:CALCULATEDFIELD", + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.problem,PROD)", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -693,8 +693,8 @@ } }, { - "entityType": "dashboard", - "entityUrn": "urn:li:dashboard:(tableau,5dcaaf46-e6fb-2548-e763-272a7ab2c9b1)", + "entityType": "chart", + "entityUrn": "urn:li:chart:(tableau,130496dc-29ca-8a89-e32b-d73c4d8b65ff)", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -708,8 +708,8 @@ } }, { - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,53b8dc2f-8ada-51f7-7422-fe82e9b803cc)", + "entityType": "dashboard", + "entityUrn": "urn:li:dashboard:(tableau,8f7dd564-36b6-593f-3c6f-687ad06cd40b)", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -724,7 +724,7 @@ }, { "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD)", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,618c87db-5959-338b-bcc7-6f5f4cc0b6c6,PROD)", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -739,7 +739,7 @@ }, { "entityType": "tag", - "entityUrn": "urn:li:tag:SUM", + "entityUrn": "urn:li:tag:YEAR", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -753,8 +753,8 @@ } }, { - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,c14973c2-e1c3-563a-a9c1-8a408396d22a)", + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD)", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -768,8 +768,8 @@ } }, { - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity11,PROD)", + "entityType": "container", + "entityUrn": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -783,8 +783,8 @@ } }, { - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.payment,PROD)", + "entityType": "chart", + "entityUrn": "urn:li:chart:(tableau,c14973c2-e1c3-563a-a9c1-8a408396d22a)", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -798,8 +798,8 @@ } }, { - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity10,PROD)", + "entityType": "tag", + "entityUrn": "urn:li:tag:CALCULATEDFIELD", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -813,8 +813,8 @@ } }, { - "entityType": "tag", - "entityUrn": "urn:li:tag:HIERARCHYFIELD", + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity10,PROD)", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -829,7 +829,7 @@ }, { "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,b207c2f2-b675-32e3-2663-17bb836a018b)", + "entityUrn": "urn:li:chart:(tableau,e604255e-0573-3951-6db7-05bee48116c1)", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -843,8 +843,8 @@ } }, { - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.cmdb_ci,PROD)", + "entityType": "chart", + "entityUrn": "urn:li:chart:(tableau,53b8dc2f-8ada-51f7-7422-fe82e9b803cc)", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -858,8 +858,8 @@ } }, { - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.problem,PROD)", + "entityType": "chart", + "entityUrn": "urn:li:chart:(tableau,b207c2f2-b675-32e3-2663-17bb836a018b)", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -873,8 +873,8 @@ } }, { - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,58af9ecf-b839-da50-65e1-2e1fa20e3362)", + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity7,PROD)", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -888,8 +888,8 @@ } }, { - "entityType": "tag", - "entityUrn": "urn:li:tag:DATASOURCEFIELD", + "entityType": "dashboard", + "entityUrn": "urn:li:dashboard:(tableau,20e44c22-1ccd-301a-220c-7b6837d09a52)", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -903,8 +903,8 @@ } }, { - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD)", + "entityType": "chart", + "entityUrn": "urn:li:chart:(tableau,8a6a269a-d6de-fae4-5050-513255b40ffc)", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -918,8 +918,8 @@ } }, { - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,f76d3570-23b8-f74b-d85c-cc5484c2079c)", + "entityType": "tag", + "entityUrn": "urn:li:tag:TagSheet3", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -934,7 +934,7 @@ }, { "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity6,PROD)", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sc_request,PROD)", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -949,7 +949,7 @@ }, { "entityType": "container", - "entityUrn": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1", + "entityUrn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -963,8 +963,8 @@ } }, { - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,692a2da4-2a82-32c1-f713-63b8e4325d86)", + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.task,PROD)", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -978,8 +978,8 @@ } }, { - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,8385ea9a-0749-754f-7ad9-824433de2120)", + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.incident,PROD)", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -994,7 +994,7 @@ }, { "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,618c87db-5959-338b-bcc7-6f5f4cc0b6c6,PROD)", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity6,PROD)", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -1009,7 +1009,7 @@ }, { "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,c57a5574-db47-46df-677f-0b708dab14db)", + "entityUrn": "urn:li:chart:(tableau,7fbc77ba-0ab6-3727-0db3-d8402a804da5)", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -1023,8 +1023,8 @@ } }, { - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:external,sample - superstore%2C %28new%29.xls.people,PROD)", + "entityType": "tag", + "entityUrn": "urn:li:tag:BINFIELD", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -1039,7 +1039,7 @@ }, { "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD)", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD)", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -1053,8 +1053,8 @@ } }, { - "entityType": "dashboard", - "entityUrn": "urn:li:dashboard:(tableau,20e44c22-1ccd-301a-220c-7b6837d09a52)", + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sc_req_item,PROD)", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -1068,8 +1068,8 @@ } }, { - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sc_request,PROD)", + "entityType": "tag", + "entityUrn": "urn:li:tag:COUNT", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -1083,8 +1083,8 @@ } }, { - "entityType": "tag", - "entityUrn": "urn:li:tag:DIMENSION", + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:external,sample - superstore%2C %28new%29.xls.returns,PROD)", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -1098,8 +1098,8 @@ } }, { - "entityType": "tag", - "entityUrn": "urn:li:tag:YEAR", + "entityType": "chart", + "entityUrn": "urn:li:chart:(tableau,8385ea9a-0749-754f-7ad9-824433de2120)", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -1114,7 +1114,7 @@ }, { "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.staff,PROD)", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD)", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -1128,8 +1128,8 @@ } }, { - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,222d1406-de0e-cd8d-0b94-9b45a0007e59)", + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:external,sample - superstore%2C %28new%29.xls.orders,PROD)", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -1143,8 +1143,8 @@ } }, { - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.task,PROD)", + "entityType": "tag", + "entityUrn": "urn:li:tag:COLUMNFIELD", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -1159,7 +1159,7 @@ }, { "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.address,PROD)", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity11,PROD)", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -1173,8 +1173,8 @@ } }, { - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,8a6a269a-d6de-fae4-5050-513255b40ffc)", + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:external,sample - superstore%2C %28new%29.xls.people,PROD)", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -1189,7 +1189,7 @@ }, { "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,22b0b4c3-6b85-713d-a161-5a87fdd78f40,PROD)", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD)", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -1203,8 +1203,8 @@ } }, { - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.campaignstable,PROD)", + "entityType": "chart", + "entityUrn": "urn:li:chart:(tableau,20fc5eb7-81eb-aa18-8c39-af501c62d085)", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -1219,7 +1219,7 @@ }, { "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,618b3e76-75c1-cb31-0c61-3f4890b72c31)", + "entityUrn": "urn:li:chart:(tableau,222d1406-de0e-cd8d-0b94-9b45a0007e59)", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -1233,8 +1233,8 @@ } }, { - "entityType": "container", - "entityUrn": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a", + "entityType": "chart", + "entityUrn": "urn:li:chart:(tableau,721c3c41-7a2b-16a8-3281-6f948a44be96)", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -1248,8 +1248,8 @@ } }, { - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD)", + "entityType": "chart", + "entityUrn": "urn:li:chart:(tableau,2b73b9dd-4ec7-75ca-f2e9-fa1984ca8b72)", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -1263,8 +1263,8 @@ } }, { - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,f4317efd-c3e6-6ace-8fe6-e71b590bbbcc)", + "entityType": "tag", + "entityUrn": "urn:li:tag:DIMENSION", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -1278,8 +1278,8 @@ } }, { - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sc_cat_item,PROD)", + "entityType": "chart", + "entityUrn": "urn:li:chart:(tableau,373c6466-bb0c-b319-8752-632456349261)", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -1293,8 +1293,8 @@ } }, { - "entityType": "tag", - "entityUrn": "urn:li:tag:COUNT", + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.staff,PROD)", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -1309,7 +1309,7 @@ }, { "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,2b5351c1-535d-4a4a-1339-c51ddd6abf8a)", + "entityUrn": "urn:li:chart:(tableau,c57a5574-db47-46df-677f-0b708dab14db)", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -1323,8 +1323,8 @@ } }, { - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,4fb670d5-3e19-9656-e684-74aa9729cf18,PROD)", + "entityType": "chart", + "entityUrn": "urn:li:chart:(tableau,692a2da4-2a82-32c1-f713-63b8e4325d86)", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -1338,8 +1338,8 @@ } }, { - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity7,PROD)", + "entityType": "chart", + "entityUrn": "urn:li:chart:(tableau,f76d3570-23b8-f74b-d85c-cc5484c2079c)", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -1353,8 +1353,8 @@ } }, { - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,38130558-4194-2e2a-3046-c0d887829cb4)", + "entityType": "dataset", + "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,22b0b4c3-6b85-713d-a161-5a87fdd78f40,PROD)", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -1384,7 +1384,7 @@ }, { "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,373c6466-bb0c-b319-8752-632456349261)", + "entityUrn": "urn:li:chart:(tableau,2b5351c1-535d-4a4a-1339-c51ddd6abf8a)", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -1398,8 +1398,8 @@ } }, { - "entityType": "tag", - "entityUrn": "urn:li:tag:SETFIELD", + "entityType": "dashboard", + "entityUrn": "urn:li:dashboard:(tableau,5dcaaf46-e6fb-2548-e763-272a7ab2c9b1)", "changeType": "UPSERT", "aspectName": "status", "aspect": { @@ -1413,8 +1413,8 @@ } }, { - "entityType": "tag", - "entityUrn": "urn:li:tag:ATTRIBUTE", + "entityType": "chart", + "entityUrn": "urn:li:chart:(tableau,58af9ecf-b839-da50-65e1-2e1fa20e3362)", "changeType": "UPSERT", "aspectName": "status", "aspect": { diff --git a/metadata-ingestion/tests/integration/tableau/tableau_nested_project_mces_golden.json b/metadata-ingestion/tests/integration/tableau/tableau_nested_project_mces_golden.json index 665541a140cc9..e6782c1c9f5f3 100644 --- a/metadata-ingestion/tests/integration/tableau/tableau_nested_project_mces_golden.json +++ b/metadata-ingestion/tests/integration/tableau/tableau_nested_project_mces_golden.json @@ -1308,9 +1308,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/EmailPerformancebyCampaign/EmailPerformancebyCampaign/Campaign List", "title": "Campaign List", "description": "", @@ -1869,9 +1867,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/EmailPerformancebyCampaign/EmailPerformancebyCampaign/Summary", "title": "Summary", "description": "", @@ -2482,9 +2478,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/EmailPerformancebyCampaign/EmailPerformancebyCampaign/Mobile - Sent by Campaign", "title": "Mobile - Sent by Campaign", "description": "", @@ -2991,9 +2985,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/#/site/acryl/views/dvdrental/Sheet1", "title": "Sheet 1", "description": "", @@ -3136,9 +3128,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/#/site/acryl/views/dvdrental/Sheet2", "title": "Sheet 2", "description": "", @@ -3449,9 +3439,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/#/site/acryl/views/dvdrental/Sheet3", "title": "Sheet 3", "description": "", @@ -3646,9 +3634,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Opened Requests", "title": "Opened Requests", "description": "", @@ -4147,9 +4133,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Top 10 Items by Requests and YoY Change", "title": "Top 10 Items by Requests and YoY Change", "description": "", @@ -4616,9 +4600,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Opened Problems", "title": "Opened Problems", "description": "", @@ -5117,9 +5099,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Overdue", "title": "Overdue", "description": "", @@ -5499,9 +5479,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/High and Critical Priority Problems", "title": "High and Critical Priority Problems", "description": "", @@ -5861,9 +5839,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Total Incidents by Category and YoY Change", "title": "Total Incidents by Category and YoY Change", "description": "", @@ -6246,9 +6222,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Known Errors", "title": "Known Errors", "description": "", @@ -6686,9 +6660,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Overdue Requests", "title": "Overdue Requests", "description": "", @@ -7100,9 +7072,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/AVG Time to Solve an Incident", "title": "AVG Time to Solve an Incident", "description": "", @@ -7430,9 +7400,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Made SLA?", "title": "Made SLA?", "description": "", @@ -7792,9 +7760,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/#/site/acryl/views/ExecutiveDashboard/Tooltip-IncidentBreakdownbyPriority", "title": "Tooltip - Incident Breakdown by Priority", "description": "", @@ -8044,9 +8010,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Overdue Problems", "title": "Overdue Problems", "description": "", @@ -8484,9 +8448,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/#/site/acryl/views/ExecutiveDashboard/Tooltip-ProblemBreakdownbyPriority", "title": "Tooltip - Problem Breakdown by Priority", "description": "", @@ -8820,9 +8782,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/#/site/acryl/views/ExecutiveDashboard/Tooltip-RequestBreakdownbyPriority", "title": "Tooltip - Request Breakdown by Priority", "description": "", @@ -9182,9 +9142,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Age of Active Problems", "title": "Age of Active Problems", "description": "", @@ -9570,9 +9528,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Opened Incidents", "title": "Opened Incidents", "description": "", @@ -10010,9 +9966,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/#/site/acryl/views/Workbookpublishedds/Sheet1", "title": "published sheet ds", "description": "", @@ -10323,9 +10277,7 @@ }, { "com.linkedin.pegasus2avro.dashboard.DashboardInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "title": "dvd Rental Dashboard", "description": "", "charts": [ @@ -10425,9 +10377,7 @@ }, { "com.linkedin.pegasus2avro.dashboard.DashboardInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "title": "Story 1", "description": "", "charts": [], @@ -10525,9 +10475,7 @@ }, { "com.linkedin.pegasus2avro.dashboard.DashboardInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "title": "Executive Dashboard", "description": "", "charts": [ @@ -11006,9 +10954,7 @@ "customProperties": { "hasExtracts": "True", "extractLastRefreshTime": "2018-02-09T00:05:25Z", - "extractLastIncrementalUpdateTime": "", - "extractLastUpdateTime": "2018-02-09T00:05:25Z", - "type": "EmbeddedDatasource" + "extractLastUpdateTime": "2018-02-09T00:05:25Z" }, "name": "Marketo", "tags": [] @@ -12943,13 +12889,7 @@ }, { "com.linkedin.pegasus2avro.dataset.DatasetProperties": { - "customProperties": { - "hasExtracts": "False", - "extractLastRefreshTime": "", - "extractLastIncrementalUpdateTime": "", - "extractLastUpdateTime": "", - "type": "EmbeddedDatasource" - }, + "customProperties": {}, "name": "Customer Payment Query", "tags": [] } @@ -13279,13 +13219,7 @@ }, { "com.linkedin.pegasus2avro.dataset.DatasetProperties": { - "customProperties": { - "hasExtracts": "False", - "extractLastRefreshTime": "", - "extractLastIncrementalUpdateTime": "", - "extractLastUpdateTime": "", - "type": "EmbeddedDatasource" - }, + "customProperties": {}, "name": "actor+ (dvdrental)", "tags": [] } @@ -14189,13 +14123,7 @@ }, { "com.linkedin.pegasus2avro.dataset.DatasetProperties": { - "customProperties": { - "hasExtracts": "False", - "extractLastRefreshTime": "", - "extractLastIncrementalUpdateTime": "", - "extractLastUpdateTime": "", - "type": "EmbeddedDatasource" - }, + "customProperties": {}, "name": "Superstore Datasource", "tags": [] } @@ -15148,9 +15076,7 @@ "customProperties": { "hasExtracts": "True", "extractLastRefreshTime": "2018-01-18T19:35:39Z", - "extractLastIncrementalUpdateTime": "", - "extractLastUpdateTime": "2018-01-18T19:35:39Z", - "type": "EmbeddedDatasource" + "extractLastUpdateTime": "2018-01-18T19:35:39Z" }, "name": "Requests", "tags": [] @@ -22011,9 +21937,7 @@ "customProperties": { "hasExtracts": "True", "extractLastRefreshTime": "2018-01-18T20:21:33Z", - "extractLastIncrementalUpdateTime": "", - "extractLastUpdateTime": "2018-01-18T20:21:33Z", - "type": "EmbeddedDatasource" + "extractLastUpdateTime": "2018-01-18T20:21:33Z" }, "name": "Problems", "tags": [] @@ -26122,9 +26046,7 @@ "customProperties": { "hasExtracts": "True", "extractLastRefreshTime": "2018-01-18T20:13:08Z", - "extractLastIncrementalUpdateTime": "", - "extractLastUpdateTime": "2018-01-18T20:13:08Z", - "type": "EmbeddedDatasource" + "extractLastUpdateTime": "2018-01-18T20:13:08Z" }, "name": "Incidents", "tags": [] @@ -31464,13 +31386,7 @@ }, { "com.linkedin.pegasus2avro.dataset.DatasetProperties": { - "customProperties": { - "hasExtracts": "False", - "extractLastRefreshTime": "", - "extractLastIncrementalUpdateTime": "", - "extractLastUpdateTime": "", - "type": "EmbeddedDatasource" - }, + "customProperties": {}, "name": "test publish datasource", "tags": [] } @@ -31858,13 +31774,7 @@ }, { "com.linkedin.pegasus2avro.dataset.DatasetProperties": { - "customProperties": { - "hasExtracts": "False", - "extractLastRefreshTime": "", - "extractLastIncrementalUpdateTime": "", - "extractLastUpdateTime": "", - "type": "PublishedDatasource" - }, + "customProperties": {}, "name": "test publish datasource", "description": "description for test publish datasource", "tags": [] @@ -32324,13 +32234,7 @@ }, { "com.linkedin.pegasus2avro.dataset.DatasetProperties": { - "customProperties": { - "hasExtracts": "False", - "extractLastRefreshTime": "", - "extractLastIncrementalUpdateTime": "", - "extractLastUpdateTime": "", - "type": "PublishedDatasource" - }, + "customProperties": {}, "name": "Superstore Datasource", "description": "Description for Superstore dataset", "tags": [] @@ -33712,7 +33616,6 @@ { "fieldPath": "Test_Variant", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33725,7 +33628,6 @@ { "fieldPath": "Mailing_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33738,7 +33640,6 @@ { "fieldPath": "Campaign_Run_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33751,7 +33652,6 @@ { "fieldPath": "id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33764,7 +33664,6 @@ { "fieldPath": "Activity_Date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -33777,7 +33676,6 @@ { "fieldPath": "Choice_Number", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33790,7 +33688,6 @@ { "fieldPath": "Step_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33803,7 +33700,6 @@ { "fieldPath": "Campaign_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33816,7 +33712,6 @@ { "fieldPath": "Lead_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33829,7 +33724,6 @@ { "fieldPath": "Has_Predictive", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -33910,7 +33804,6 @@ { "fieldPath": "Campaign_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33923,7 +33816,6 @@ { "fieldPath": "Campaign_Run_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33936,7 +33828,6 @@ { "fieldPath": "Link", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -33949,7 +33840,6 @@ { "fieldPath": "Test_Variant", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33962,7 +33852,6 @@ { "fieldPath": "Platform", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -33975,7 +33864,6 @@ { "fieldPath": "id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33988,7 +33876,6 @@ { "fieldPath": "Activity_Date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -34001,7 +33888,6 @@ { "fieldPath": "Choice_Number", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34014,7 +33900,6 @@ { "fieldPath": "Mailing_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34027,7 +33912,6 @@ { "fieldPath": "Step_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34040,7 +33924,6 @@ { "fieldPath": "Lead_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34053,7 +33936,6 @@ { "fieldPath": "Link_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34066,7 +33948,6 @@ { "fieldPath": "Is_Predictive", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -34079,7 +33960,6 @@ { "fieldPath": "Device", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34092,7 +33972,6 @@ { "fieldPath": "Is_Mobile_Device", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -34105,7 +33984,6 @@ { "fieldPath": "User_Agent", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34186,7 +34064,6 @@ { "fieldPath": "Platform", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34199,7 +34076,6 @@ { "fieldPath": "Device", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34212,7 +34088,6 @@ { "fieldPath": "Choice_Number", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34225,7 +34100,6 @@ { "fieldPath": "Lead_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34238,7 +34112,6 @@ { "fieldPath": "Activity_Date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -34251,7 +34124,6 @@ { "fieldPath": "Test_Variant", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34264,7 +34136,6 @@ { "fieldPath": "Is_Mobile_Device", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -34277,7 +34148,6 @@ { "fieldPath": "Has_Predictive", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -34290,7 +34160,6 @@ { "fieldPath": "Step_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34303,7 +34172,6 @@ { "fieldPath": "User_Agent", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34316,7 +34184,6 @@ { "fieldPath": "Mailing_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34329,7 +34196,6 @@ { "fieldPath": "Campaign_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34342,7 +34208,6 @@ { "fieldPath": "Campaign_Run_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34355,7 +34220,6 @@ { "fieldPath": "id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34436,7 +34300,6 @@ { "fieldPath": "Test_Variant", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34449,7 +34312,6 @@ { "fieldPath": "Campaign_Run_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34462,7 +34324,6 @@ { "fieldPath": "Activity_Date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -34475,7 +34336,6 @@ { "fieldPath": "Mailing_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34488,7 +34348,6 @@ { "fieldPath": "Has_Predictive", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -34501,7 +34360,6 @@ { "fieldPath": "id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34514,7 +34372,6 @@ { "fieldPath": "Campaign_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34527,7 +34384,6 @@ { "fieldPath": "Step_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34540,7 +34396,6 @@ { "fieldPath": "Lead_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34553,7 +34408,6 @@ { "fieldPath": "Choice_Number", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34634,7 +34488,6 @@ { "fieldPath": "programName", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34647,7 +34500,6 @@ { "fieldPath": "name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34660,7 +34512,6 @@ { "fieldPath": "programId", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34673,7 +34524,6 @@ { "fieldPath": "description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34686,7 +34536,6 @@ { "fieldPath": "createdAt", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -34699,7 +34548,6 @@ { "fieldPath": "id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34712,7 +34560,6 @@ { "fieldPath": "workspaceName", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34725,7 +34572,6 @@ { "fieldPath": "updatedAt", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -34738,7 +34584,6 @@ { "fieldPath": "active", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -34819,7 +34664,6 @@ { "fieldPath": "postal_code", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34832,7 +34676,6 @@ { "fieldPath": "last_update", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -34845,7 +34688,6 @@ { "fieldPath": "phone", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34858,7 +34700,6 @@ { "fieldPath": "address2", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34871,7 +34712,6 @@ { "fieldPath": "address", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34884,7 +34724,6 @@ { "fieldPath": "city_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34897,7 +34736,6 @@ { "fieldPath": "district", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34910,7 +34748,6 @@ { "fieldPath": "address_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34991,7 +34828,6 @@ { "fieldPath": "last_update", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -35004,7 +34840,6 @@ { "fieldPath": "last_name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35017,7 +34852,6 @@ { "fieldPath": "first_name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35030,7 +34864,6 @@ { "fieldPath": "actor_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -35111,7 +34944,6 @@ { "fieldPath": "Person", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35124,7 +34956,6 @@ { "fieldPath": "Region", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35202,7 +35033,6 @@ { "fieldPath": "Returned", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35215,7 +35045,6 @@ { "fieldPath": "Order ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35293,7 +35122,6 @@ { "fieldPath": "Product ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35306,7 +35134,6 @@ { "fieldPath": "Category", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35319,7 +35146,6 @@ { "fieldPath": "Postal Code", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -35332,7 +35158,6 @@ { "fieldPath": "City", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35345,7 +35170,6 @@ { "fieldPath": "Quantity", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -35358,7 +35182,6 @@ { "fieldPath": "State", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35371,7 +35194,6 @@ { "fieldPath": "Order Date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.DateType": {} @@ -35384,7 +35206,6 @@ { "fieldPath": "Customer Name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35397,7 +35218,6 @@ { "fieldPath": "Country/Region", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35410,7 +35230,6 @@ { "fieldPath": "Sales", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -35423,7 +35242,6 @@ { "fieldPath": "Segment", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35436,7 +35254,6 @@ { "fieldPath": "Sub-Category", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35449,7 +35266,6 @@ { "fieldPath": "Profit", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -35462,7 +35278,6 @@ { "fieldPath": "Product Name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35475,7 +35290,6 @@ { "fieldPath": "Customer ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35488,7 +35302,6 @@ { "fieldPath": "Order ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35501,7 +35314,6 @@ { "fieldPath": "Row ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -35514,7 +35326,6 @@ { "fieldPath": "Discount", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -35527,7 +35338,6 @@ { "fieldPath": "Ship Date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.DateType": {} @@ -35540,7 +35350,6 @@ { "fieldPath": "Ship Mode", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35553,7 +35362,6 @@ { "fieldPath": "Region", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35633,7 +35441,6 @@ { "fieldPath": "contact_type", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35646,7 +35453,6 @@ { "fieldPath": "sys_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35659,7 +35465,6 @@ { "fieldPath": "user_input", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35672,7 +35477,6 @@ { "fieldPath": "opened_at", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -35685,7 +35489,6 @@ { "fieldPath": "expected_start", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -35698,7 +35501,6 @@ { "fieldPath": "delivery_plan", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35711,7 +35513,6 @@ { "fieldPath": "opened_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35724,7 +35525,6 @@ { "fieldPath": "delivery_task", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35737,7 +35537,6 @@ { "fieldPath": "approval_set", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -35750,7 +35549,6 @@ { "fieldPath": "urgency", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -35763,7 +35561,6 @@ { "fieldPath": "comments", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35776,7 +35573,6 @@ { "fieldPath": "active", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -35789,7 +35585,6 @@ { "fieldPath": "priority", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -35802,7 +35597,6 @@ { "fieldPath": "knowledge", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -35815,7 +35609,6 @@ { "fieldPath": "closed_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35828,7 +35621,6 @@ { "fieldPath": "activity_due", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -35841,7 +35633,6 @@ { "fieldPath": "assignment_group", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35854,7 +35645,6 @@ { "fieldPath": "correlation_display", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35867,7 +35657,6 @@ { "fieldPath": "state", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -35880,7 +35669,6 @@ { "fieldPath": "work_end", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -35893,7 +35681,6 @@ { "fieldPath": "description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35906,7 +35693,6 @@ { "fieldPath": "business_service", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35919,7 +35705,6 @@ { "fieldPath": "approval_history", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35932,7 +35717,6 @@ { "fieldPath": "upon_reject", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35945,7 +35729,6 @@ { "fieldPath": "sys_created_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -35958,7 +35741,6 @@ { "fieldPath": "parent", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35971,7 +35753,6 @@ { "fieldPath": "order", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -35984,7 +35765,6 @@ { "fieldPath": "work_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35997,7 +35777,6 @@ { "fieldPath": "work_notes_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36010,7 +35789,6 @@ { "fieldPath": "sys_created_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36023,7 +35801,6 @@ { "fieldPath": "sys_updated_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36036,7 +35813,6 @@ { "fieldPath": "work_start", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36049,7 +35825,6 @@ { "fieldPath": "group_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36062,7 +35837,6 @@ { "fieldPath": "sys_mod_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -36075,7 +35849,6 @@ { "fieldPath": "location", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36088,7 +35861,6 @@ { "fieldPath": "correlation_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36101,7 +35873,6 @@ { "fieldPath": "sys_updated_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36114,7 +35885,6 @@ { "fieldPath": "sla_due", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36127,7 +35897,6 @@ { "fieldPath": "number", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36140,7 +35909,6 @@ { "fieldPath": "business_duration", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36153,7 +35921,6 @@ { "fieldPath": "follow_up", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36166,7 +35933,6 @@ { "fieldPath": "additional_assignee_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36179,7 +35945,6 @@ { "fieldPath": "escalation", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -36192,7 +35957,6 @@ { "fieldPath": "due_date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36205,7 +35969,6 @@ { "fieldPath": "approval", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36218,7 +35981,6 @@ { "fieldPath": "made_sla", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -36231,7 +35993,6 @@ { "fieldPath": "assigned_to", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36244,7 +36005,6 @@ { "fieldPath": "calendar_duration", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36257,7 +36017,6 @@ { "fieldPath": "closed_at", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36270,7 +36029,6 @@ { "fieldPath": "sys_domain", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36283,7 +36041,6 @@ { "fieldPath": "cmdb_ci", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36296,7 +36053,6 @@ { "fieldPath": "comments_and_work_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36309,7 +36065,6 @@ { "fieldPath": "impact", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -36322,7 +36077,6 @@ { "fieldPath": "close_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36335,7 +36089,6 @@ { "fieldPath": "reassignment_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -36348,7 +36101,6 @@ { "fieldPath": "company", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36361,7 +36113,6 @@ { "fieldPath": "sys_domain_path", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36374,7 +36125,6 @@ { "fieldPath": "short_description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36387,7 +36137,6 @@ { "fieldPath": "upon_approval", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36400,7 +36149,6 @@ { "fieldPath": "watch_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36413,7 +36161,6 @@ { "fieldPath": "time_worked", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36426,7 +36173,6 @@ { "fieldPath": "sys_class_name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36507,7 +36253,6 @@ { "fieldPath": "work_notes_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36520,7 +36265,6 @@ { "fieldPath": "closed_at", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36533,7 +36277,6 @@ { "fieldPath": "user_input", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36546,7 +36289,6 @@ { "fieldPath": "requested_for", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36559,7 +36301,6 @@ { "fieldPath": "opened_at", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36572,7 +36313,6 @@ { "fieldPath": "price", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36585,7 +36325,6 @@ { "fieldPath": "assigned_to", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36598,7 +36337,6 @@ { "fieldPath": "number", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36611,7 +36349,6 @@ { "fieldPath": "delivery_plan", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36624,7 +36361,6 @@ { "fieldPath": "delivery_address", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36637,7 +36373,6 @@ { "fieldPath": "business_duration", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36650,7 +36385,6 @@ { "fieldPath": "urgency", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -36663,7 +36397,6 @@ { "fieldPath": "work_end", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36676,7 +36409,6 @@ { "fieldPath": "due_date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36689,7 +36421,6 @@ { "fieldPath": "parent", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36702,7 +36433,6 @@ { "fieldPath": "made_sla", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -36715,7 +36445,6 @@ { "fieldPath": "assignment_group", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36728,7 +36457,6 @@ { "fieldPath": "sys_class_name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36741,7 +36469,6 @@ { "fieldPath": "additional_assignee_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36754,7 +36481,6 @@ { "fieldPath": "work_start", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36767,7 +36493,6 @@ { "fieldPath": "sys_domain_path", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36780,7 +36505,6 @@ { "fieldPath": "time_worked", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36793,7 +36517,6 @@ { "fieldPath": "comments_and_work_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36806,7 +36529,6 @@ { "fieldPath": "group_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36819,7 +36541,6 @@ { "fieldPath": "business_service", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36832,7 +36553,6 @@ { "fieldPath": "correlation_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36845,7 +36565,6 @@ { "fieldPath": "cmdb_ci", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36858,7 +36577,6 @@ { "fieldPath": "requested_date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.DateType": {} @@ -36871,7 +36589,6 @@ { "fieldPath": "follow_up", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36884,7 +36601,6 @@ { "fieldPath": "sys_updated_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36897,7 +36613,6 @@ { "fieldPath": "state", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -36910,7 +36625,6 @@ { "fieldPath": "comments", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36923,7 +36637,6 @@ { "fieldPath": "approval_set", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36936,7 +36649,6 @@ { "fieldPath": "close_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36949,7 +36661,6 @@ { "fieldPath": "upon_approval", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36962,7 +36673,6 @@ { "fieldPath": "company", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36975,7 +36685,6 @@ { "fieldPath": "activity_due", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36988,7 +36697,6 @@ { "fieldPath": "contact_type", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37001,7 +36709,6 @@ { "fieldPath": "approval", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37014,7 +36721,6 @@ { "fieldPath": "calendar_duration", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -37027,7 +36733,6 @@ { "fieldPath": "reassignment_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -37040,7 +36745,6 @@ { "fieldPath": "delivery_task", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37053,7 +36757,6 @@ { "fieldPath": "approval_history", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37066,7 +36769,6 @@ { "fieldPath": "sys_created_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -37079,7 +36781,6 @@ { "fieldPath": "request_state", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37092,7 +36793,6 @@ { "fieldPath": "watch_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37105,7 +36805,6 @@ { "fieldPath": "upon_reject", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37118,7 +36817,6 @@ { "fieldPath": "expected_start", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -37131,7 +36829,6 @@ { "fieldPath": "active", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -37144,7 +36841,6 @@ { "fieldPath": "opened_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37157,7 +36853,6 @@ { "fieldPath": "work_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37170,7 +36865,6 @@ { "fieldPath": "impact", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -37183,7 +36877,6 @@ { "fieldPath": "description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37196,7 +36889,6 @@ { "fieldPath": "sla_due", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -37209,7 +36901,6 @@ { "fieldPath": "correlation_display", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37222,7 +36913,6 @@ { "fieldPath": "priority", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -37235,7 +36925,6 @@ { "fieldPath": "stage", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37248,7 +36937,6 @@ { "fieldPath": "sys_created_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37261,7 +36949,6 @@ { "fieldPath": "sys_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37274,7 +36961,6 @@ { "fieldPath": "escalation", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -37287,7 +36973,6 @@ { "fieldPath": "closed_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37300,7 +36985,6 @@ { "fieldPath": "short_description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37313,7 +36997,6 @@ { "fieldPath": "location", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37326,7 +37009,6 @@ { "fieldPath": "special_instructions", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37339,7 +37021,6 @@ { "fieldPath": "order", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -37352,7 +37033,6 @@ { "fieldPath": "sys_updated_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37365,7 +37045,6 @@ { "fieldPath": "sys_mod_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -37378,7 +37057,6 @@ { "fieldPath": "knowledge", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -37391,7 +37069,6 @@ { "fieldPath": "sys_domain", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37404,7 +37081,6 @@ { "fieldPath": "calendar_stc", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -37485,7 +37161,6 @@ { "fieldPath": "watch_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37498,7 +37173,6 @@ { "fieldPath": "due_date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -37511,7 +37185,6 @@ { "fieldPath": "made_sla", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -37524,7 +37197,6 @@ { "fieldPath": "parent", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37537,7 +37209,6 @@ { "fieldPath": "assigned_to", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37550,7 +37221,6 @@ { "fieldPath": "sys_mod_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -37563,7 +37233,6 @@ { "fieldPath": "cmdb_ci", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37576,7 +37245,6 @@ { "fieldPath": "sys_domain", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37589,7 +37257,6 @@ { "fieldPath": "configuration_item", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37602,7 +37269,6 @@ { "fieldPath": "closed_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37615,7 +37281,6 @@ { "fieldPath": "active", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -37628,7 +37293,6 @@ { "fieldPath": "expected_start", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -37641,7 +37305,6 @@ { "fieldPath": "recurring_price", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37654,7 +37317,6 @@ { "fieldPath": "work_end", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -37667,7 +37329,6 @@ { "fieldPath": "short_description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37680,7 +37341,6 @@ { "fieldPath": "approval", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37693,7 +37353,6 @@ { "fieldPath": "opened_at", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -37706,7 +37365,6 @@ { "fieldPath": "order", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -37719,7 +37377,6 @@ { "fieldPath": "assignment_group", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37732,7 +37389,6 @@ { "fieldPath": "sc_catalog", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37745,7 +37401,6 @@ { "fieldPath": "knowledge", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -37758,7 +37413,6 @@ { "fieldPath": "stage", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37771,7 +37425,6 @@ { "fieldPath": "correlation_display", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37784,7 +37437,6 @@ { "fieldPath": "reassignment_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -37797,7 +37449,6 @@ { "fieldPath": "delivery_plan", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37810,7 +37461,6 @@ { "fieldPath": "sys_class_name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37823,7 +37473,6 @@ { "fieldPath": "user_input", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37836,7 +37485,6 @@ { "fieldPath": "description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37849,7 +37497,6 @@ { "fieldPath": "activity_due", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -37862,7 +37509,6 @@ { "fieldPath": "price", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37875,7 +37521,6 @@ { "fieldPath": "work_notes_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37888,7 +37533,6 @@ { "fieldPath": "estimated_delivery", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -37901,7 +37545,6 @@ { "fieldPath": "additional_assignee_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37914,7 +37557,6 @@ { "fieldPath": "context", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37927,7 +37569,6 @@ { "fieldPath": "business_duration", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -37940,7 +37581,6 @@ { "fieldPath": "approval_set", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -37953,7 +37593,6 @@ { "fieldPath": "priority", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -37966,7 +37605,6 @@ { "fieldPath": "sys_updated_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -37979,7 +37617,6 @@ { "fieldPath": "sys_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37992,7 +37629,6 @@ { "fieldPath": "state", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -38005,7 +37641,6 @@ { "fieldPath": "business_service", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38018,7 +37653,6 @@ { "fieldPath": "billable", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -38031,7 +37665,6 @@ { "fieldPath": "approval_history", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38044,7 +37677,6 @@ { "fieldPath": "recurring_frequency", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38057,7 +37689,6 @@ { "fieldPath": "contact_type", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38070,7 +37701,6 @@ { "fieldPath": "cat_item", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38083,7 +37713,6 @@ { "fieldPath": "sys_updated_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38096,7 +37725,6 @@ { "fieldPath": "sys_domain_path", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38109,7 +37737,6 @@ { "fieldPath": "comments", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38122,7 +37749,6 @@ { "fieldPath": "impact", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -38135,7 +37761,6 @@ { "fieldPath": "order_guide", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38148,7 +37773,6 @@ { "fieldPath": "sla_due", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -38161,7 +37785,6 @@ { "fieldPath": "sys_created_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38174,7 +37797,6 @@ { "fieldPath": "comments_and_work_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38187,7 +37809,6 @@ { "fieldPath": "opened_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38200,7 +37821,6 @@ { "fieldPath": "backordered", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -38213,7 +37833,6 @@ { "fieldPath": "correlation_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38226,7 +37845,6 @@ { "fieldPath": "group_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38239,7 +37857,6 @@ { "fieldPath": "delivery_task", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38252,7 +37869,6 @@ { "fieldPath": "number", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38265,7 +37881,6 @@ { "fieldPath": "sys_created_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -38278,7 +37893,6 @@ { "fieldPath": "company", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38291,7 +37905,6 @@ { "fieldPath": "work_start", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -38304,7 +37917,6 @@ { "fieldPath": "request", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38317,7 +37929,6 @@ { "fieldPath": "close_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38330,7 +37941,6 @@ { "fieldPath": "work_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38343,7 +37953,6 @@ { "fieldPath": "calendar_duration", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -38356,7 +37965,6 @@ { "fieldPath": "quantity", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -38369,7 +37977,6 @@ { "fieldPath": "follow_up", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -38382,7 +37989,6 @@ { "fieldPath": "location", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38395,7 +38001,6 @@ { "fieldPath": "upon_reject", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38408,7 +38013,6 @@ { "fieldPath": "closed_at", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -38421,7 +38025,6 @@ { "fieldPath": "time_worked", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38434,7 +38037,6 @@ { "fieldPath": "escalation", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -38447,7 +38049,6 @@ { "fieldPath": "urgency", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -38460,7 +38061,6 @@ { "fieldPath": "upon_approval", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38541,7 +38141,6 @@ { "fieldPath": "sc_catalogs", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38554,7 +38153,6 @@ { "fieldPath": "sys_updated_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38567,7 +38165,6 @@ { "fieldPath": "type", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38580,7 +38177,6 @@ { "fieldPath": "mobile_picture_type", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38593,7 +38189,6 @@ { "fieldPath": "workflow", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38606,7 +38201,6 @@ { "fieldPath": "sys_customer_update", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -38619,7 +38213,6 @@ { "fieldPath": "sys_class_name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38632,7 +38225,6 @@ { "fieldPath": "visible_standalone", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -38645,7 +38237,6 @@ { "fieldPath": "no_quantity", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -38658,7 +38249,6 @@ { "fieldPath": "order", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -38671,7 +38261,6 @@ { "fieldPath": "sys_updated_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -38684,7 +38273,6 @@ { "fieldPath": "sys_scope", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38697,7 +38285,6 @@ { "fieldPath": "template", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38710,7 +38297,6 @@ { "fieldPath": "no_proceed_checkout", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -38723,7 +38309,6 @@ { "fieldPath": "billable", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -38736,7 +38321,6 @@ { "fieldPath": "name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38749,7 +38333,6 @@ { "fieldPath": "delivery_plan", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38762,7 +38345,6 @@ { "fieldPath": "description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38775,7 +38357,6 @@ { "fieldPath": "meta", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38788,7 +38369,6 @@ { "fieldPath": "ordered_item_link", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38801,7 +38381,6 @@ { "fieldPath": "sys_mod_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -38814,7 +38393,6 @@ { "fieldPath": "sc_ic_version", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -38827,7 +38405,6 @@ { "fieldPath": "image", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38840,7 +38417,6 @@ { "fieldPath": "sys_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38853,7 +38429,6 @@ { "fieldPath": "short_description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38866,7 +38441,6 @@ { "fieldPath": "sys_policy", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38879,7 +38453,6 @@ { "fieldPath": "roles", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38892,7 +38465,6 @@ { "fieldPath": "picture", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38905,7 +38477,6 @@ { "fieldPath": "list_price", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38918,7 +38489,6 @@ { "fieldPath": "no_order_now", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -38931,7 +38501,6 @@ { "fieldPath": "vendor", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38944,7 +38513,6 @@ { "fieldPath": "sc_ic_item_staging", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38957,7 +38525,6 @@ { "fieldPath": "no_order", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -38970,7 +38537,6 @@ { "fieldPath": "entitlement_script", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38983,7 +38549,6 @@ { "fieldPath": "active", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -38996,7 +38561,6 @@ { "fieldPath": "icon", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39009,7 +38573,6 @@ { "fieldPath": "ignore_price", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -39022,7 +38585,6 @@ { "fieldPath": "start_closed", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -39035,7 +38597,6 @@ { "fieldPath": "sys_package", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39048,7 +38609,6 @@ { "fieldPath": "group", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39061,7 +38621,6 @@ { "fieldPath": "sys_replace_on_upgrade", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -39074,7 +38633,6 @@ { "fieldPath": "cost", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -39087,7 +38645,6 @@ { "fieldPath": "use_sc_layout", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -39100,7 +38657,6 @@ { "fieldPath": "location", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39113,7 +38669,6 @@ { "fieldPath": "availability", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39126,7 +38681,6 @@ { "fieldPath": "model", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39139,7 +38693,6 @@ { "fieldPath": "custom_cart", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39152,7 +38705,6 @@ { "fieldPath": "mobile_picture", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39165,7 +38717,6 @@ { "fieldPath": "category", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39178,7 +38729,6 @@ { "fieldPath": "no_cart", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -39191,7 +38741,6 @@ { "fieldPath": "mobile_hide_price", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -39204,7 +38753,6 @@ { "fieldPath": "sys_created_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39217,7 +38765,6 @@ { "fieldPath": "price", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39230,7 +38777,6 @@ { "fieldPath": "delivery_time", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -39243,7 +38789,6 @@ { "fieldPath": "no_search", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -39256,7 +38801,6 @@ { "fieldPath": "sys_created_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -39269,7 +38813,6 @@ { "fieldPath": "recurring_frequency", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39282,7 +38825,6 @@ { "fieldPath": "recurring_price", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39295,7 +38837,6 @@ { "fieldPath": "delivery_plan_script", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39308,7 +38849,6 @@ { "fieldPath": "visible_bundle", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -39321,7 +38861,6 @@ { "fieldPath": "sys_update_name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39334,7 +38873,6 @@ { "fieldPath": "sys_name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39347,7 +38885,6 @@ { "fieldPath": "visible_guide", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -39360,7 +38897,6 @@ { "fieldPath": "preview", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39373,7 +38909,6 @@ { "fieldPath": "omit_price", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -39454,7 +38989,6 @@ { "fieldPath": "u_u", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39467,7 +39001,6 @@ { "fieldPath": "sys_updated_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39480,7 +39013,6 @@ { "fieldPath": "source", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39493,7 +39025,6 @@ { "fieldPath": "exclude_manager", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -39506,7 +39037,6 @@ { "fieldPath": "description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39519,7 +39049,6 @@ { "fieldPath": "cost_center", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39532,7 +39061,6 @@ { "fieldPath": "sys_created_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39545,7 +39073,6 @@ { "fieldPath": "parent", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39558,7 +39085,6 @@ { "fieldPath": "sys_mod_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -39571,7 +39097,6 @@ { "fieldPath": "sys_updated_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -39584,7 +39109,6 @@ { "fieldPath": "u_lucha", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39597,7 +39121,6 @@ { "fieldPath": "sys_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39610,7 +39133,6 @@ { "fieldPath": "u_lu2", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39623,7 +39145,6 @@ { "fieldPath": "type", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39636,7 +39157,6 @@ { "fieldPath": "roles", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39649,7 +39169,6 @@ { "fieldPath": "sys_created_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -39662,7 +39181,6 @@ { "fieldPath": "default_assignee", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39675,7 +39193,6 @@ { "fieldPath": "email", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39688,7 +39205,6 @@ { "fieldPath": "manager", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39701,7 +39217,6 @@ { "fieldPath": "name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39714,7 +39229,6 @@ { "fieldPath": "active", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -39727,7 +39241,6 @@ { "fieldPath": "include_members", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -39808,7 +39321,6 @@ { "fieldPath": "opened_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39821,7 +39333,6 @@ { "fieldPath": "sys_class_name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39834,7 +39345,6 @@ { "fieldPath": "sys_created_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39847,7 +39357,6 @@ { "fieldPath": "sys_updated_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -39860,7 +39369,6 @@ { "fieldPath": "closed_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39873,7 +39381,6 @@ { "fieldPath": "close_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39886,7 +39393,6 @@ { "fieldPath": "made_sla", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -39899,7 +39405,6 @@ { "fieldPath": "state", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -39912,7 +39417,6 @@ { "fieldPath": "related_incidents", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -39925,7 +39429,6 @@ { "fieldPath": "business_duration", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -39938,7 +39441,6 @@ { "fieldPath": "sys_domain", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39951,7 +39453,6 @@ { "fieldPath": "delivery_task", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39964,7 +39465,6 @@ { "fieldPath": "priority", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -39977,7 +39477,6 @@ { "fieldPath": "sys_created_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -39990,7 +39489,6 @@ { "fieldPath": "sys_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40003,7 +39501,6 @@ { "fieldPath": "escalation", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -40016,7 +39513,6 @@ { "fieldPath": "business_service", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40029,7 +39525,6 @@ { "fieldPath": "comments_and_work_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40042,7 +39537,6 @@ { "fieldPath": "rfc", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40055,7 +39549,6 @@ { "fieldPath": "sys_domain_path", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40068,7 +39561,6 @@ { "fieldPath": "cmdb_ci", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40081,7 +39573,6 @@ { "fieldPath": "problem_state", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -40094,7 +39585,6 @@ { "fieldPath": "delivery_plan", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40107,7 +39597,6 @@ { "fieldPath": "user_input", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40120,7 +39609,6 @@ { "fieldPath": "active", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -40133,7 +39621,6 @@ { "fieldPath": "location", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40146,7 +39633,6 @@ { "fieldPath": "expected_start", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -40159,7 +39645,6 @@ { "fieldPath": "calendar_duration", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -40172,7 +39657,6 @@ { "fieldPath": "number", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40185,7 +39669,6 @@ { "fieldPath": "sla_due", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -40198,7 +39681,6 @@ { "fieldPath": "work_notes_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40211,7 +39693,6 @@ { "fieldPath": "knowledge", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -40224,7 +39705,6 @@ { "fieldPath": "sys_updated_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40237,7 +39717,6 @@ { "fieldPath": "time_worked", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40250,7 +39729,6 @@ { "fieldPath": "order", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -40263,7 +39741,6 @@ { "fieldPath": "assignment_group", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40276,7 +39753,6 @@ { "fieldPath": "upon_approval", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40289,7 +39765,6 @@ { "fieldPath": "company", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40302,7 +39777,6 @@ { "fieldPath": "opened_at", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -40315,7 +39789,6 @@ { "fieldPath": "group_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40328,7 +39801,6 @@ { "fieldPath": "work_around", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40341,7 +39813,6 @@ { "fieldPath": "description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40354,7 +39825,6 @@ { "fieldPath": "work_end", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -40367,7 +39837,6 @@ { "fieldPath": "correlation_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40380,7 +39849,6 @@ { "fieldPath": "approval_set", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -40393,7 +39861,6 @@ { "fieldPath": "urgency", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -40406,7 +39873,6 @@ { "fieldPath": "impact", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -40419,7 +39885,6 @@ { "fieldPath": "short_description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40432,7 +39897,6 @@ { "fieldPath": "approval", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40445,7 +39909,6 @@ { "fieldPath": "closed_at", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -40458,7 +39921,6 @@ { "fieldPath": "known_error", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -40471,7 +39933,6 @@ { "fieldPath": "due_date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -40484,7 +39945,6 @@ { "fieldPath": "work_start", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -40497,7 +39957,6 @@ { "fieldPath": "activity_due", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -40510,7 +39969,6 @@ { "fieldPath": "sys_mod_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -40523,7 +39981,6 @@ { "fieldPath": "correlation_display", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40536,7 +39993,6 @@ { "fieldPath": "contact_type", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40549,7 +40005,6 @@ { "fieldPath": "additional_assignee_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40562,7 +40017,6 @@ { "fieldPath": "approval_history", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40575,7 +40029,6 @@ { "fieldPath": "reassignment_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -40588,7 +40041,6 @@ { "fieldPath": "follow_up", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -40601,7 +40053,6 @@ { "fieldPath": "comments", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40614,7 +40065,6 @@ { "fieldPath": "work_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40627,7 +40077,6 @@ { "fieldPath": "parent", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40640,7 +40089,6 @@ { "fieldPath": "assigned_to", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40653,7 +40101,6 @@ { "fieldPath": "watch_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40666,7 +40113,6 @@ { "fieldPath": "upon_reject", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40747,7 +40193,6 @@ { "fieldPath": "sys_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40760,7 +40205,6 @@ { "fieldPath": "correlation_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40773,7 +40217,6 @@ { "fieldPath": "urgency", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -40786,7 +40229,6 @@ { "fieldPath": "severity", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -40799,7 +40241,6 @@ { "fieldPath": "business_service", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40812,7 +40253,6 @@ { "fieldPath": "location", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40825,7 +40265,6 @@ { "fieldPath": "approval_set", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -40838,7 +40277,6 @@ { "fieldPath": "closed_at", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -40851,7 +40289,6 @@ { "fieldPath": "parent_incident", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40864,7 +40301,6 @@ { "fieldPath": "subcategory", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40877,7 +40313,6 @@ { "fieldPath": "company", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40890,7 +40325,6 @@ { "fieldPath": "caller_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40903,7 +40337,6 @@ { "fieldPath": "resolved_at", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -40916,7 +40349,6 @@ { "fieldPath": "group_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40929,7 +40361,6 @@ { "fieldPath": "correlation_display", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40942,7 +40373,6 @@ { "fieldPath": "resolved_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40955,7 +40385,6 @@ { "fieldPath": "sys_created_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -40968,7 +40397,6 @@ { "fieldPath": "business_stc", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -40981,7 +40409,6 @@ { "fieldPath": "sys_domain_path", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40994,7 +40421,6 @@ { "fieldPath": "parent", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41007,7 +40433,6 @@ { "fieldPath": "category", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41020,7 +40445,6 @@ { "fieldPath": "user_input", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41033,7 +40457,6 @@ { "fieldPath": "number", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41046,7 +40469,6 @@ { "fieldPath": "escalation", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -41059,7 +40481,6 @@ { "fieldPath": "state", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -41072,7 +40493,6 @@ { "fieldPath": "approval_history", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41085,7 +40505,6 @@ { "fieldPath": "impact", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -41098,7 +40517,6 @@ { "fieldPath": "expected_start", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -41111,7 +40529,6 @@ { "fieldPath": "additional_assignee_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41124,7 +40541,6 @@ { "fieldPath": "child_incidents", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -41137,7 +40553,6 @@ { "fieldPath": "cmdb_ci", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41150,7 +40565,6 @@ { "fieldPath": "incident_state", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -41163,7 +40577,6 @@ { "fieldPath": "notify", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -41176,7 +40589,6 @@ { "fieldPath": "work_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41189,7 +40601,6 @@ { "fieldPath": "reassignment_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -41202,7 +40613,6 @@ { "fieldPath": "contact_type", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41215,7 +40625,6 @@ { "fieldPath": "opened_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41228,7 +40637,6 @@ { "fieldPath": "sys_class_name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41241,7 +40649,6 @@ { "fieldPath": "problem_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41254,7 +40661,6 @@ { "fieldPath": "due_date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -41267,7 +40673,6 @@ { "fieldPath": "approval", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41280,7 +40685,6 @@ { "fieldPath": "description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41293,7 +40697,6 @@ { "fieldPath": "order", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -41306,7 +40709,6 @@ { "fieldPath": "opened_at", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -41319,7 +40721,6 @@ { "fieldPath": "work_notes_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41332,7 +40733,6 @@ { "fieldPath": "priority", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -41345,7 +40745,6 @@ { "fieldPath": "time_worked", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41358,7 +40757,6 @@ { "fieldPath": "sys_domain", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41371,7 +40769,6 @@ { "fieldPath": "caused_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41384,7 +40781,6 @@ { "fieldPath": "sys_updated_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41397,7 +40793,6 @@ { "fieldPath": "upon_reject", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41410,7 +40805,6 @@ { "fieldPath": "delivery_task", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41423,7 +40817,6 @@ { "fieldPath": "knowledge", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -41436,7 +40829,6 @@ { "fieldPath": "sys_updated_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -41449,7 +40841,6 @@ { "fieldPath": "calendar_duration", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -41462,7 +40853,6 @@ { "fieldPath": "closed_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41475,7 +40865,6 @@ { "fieldPath": "comments", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41488,7 +40877,6 @@ { "fieldPath": "short_description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41501,7 +40889,6 @@ { "fieldPath": "assigned_to", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41514,7 +40901,6 @@ { "fieldPath": "assignment_group", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41527,7 +40913,6 @@ { "fieldPath": "work_end", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -41540,7 +40925,6 @@ { "fieldPath": "reopen_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -41553,7 +40937,6 @@ { "fieldPath": "work_start", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -41566,7 +40949,6 @@ { "fieldPath": "made_sla", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -41579,7 +40961,6 @@ { "fieldPath": "sys_mod_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -41592,7 +40973,6 @@ { "fieldPath": "calendar_stc", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -41605,7 +40985,6 @@ { "fieldPath": "rfc", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41618,7 +40997,6 @@ { "fieldPath": "delivery_plan", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41631,7 +41009,6 @@ { "fieldPath": "close_code", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41644,7 +41021,6 @@ { "fieldPath": "close_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41657,7 +41033,6 @@ { "fieldPath": "activity_due", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -41670,7 +41045,6 @@ { "fieldPath": "sys_created_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41683,7 +41057,6 @@ { "fieldPath": "active", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -41696,7 +41069,6 @@ { "fieldPath": "business_duration", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -41709,7 +41081,6 @@ { "fieldPath": "follow_up", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -41722,7 +41093,6 @@ { "fieldPath": "comments_and_work_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41735,7 +41105,6 @@ { "fieldPath": "upon_approval", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41748,7 +41117,6 @@ { "fieldPath": "watch_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41761,7 +41129,6 @@ { "fieldPath": "sla_due", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -41842,7 +41209,6 @@ { "fieldPath": "first_discovered", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -41855,7 +41221,6 @@ { "fieldPath": "operational_status", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -41868,7 +41233,6 @@ { "fieldPath": "last_discovered", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -41881,7 +41245,6 @@ { "fieldPath": "cost_cc", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41894,7 +41257,6 @@ { "fieldPath": "checked_in", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -41907,7 +41269,6 @@ { "fieldPath": "attributes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41920,7 +41281,6 @@ { "fieldPath": "serial_number", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41933,7 +41293,6 @@ { "fieldPath": "vendor", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41946,7 +41305,6 @@ { "fieldPath": "ip_address", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41959,7 +41317,6 @@ { "fieldPath": "support_group", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41972,7 +41329,6 @@ { "fieldPath": "sys_updated_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41985,7 +41341,6 @@ { "fieldPath": "asset", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41998,7 +41353,6 @@ { "fieldPath": "sys_domain", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42011,7 +41365,6 @@ { "fieldPath": "supported_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42024,7 +41377,6 @@ { "fieldPath": "invoice_number", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42037,7 +41389,6 @@ { "fieldPath": "managed_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42050,7 +41401,6 @@ { "fieldPath": "fault_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -42063,7 +41413,6 @@ { "fieldPath": "due_in", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42076,7 +41425,6 @@ { "fieldPath": "cost", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42089,7 +41437,6 @@ { "fieldPath": "correlation_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42102,7 +41449,6 @@ { "fieldPath": "justification", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42115,7 +41461,6 @@ { "fieldPath": "sys_created_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -42128,7 +41473,6 @@ { "fieldPath": "assigned", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -42141,7 +41485,6 @@ { "fieldPath": "model_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42154,7 +41497,6 @@ { "fieldPath": "sys_class_name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42167,7 +41509,6 @@ { "fieldPath": "comments", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42180,7 +41521,6 @@ { "fieldPath": "sys_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42193,7 +41533,6 @@ { "fieldPath": "company", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42206,7 +41545,6 @@ { "fieldPath": "lease_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42219,7 +41557,6 @@ { "fieldPath": "monitor", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -42232,7 +41569,6 @@ { "fieldPath": "cost_center", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42245,7 +41581,6 @@ { "fieldPath": "subcategory", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42258,7 +41593,6 @@ { "fieldPath": "delivery_date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -42271,7 +41605,6 @@ { "fieldPath": "assignment_group", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42284,7 +41617,6 @@ { "fieldPath": "can_print", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -42297,7 +41629,6 @@ { "fieldPath": "short_description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42310,7 +41641,6 @@ { "fieldPath": "model_number", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42323,7 +41653,6 @@ { "fieldPath": "name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42336,7 +41665,6 @@ { "fieldPath": "start_date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -42349,7 +41677,6 @@ { "fieldPath": "discovery_source", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42362,7 +41689,6 @@ { "fieldPath": "sys_domain_path", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42375,7 +41701,6 @@ { "fieldPath": "assigned_to", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42388,7 +41713,6 @@ { "fieldPath": "category", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42401,7 +41725,6 @@ { "fieldPath": "schedule", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42414,7 +41737,6 @@ { "fieldPath": "fqdn", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42427,7 +41749,6 @@ { "fieldPath": "warranty_expiration", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.DateType": {} @@ -42440,7 +41761,6 @@ { "fieldPath": "owned_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42453,7 +41773,6 @@ { "fieldPath": "asset_tag", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42466,7 +41785,6 @@ { "fieldPath": "manufacturer", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42479,7 +41797,6 @@ { "fieldPath": "purchase_date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.DateType": {} @@ -42492,7 +41809,6 @@ { "fieldPath": "location", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42505,7 +41821,6 @@ { "fieldPath": "department", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42518,7 +41833,6 @@ { "fieldPath": "sys_updated_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -42531,7 +41845,6 @@ { "fieldPath": "checked_out", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -42544,7 +41857,6 @@ { "fieldPath": "unverified", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -42557,7 +41869,6 @@ { "fieldPath": "skip_sync", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -42570,7 +41881,6 @@ { "fieldPath": "po_number", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42583,7 +41893,6 @@ { "fieldPath": "order_date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -42596,7 +41905,6 @@ { "fieldPath": "gl_account", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42609,7 +41917,6 @@ { "fieldPath": "maintenance_schedule", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42622,7 +41929,6 @@ { "fieldPath": "install_date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -42635,7 +41941,6 @@ { "fieldPath": "dns_domain", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42648,7 +41953,6 @@ { "fieldPath": "sys_created_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42661,7 +41965,6 @@ { "fieldPath": "mac_address", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42674,7 +41977,6 @@ { "fieldPath": "change_control", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42687,7 +41989,6 @@ { "fieldPath": "install_status", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -42700,7 +42001,6 @@ { "fieldPath": "due", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -42713,7 +42013,6 @@ { "fieldPath": "sys_mod_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} diff --git a/metadata-ingestion/tests/integration/tableau/tableau_signout_timeout_mces_golden.json b/metadata-ingestion/tests/integration/tableau/tableau_signout_timeout_mces_golden.json index 45b1ebca25b8a..ea15a2ac56b58 100644 --- a/metadata-ingestion/tests/integration/tableau/tableau_signout_timeout_mces_golden.json +++ b/metadata-ingestion/tests/integration/tableau/tableau_signout_timeout_mces_golden.json @@ -1076,9 +1076,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/EmailPerformancebyCampaign/EmailPerformancebyCampaign/Campaign List", "title": "Campaign List", "description": "", @@ -1637,9 +1635,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/EmailPerformancebyCampaign/EmailPerformancebyCampaign/Summary", "title": "Summary", "description": "", @@ -2250,9 +2246,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/EmailPerformancebyCampaign/EmailPerformancebyCampaign/Mobile - Sent by Campaign", "title": "Mobile - Sent by Campaign", "description": "", @@ -2759,9 +2753,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/#/site/acryl/views/dvdrental/Sheet1", "title": "Sheet 1", "description": "", @@ -2904,9 +2896,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/#/site/acryl/views/dvdrental/Sheet2", "title": "Sheet 2", "description": "", @@ -3217,9 +3207,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/#/site/acryl/views/dvdrental/Sheet3", "title": "Sheet 3", "description": "", @@ -3414,9 +3402,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Opened Requests", "title": "Opened Requests", "description": "", @@ -3915,9 +3901,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Top 10 Items by Requests and YoY Change", "title": "Top 10 Items by Requests and YoY Change", "description": "", @@ -4384,9 +4368,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Opened Problems", "title": "Opened Problems", "description": "", @@ -4885,9 +4867,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Overdue", "title": "Overdue", "description": "", @@ -5267,9 +5247,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/High and Critical Priority Problems", "title": "High and Critical Priority Problems", "description": "", @@ -5629,9 +5607,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Total Incidents by Category and YoY Change", "title": "Total Incidents by Category and YoY Change", "description": "", @@ -6014,9 +5990,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Known Errors", "title": "Known Errors", "description": "", @@ -6454,9 +6428,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Overdue Requests", "title": "Overdue Requests", "description": "", @@ -6868,9 +6840,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/AVG Time to Solve an Incident", "title": "AVG Time to Solve an Incident", "description": "", @@ -7198,9 +7168,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Made SLA?", "title": "Made SLA?", "description": "", @@ -7560,9 +7528,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/#/site/acryl/views/ExecutiveDashboard/Tooltip-IncidentBreakdownbyPriority", "title": "Tooltip - Incident Breakdown by Priority", "description": "", @@ -7812,9 +7778,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Overdue Problems", "title": "Overdue Problems", "description": "", @@ -8252,9 +8216,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/#/site/acryl/views/ExecutiveDashboard/Tooltip-ProblemBreakdownbyPriority", "title": "Tooltip - Problem Breakdown by Priority", "description": "", @@ -8588,9 +8550,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/#/site/acryl/views/ExecutiveDashboard/Tooltip-RequestBreakdownbyPriority", "title": "Tooltip - Request Breakdown by Priority", "description": "", @@ -8950,9 +8910,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Age of Active Problems", "title": "Age of Active Problems", "description": "", @@ -9338,9 +9296,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Opened Incidents", "title": "Opened Incidents", "description": "", @@ -9778,9 +9734,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/#/site/acryl/views/Workbookpublishedds/Sheet1", "title": "published sheet ds", "description": "", @@ -10091,9 +10045,7 @@ }, { "com.linkedin.pegasus2avro.dashboard.DashboardInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "title": "dvd Rental Dashboard", "description": "", "charts": [ @@ -10193,9 +10145,7 @@ }, { "com.linkedin.pegasus2avro.dashboard.DashboardInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "title": "Story 1", "description": "", "charts": [], @@ -10293,9 +10243,7 @@ }, { "com.linkedin.pegasus2avro.dashboard.DashboardInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "title": "Executive Dashboard", "description": "", "charts": [ @@ -10774,9 +10722,7 @@ "customProperties": { "hasExtracts": "True", "extractLastRefreshTime": "2018-02-09T00:05:25Z", - "extractLastIncrementalUpdateTime": "", - "extractLastUpdateTime": "2018-02-09T00:05:25Z", - "type": "EmbeddedDatasource" + "extractLastUpdateTime": "2018-02-09T00:05:25Z" }, "name": "Marketo", "tags": [] @@ -12711,13 +12657,7 @@ }, { "com.linkedin.pegasus2avro.dataset.DatasetProperties": { - "customProperties": { - "hasExtracts": "False", - "extractLastRefreshTime": "", - "extractLastIncrementalUpdateTime": "", - "extractLastUpdateTime": "", - "type": "EmbeddedDatasource" - }, + "customProperties": {}, "name": "Customer Payment Query", "tags": [] } @@ -13047,13 +12987,7 @@ }, { "com.linkedin.pegasus2avro.dataset.DatasetProperties": { - "customProperties": { - "hasExtracts": "False", - "extractLastRefreshTime": "", - "extractLastIncrementalUpdateTime": "", - "extractLastUpdateTime": "", - "type": "EmbeddedDatasource" - }, + "customProperties": {}, "name": "actor+ (dvdrental)", "tags": [] } @@ -13957,13 +13891,7 @@ }, { "com.linkedin.pegasus2avro.dataset.DatasetProperties": { - "customProperties": { - "hasExtracts": "False", - "extractLastRefreshTime": "", - "extractLastIncrementalUpdateTime": "", - "extractLastUpdateTime": "", - "type": "EmbeddedDatasource" - }, + "customProperties": {}, "name": "Superstore Datasource", "tags": [] } @@ -14916,9 +14844,7 @@ "customProperties": { "hasExtracts": "True", "extractLastRefreshTime": "2018-01-18T19:35:39Z", - "extractLastIncrementalUpdateTime": "", - "extractLastUpdateTime": "2018-01-18T19:35:39Z", - "type": "EmbeddedDatasource" + "extractLastUpdateTime": "2018-01-18T19:35:39Z" }, "name": "Requests", "tags": [] @@ -21779,9 +21705,7 @@ "customProperties": { "hasExtracts": "True", "extractLastRefreshTime": "2018-01-18T20:21:33Z", - "extractLastIncrementalUpdateTime": "", - "extractLastUpdateTime": "2018-01-18T20:21:33Z", - "type": "EmbeddedDatasource" + "extractLastUpdateTime": "2018-01-18T20:21:33Z" }, "name": "Problems", "tags": [] @@ -25890,9 +25814,7 @@ "customProperties": { "hasExtracts": "True", "extractLastRefreshTime": "2018-01-18T20:13:08Z", - "extractLastIncrementalUpdateTime": "", - "extractLastUpdateTime": "2018-01-18T20:13:08Z", - "type": "EmbeddedDatasource" + "extractLastUpdateTime": "2018-01-18T20:13:08Z" }, "name": "Incidents", "tags": [] @@ -31232,13 +31154,7 @@ }, { "com.linkedin.pegasus2avro.dataset.DatasetProperties": { - "customProperties": { - "hasExtracts": "False", - "extractLastRefreshTime": "", - "extractLastIncrementalUpdateTime": "", - "extractLastUpdateTime": "", - "type": "EmbeddedDatasource" - }, + "customProperties": {}, "name": "test publish datasource", "tags": [] } @@ -31626,13 +31542,7 @@ }, { "com.linkedin.pegasus2avro.dataset.DatasetProperties": { - "customProperties": { - "hasExtracts": "False", - "extractLastRefreshTime": "", - "extractLastIncrementalUpdateTime": "", - "extractLastUpdateTime": "", - "type": "PublishedDatasource" - }, + "customProperties": {}, "name": "test publish datasource", "description": "description for test publish datasource", "tags": [] @@ -32092,13 +32002,7 @@ }, { "com.linkedin.pegasus2avro.dataset.DatasetProperties": { - "customProperties": { - "hasExtracts": "False", - "extractLastRefreshTime": "", - "extractLastIncrementalUpdateTime": "", - "extractLastUpdateTime": "", - "type": "PublishedDatasource" - }, + "customProperties": {}, "name": "Superstore Datasource", "description": "Description for Superstore dataset", "tags": [] @@ -33480,7 +33384,6 @@ { "fieldPath": "Test_Variant", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33493,7 +33396,6 @@ { "fieldPath": "Mailing_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33506,7 +33408,6 @@ { "fieldPath": "Campaign_Run_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33519,7 +33420,6 @@ { "fieldPath": "id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33532,7 +33432,6 @@ { "fieldPath": "Activity_Date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -33545,7 +33444,6 @@ { "fieldPath": "Choice_Number", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33558,7 +33456,6 @@ { "fieldPath": "Step_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33571,7 +33468,6 @@ { "fieldPath": "Campaign_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33584,7 +33480,6 @@ { "fieldPath": "Lead_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33597,7 +33492,6 @@ { "fieldPath": "Has_Predictive", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -33678,7 +33572,6 @@ { "fieldPath": "Campaign_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33691,7 +33584,6 @@ { "fieldPath": "Campaign_Run_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33704,7 +33596,6 @@ { "fieldPath": "Link", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -33717,7 +33608,6 @@ { "fieldPath": "Test_Variant", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33730,7 +33620,6 @@ { "fieldPath": "Platform", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -33743,7 +33632,6 @@ { "fieldPath": "id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33756,7 +33644,6 @@ { "fieldPath": "Activity_Date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -33769,7 +33656,6 @@ { "fieldPath": "Choice_Number", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33782,7 +33668,6 @@ { "fieldPath": "Mailing_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33795,7 +33680,6 @@ { "fieldPath": "Step_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33808,7 +33692,6 @@ { "fieldPath": "Lead_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33821,7 +33704,6 @@ { "fieldPath": "Link_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -33834,7 +33716,6 @@ { "fieldPath": "Is_Predictive", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -33847,7 +33728,6 @@ { "fieldPath": "Device", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -33860,7 +33740,6 @@ { "fieldPath": "Is_Mobile_Device", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -33873,7 +33752,6 @@ { "fieldPath": "User_Agent", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -33954,7 +33832,6 @@ { "fieldPath": "Platform", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -33967,7 +33844,6 @@ { "fieldPath": "Device", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -33980,7 +33856,6 @@ { "fieldPath": "Choice_Number", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33993,7 +33868,6 @@ { "fieldPath": "Lead_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34006,7 +33880,6 @@ { "fieldPath": "Activity_Date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -34019,7 +33892,6 @@ { "fieldPath": "Test_Variant", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34032,7 +33904,6 @@ { "fieldPath": "Is_Mobile_Device", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -34045,7 +33916,6 @@ { "fieldPath": "Has_Predictive", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -34058,7 +33928,6 @@ { "fieldPath": "Step_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34071,7 +33940,6 @@ { "fieldPath": "User_Agent", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34084,7 +33952,6 @@ { "fieldPath": "Mailing_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34097,7 +33964,6 @@ { "fieldPath": "Campaign_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34110,7 +33976,6 @@ { "fieldPath": "Campaign_Run_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34123,7 +33988,6 @@ { "fieldPath": "id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34204,7 +34068,6 @@ { "fieldPath": "Test_Variant", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34217,7 +34080,6 @@ { "fieldPath": "Campaign_Run_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34230,7 +34092,6 @@ { "fieldPath": "Activity_Date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -34243,7 +34104,6 @@ { "fieldPath": "Mailing_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34256,7 +34116,6 @@ { "fieldPath": "Has_Predictive", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -34269,7 +34128,6 @@ { "fieldPath": "id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34282,7 +34140,6 @@ { "fieldPath": "Campaign_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34295,7 +34152,6 @@ { "fieldPath": "Step_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34308,7 +34164,6 @@ { "fieldPath": "Lead_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34321,7 +34176,6 @@ { "fieldPath": "Choice_Number", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34402,7 +34256,6 @@ { "fieldPath": "programName", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34415,7 +34268,6 @@ { "fieldPath": "name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34428,7 +34280,6 @@ { "fieldPath": "programId", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34441,7 +34292,6 @@ { "fieldPath": "description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34454,7 +34304,6 @@ { "fieldPath": "createdAt", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -34467,7 +34316,6 @@ { "fieldPath": "id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34480,7 +34328,6 @@ { "fieldPath": "workspaceName", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34493,7 +34340,6 @@ { "fieldPath": "updatedAt", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -34506,7 +34352,6 @@ { "fieldPath": "active", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -34587,7 +34432,6 @@ { "fieldPath": "postal_code", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34600,7 +34444,6 @@ { "fieldPath": "last_update", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -34613,7 +34456,6 @@ { "fieldPath": "phone", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34626,7 +34468,6 @@ { "fieldPath": "address2", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34639,7 +34480,6 @@ { "fieldPath": "address", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34652,7 +34492,6 @@ { "fieldPath": "city_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34665,7 +34504,6 @@ { "fieldPath": "district", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34678,7 +34516,6 @@ { "fieldPath": "address_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34759,7 +34596,6 @@ { "fieldPath": "last_update", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -34772,7 +34608,6 @@ { "fieldPath": "last_name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34785,7 +34620,6 @@ { "fieldPath": "first_name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34798,7 +34632,6 @@ { "fieldPath": "actor_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34879,7 +34712,6 @@ { "fieldPath": "Person", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34892,7 +34724,6 @@ { "fieldPath": "Region", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34970,7 +34801,6 @@ { "fieldPath": "Returned", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34983,7 +34813,6 @@ { "fieldPath": "Order ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35061,7 +34890,6 @@ { "fieldPath": "Product ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35074,7 +34902,6 @@ { "fieldPath": "Category", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35087,7 +34914,6 @@ { "fieldPath": "Postal Code", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -35100,7 +34926,6 @@ { "fieldPath": "City", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35113,7 +34938,6 @@ { "fieldPath": "Quantity", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -35126,7 +34950,6 @@ { "fieldPath": "State", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35139,7 +34962,6 @@ { "fieldPath": "Order Date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.DateType": {} @@ -35152,7 +34974,6 @@ { "fieldPath": "Customer Name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35165,7 +34986,6 @@ { "fieldPath": "Country/Region", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35178,7 +34998,6 @@ { "fieldPath": "Sales", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -35191,7 +35010,6 @@ { "fieldPath": "Segment", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35204,7 +35022,6 @@ { "fieldPath": "Sub-Category", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35217,7 +35034,6 @@ { "fieldPath": "Profit", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -35230,7 +35046,6 @@ { "fieldPath": "Product Name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35243,7 +35058,6 @@ { "fieldPath": "Customer ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35256,7 +35070,6 @@ { "fieldPath": "Order ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35269,7 +35082,6 @@ { "fieldPath": "Row ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -35282,7 +35094,6 @@ { "fieldPath": "Discount", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -35295,7 +35106,6 @@ { "fieldPath": "Ship Date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.DateType": {} @@ -35308,7 +35118,6 @@ { "fieldPath": "Ship Mode", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35321,7 +35130,6 @@ { "fieldPath": "Region", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35401,7 +35209,6 @@ { "fieldPath": "contact_type", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35414,7 +35221,6 @@ { "fieldPath": "sys_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35427,7 +35233,6 @@ { "fieldPath": "user_input", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35440,7 +35245,6 @@ { "fieldPath": "opened_at", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -35453,7 +35257,6 @@ { "fieldPath": "expected_start", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -35466,7 +35269,6 @@ { "fieldPath": "delivery_plan", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35479,7 +35281,6 @@ { "fieldPath": "opened_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35492,7 +35293,6 @@ { "fieldPath": "delivery_task", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35505,7 +35305,6 @@ { "fieldPath": "approval_set", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -35518,7 +35317,6 @@ { "fieldPath": "urgency", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -35531,7 +35329,6 @@ { "fieldPath": "comments", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35544,7 +35341,6 @@ { "fieldPath": "active", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -35557,7 +35353,6 @@ { "fieldPath": "priority", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -35570,7 +35365,6 @@ { "fieldPath": "knowledge", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -35583,7 +35377,6 @@ { "fieldPath": "closed_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35596,7 +35389,6 @@ { "fieldPath": "activity_due", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -35609,7 +35401,6 @@ { "fieldPath": "assignment_group", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35622,7 +35413,6 @@ { "fieldPath": "correlation_display", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35635,7 +35425,6 @@ { "fieldPath": "state", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -35648,7 +35437,6 @@ { "fieldPath": "work_end", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -35661,7 +35449,6 @@ { "fieldPath": "description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35674,7 +35461,6 @@ { "fieldPath": "business_service", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35687,7 +35473,6 @@ { "fieldPath": "approval_history", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35700,7 +35485,6 @@ { "fieldPath": "upon_reject", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35713,7 +35497,6 @@ { "fieldPath": "sys_created_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -35726,7 +35509,6 @@ { "fieldPath": "parent", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35739,7 +35521,6 @@ { "fieldPath": "order", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -35752,7 +35533,6 @@ { "fieldPath": "work_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35765,7 +35545,6 @@ { "fieldPath": "work_notes_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35778,7 +35557,6 @@ { "fieldPath": "sys_created_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35791,7 +35569,6 @@ { "fieldPath": "sys_updated_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35804,7 +35581,6 @@ { "fieldPath": "work_start", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -35817,7 +35593,6 @@ { "fieldPath": "group_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35830,7 +35605,6 @@ { "fieldPath": "sys_mod_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -35843,7 +35617,6 @@ { "fieldPath": "location", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35856,7 +35629,6 @@ { "fieldPath": "correlation_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35869,7 +35641,6 @@ { "fieldPath": "sys_updated_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -35882,7 +35653,6 @@ { "fieldPath": "sla_due", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -35895,7 +35665,6 @@ { "fieldPath": "number", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35908,7 +35677,6 @@ { "fieldPath": "business_duration", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -35921,7 +35689,6 @@ { "fieldPath": "follow_up", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -35934,7 +35701,6 @@ { "fieldPath": "additional_assignee_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35947,7 +35713,6 @@ { "fieldPath": "escalation", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -35960,7 +35725,6 @@ { "fieldPath": "due_date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -35973,7 +35737,6 @@ { "fieldPath": "approval", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35986,7 +35749,6 @@ { "fieldPath": "made_sla", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -35999,7 +35761,6 @@ { "fieldPath": "assigned_to", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36012,7 +35773,6 @@ { "fieldPath": "calendar_duration", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36025,7 +35785,6 @@ { "fieldPath": "closed_at", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36038,7 +35797,6 @@ { "fieldPath": "sys_domain", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36051,7 +35809,6 @@ { "fieldPath": "cmdb_ci", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36064,7 +35821,6 @@ { "fieldPath": "comments_and_work_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36077,7 +35833,6 @@ { "fieldPath": "impact", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -36090,7 +35845,6 @@ { "fieldPath": "close_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36103,7 +35857,6 @@ { "fieldPath": "reassignment_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -36116,7 +35869,6 @@ { "fieldPath": "company", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36129,7 +35881,6 @@ { "fieldPath": "sys_domain_path", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36142,7 +35893,6 @@ { "fieldPath": "short_description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36155,7 +35905,6 @@ { "fieldPath": "upon_approval", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36168,7 +35917,6 @@ { "fieldPath": "watch_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36181,7 +35929,6 @@ { "fieldPath": "time_worked", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36194,7 +35941,6 @@ { "fieldPath": "sys_class_name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36275,7 +36021,6 @@ { "fieldPath": "work_notes_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36288,7 +36033,6 @@ { "fieldPath": "closed_at", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36301,7 +36045,6 @@ { "fieldPath": "user_input", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36314,7 +36057,6 @@ { "fieldPath": "requested_for", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36327,7 +36069,6 @@ { "fieldPath": "opened_at", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36340,7 +36081,6 @@ { "fieldPath": "price", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36353,7 +36093,6 @@ { "fieldPath": "assigned_to", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36366,7 +36105,6 @@ { "fieldPath": "number", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36379,7 +36117,6 @@ { "fieldPath": "delivery_plan", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36392,7 +36129,6 @@ { "fieldPath": "delivery_address", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36405,7 +36141,6 @@ { "fieldPath": "business_duration", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36418,7 +36153,6 @@ { "fieldPath": "urgency", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -36431,7 +36165,6 @@ { "fieldPath": "work_end", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36444,7 +36177,6 @@ { "fieldPath": "due_date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36457,7 +36189,6 @@ { "fieldPath": "parent", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36470,7 +36201,6 @@ { "fieldPath": "made_sla", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -36483,7 +36213,6 @@ { "fieldPath": "assignment_group", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36496,7 +36225,6 @@ { "fieldPath": "sys_class_name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36509,7 +36237,6 @@ { "fieldPath": "additional_assignee_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36522,7 +36249,6 @@ { "fieldPath": "work_start", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36535,7 +36261,6 @@ { "fieldPath": "sys_domain_path", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36548,7 +36273,6 @@ { "fieldPath": "time_worked", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36561,7 +36285,6 @@ { "fieldPath": "comments_and_work_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36574,7 +36297,6 @@ { "fieldPath": "group_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36587,7 +36309,6 @@ { "fieldPath": "business_service", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36600,7 +36321,6 @@ { "fieldPath": "correlation_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36613,7 +36333,6 @@ { "fieldPath": "cmdb_ci", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36626,7 +36345,6 @@ { "fieldPath": "requested_date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.DateType": {} @@ -36639,7 +36357,6 @@ { "fieldPath": "follow_up", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36652,7 +36369,6 @@ { "fieldPath": "sys_updated_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36665,7 +36381,6 @@ { "fieldPath": "state", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -36678,7 +36393,6 @@ { "fieldPath": "comments", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36691,7 +36405,6 @@ { "fieldPath": "approval_set", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36704,7 +36417,6 @@ { "fieldPath": "close_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36717,7 +36429,6 @@ { "fieldPath": "upon_approval", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36730,7 +36441,6 @@ { "fieldPath": "company", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36743,7 +36453,6 @@ { "fieldPath": "activity_due", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36756,7 +36465,6 @@ { "fieldPath": "contact_type", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36769,7 +36477,6 @@ { "fieldPath": "approval", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36782,7 +36489,6 @@ { "fieldPath": "calendar_duration", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36795,7 +36501,6 @@ { "fieldPath": "reassignment_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -36808,7 +36513,6 @@ { "fieldPath": "delivery_task", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36821,7 +36525,6 @@ { "fieldPath": "approval_history", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36834,7 +36537,6 @@ { "fieldPath": "sys_created_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36847,7 +36549,6 @@ { "fieldPath": "request_state", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36860,7 +36561,6 @@ { "fieldPath": "watch_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36873,7 +36573,6 @@ { "fieldPath": "upon_reject", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36886,7 +36585,6 @@ { "fieldPath": "expected_start", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36899,7 +36597,6 @@ { "fieldPath": "active", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -36912,7 +36609,6 @@ { "fieldPath": "opened_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36925,7 +36621,6 @@ { "fieldPath": "work_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36938,7 +36633,6 @@ { "fieldPath": "impact", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -36951,7 +36645,6 @@ { "fieldPath": "description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36964,7 +36657,6 @@ { "fieldPath": "sla_due", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36977,7 +36669,6 @@ { "fieldPath": "correlation_display", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36990,7 +36681,6 @@ { "fieldPath": "priority", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -37003,7 +36693,6 @@ { "fieldPath": "stage", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37016,7 +36705,6 @@ { "fieldPath": "sys_created_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37029,7 +36717,6 @@ { "fieldPath": "sys_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37042,7 +36729,6 @@ { "fieldPath": "escalation", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -37055,7 +36741,6 @@ { "fieldPath": "closed_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37068,7 +36753,6 @@ { "fieldPath": "short_description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37081,7 +36765,6 @@ { "fieldPath": "location", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37094,7 +36777,6 @@ { "fieldPath": "special_instructions", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37107,7 +36789,6 @@ { "fieldPath": "order", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -37120,7 +36801,6 @@ { "fieldPath": "sys_updated_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37133,7 +36813,6 @@ { "fieldPath": "sys_mod_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -37146,7 +36825,6 @@ { "fieldPath": "knowledge", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -37159,7 +36837,6 @@ { "fieldPath": "sys_domain", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37172,7 +36849,6 @@ { "fieldPath": "calendar_stc", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -37253,7 +36929,6 @@ { "fieldPath": "watch_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37266,7 +36941,6 @@ { "fieldPath": "due_date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -37279,7 +36953,6 @@ { "fieldPath": "made_sla", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -37292,7 +36965,6 @@ { "fieldPath": "parent", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37305,7 +36977,6 @@ { "fieldPath": "assigned_to", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37318,7 +36989,6 @@ { "fieldPath": "sys_mod_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -37331,7 +37001,6 @@ { "fieldPath": "cmdb_ci", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37344,7 +37013,6 @@ { "fieldPath": "sys_domain", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37357,7 +37025,6 @@ { "fieldPath": "configuration_item", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37370,7 +37037,6 @@ { "fieldPath": "closed_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37383,7 +37049,6 @@ { "fieldPath": "active", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -37396,7 +37061,6 @@ { "fieldPath": "expected_start", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -37409,7 +37073,6 @@ { "fieldPath": "recurring_price", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37422,7 +37085,6 @@ { "fieldPath": "work_end", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -37435,7 +37097,6 @@ { "fieldPath": "short_description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37448,7 +37109,6 @@ { "fieldPath": "approval", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37461,7 +37121,6 @@ { "fieldPath": "opened_at", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -37474,7 +37133,6 @@ { "fieldPath": "order", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -37487,7 +37145,6 @@ { "fieldPath": "assignment_group", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37500,7 +37157,6 @@ { "fieldPath": "sc_catalog", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37513,7 +37169,6 @@ { "fieldPath": "knowledge", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -37526,7 +37181,6 @@ { "fieldPath": "stage", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37539,7 +37193,6 @@ { "fieldPath": "correlation_display", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37552,7 +37205,6 @@ { "fieldPath": "reassignment_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -37565,7 +37217,6 @@ { "fieldPath": "delivery_plan", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37578,7 +37229,6 @@ { "fieldPath": "sys_class_name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37591,7 +37241,6 @@ { "fieldPath": "user_input", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37604,7 +37253,6 @@ { "fieldPath": "description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37617,7 +37265,6 @@ { "fieldPath": "activity_due", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -37630,7 +37277,6 @@ { "fieldPath": "price", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37643,7 +37289,6 @@ { "fieldPath": "work_notes_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37656,7 +37301,6 @@ { "fieldPath": "estimated_delivery", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -37669,7 +37313,6 @@ { "fieldPath": "additional_assignee_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37682,7 +37325,6 @@ { "fieldPath": "context", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37695,7 +37337,6 @@ { "fieldPath": "business_duration", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -37708,7 +37349,6 @@ { "fieldPath": "approval_set", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -37721,7 +37361,6 @@ { "fieldPath": "priority", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -37734,7 +37373,6 @@ { "fieldPath": "sys_updated_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -37747,7 +37385,6 @@ { "fieldPath": "sys_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37760,7 +37397,6 @@ { "fieldPath": "state", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -37773,7 +37409,6 @@ { "fieldPath": "business_service", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37786,7 +37421,6 @@ { "fieldPath": "billable", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -37799,7 +37433,6 @@ { "fieldPath": "approval_history", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37812,7 +37445,6 @@ { "fieldPath": "recurring_frequency", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37825,7 +37457,6 @@ { "fieldPath": "contact_type", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37838,7 +37469,6 @@ { "fieldPath": "cat_item", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37851,7 +37481,6 @@ { "fieldPath": "sys_updated_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37864,7 +37493,6 @@ { "fieldPath": "sys_domain_path", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37877,7 +37505,6 @@ { "fieldPath": "comments", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37890,7 +37517,6 @@ { "fieldPath": "impact", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -37903,7 +37529,6 @@ { "fieldPath": "order_guide", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37916,7 +37541,6 @@ { "fieldPath": "sla_due", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -37929,7 +37553,6 @@ { "fieldPath": "sys_created_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37942,7 +37565,6 @@ { "fieldPath": "comments_and_work_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37955,7 +37577,6 @@ { "fieldPath": "opened_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37968,7 +37589,6 @@ { "fieldPath": "backordered", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -37981,7 +37601,6 @@ { "fieldPath": "correlation_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37994,7 +37613,6 @@ { "fieldPath": "group_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38007,7 +37625,6 @@ { "fieldPath": "delivery_task", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38020,7 +37637,6 @@ { "fieldPath": "number", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38033,7 +37649,6 @@ { "fieldPath": "sys_created_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -38046,7 +37661,6 @@ { "fieldPath": "company", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38059,7 +37673,6 @@ { "fieldPath": "work_start", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -38072,7 +37685,6 @@ { "fieldPath": "request", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38085,7 +37697,6 @@ { "fieldPath": "close_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38098,7 +37709,6 @@ { "fieldPath": "work_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38111,7 +37721,6 @@ { "fieldPath": "calendar_duration", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -38124,7 +37733,6 @@ { "fieldPath": "quantity", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -38137,7 +37745,6 @@ { "fieldPath": "follow_up", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -38150,7 +37757,6 @@ { "fieldPath": "location", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38163,7 +37769,6 @@ { "fieldPath": "upon_reject", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38176,7 +37781,6 @@ { "fieldPath": "closed_at", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -38189,7 +37793,6 @@ { "fieldPath": "time_worked", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38202,7 +37805,6 @@ { "fieldPath": "escalation", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -38215,7 +37817,6 @@ { "fieldPath": "urgency", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -38228,7 +37829,6 @@ { "fieldPath": "upon_approval", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38309,7 +37909,6 @@ { "fieldPath": "sc_catalogs", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38322,7 +37921,6 @@ { "fieldPath": "sys_updated_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38335,7 +37933,6 @@ { "fieldPath": "type", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38348,7 +37945,6 @@ { "fieldPath": "mobile_picture_type", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38361,7 +37957,6 @@ { "fieldPath": "workflow", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38374,7 +37969,6 @@ { "fieldPath": "sys_customer_update", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -38387,7 +37981,6 @@ { "fieldPath": "sys_class_name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38400,7 +37993,6 @@ { "fieldPath": "visible_standalone", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -38413,7 +38005,6 @@ { "fieldPath": "no_quantity", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -38426,7 +38017,6 @@ { "fieldPath": "order", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -38439,7 +38029,6 @@ { "fieldPath": "sys_updated_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -38452,7 +38041,6 @@ { "fieldPath": "sys_scope", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38465,7 +38053,6 @@ { "fieldPath": "template", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38478,7 +38065,6 @@ { "fieldPath": "no_proceed_checkout", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -38491,7 +38077,6 @@ { "fieldPath": "billable", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -38504,7 +38089,6 @@ { "fieldPath": "name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38517,7 +38101,6 @@ { "fieldPath": "delivery_plan", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38530,7 +38113,6 @@ { "fieldPath": "description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38543,7 +38125,6 @@ { "fieldPath": "meta", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38556,7 +38137,6 @@ { "fieldPath": "ordered_item_link", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38569,7 +38149,6 @@ { "fieldPath": "sys_mod_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -38582,7 +38161,6 @@ { "fieldPath": "sc_ic_version", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -38595,7 +38173,6 @@ { "fieldPath": "image", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38608,7 +38185,6 @@ { "fieldPath": "sys_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38621,7 +38197,6 @@ { "fieldPath": "short_description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38634,7 +38209,6 @@ { "fieldPath": "sys_policy", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38647,7 +38221,6 @@ { "fieldPath": "roles", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38660,7 +38233,6 @@ { "fieldPath": "picture", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38673,7 +38245,6 @@ { "fieldPath": "list_price", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38686,7 +38257,6 @@ { "fieldPath": "no_order_now", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -38699,7 +38269,6 @@ { "fieldPath": "vendor", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38712,7 +38281,6 @@ { "fieldPath": "sc_ic_item_staging", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38725,7 +38293,6 @@ { "fieldPath": "no_order", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -38738,7 +38305,6 @@ { "fieldPath": "entitlement_script", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38751,7 +38317,6 @@ { "fieldPath": "active", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -38764,7 +38329,6 @@ { "fieldPath": "icon", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38777,7 +38341,6 @@ { "fieldPath": "ignore_price", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -38790,7 +38353,6 @@ { "fieldPath": "start_closed", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -38803,7 +38365,6 @@ { "fieldPath": "sys_package", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38816,7 +38377,6 @@ { "fieldPath": "group", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38829,7 +38389,6 @@ { "fieldPath": "sys_replace_on_upgrade", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -38842,7 +38401,6 @@ { "fieldPath": "cost", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -38855,7 +38413,6 @@ { "fieldPath": "use_sc_layout", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -38868,7 +38425,6 @@ { "fieldPath": "location", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38881,7 +38437,6 @@ { "fieldPath": "availability", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38894,7 +38449,6 @@ { "fieldPath": "model", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38907,7 +38461,6 @@ { "fieldPath": "custom_cart", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38920,7 +38473,6 @@ { "fieldPath": "mobile_picture", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38933,7 +38485,6 @@ { "fieldPath": "category", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38946,7 +38497,6 @@ { "fieldPath": "no_cart", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -38959,7 +38509,6 @@ { "fieldPath": "mobile_hide_price", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -38972,7 +38521,6 @@ { "fieldPath": "sys_created_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38985,7 +38533,6 @@ { "fieldPath": "price", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38998,7 +38545,6 @@ { "fieldPath": "delivery_time", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -39011,7 +38557,6 @@ { "fieldPath": "no_search", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -39024,7 +38569,6 @@ { "fieldPath": "sys_created_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -39037,7 +38581,6 @@ { "fieldPath": "recurring_frequency", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39050,7 +38593,6 @@ { "fieldPath": "recurring_price", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39063,7 +38605,6 @@ { "fieldPath": "delivery_plan_script", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39076,7 +38617,6 @@ { "fieldPath": "visible_bundle", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -39089,7 +38629,6 @@ { "fieldPath": "sys_update_name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39102,7 +38641,6 @@ { "fieldPath": "sys_name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39115,7 +38653,6 @@ { "fieldPath": "visible_guide", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -39128,7 +38665,6 @@ { "fieldPath": "preview", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39141,7 +38677,6 @@ { "fieldPath": "omit_price", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -39222,7 +38757,6 @@ { "fieldPath": "u_u", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39235,7 +38769,6 @@ { "fieldPath": "sys_updated_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39248,7 +38781,6 @@ { "fieldPath": "source", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39261,7 +38793,6 @@ { "fieldPath": "exclude_manager", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -39274,7 +38805,6 @@ { "fieldPath": "description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39287,7 +38817,6 @@ { "fieldPath": "cost_center", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39300,7 +38829,6 @@ { "fieldPath": "sys_created_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39313,7 +38841,6 @@ { "fieldPath": "parent", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39326,7 +38853,6 @@ { "fieldPath": "sys_mod_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -39339,7 +38865,6 @@ { "fieldPath": "sys_updated_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -39352,7 +38877,6 @@ { "fieldPath": "u_lucha", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39365,7 +38889,6 @@ { "fieldPath": "sys_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39378,7 +38901,6 @@ { "fieldPath": "u_lu2", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39391,7 +38913,6 @@ { "fieldPath": "type", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39404,7 +38925,6 @@ { "fieldPath": "roles", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39417,7 +38937,6 @@ { "fieldPath": "sys_created_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -39430,7 +38949,6 @@ { "fieldPath": "default_assignee", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39443,7 +38961,6 @@ { "fieldPath": "email", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39456,7 +38973,6 @@ { "fieldPath": "manager", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39469,7 +38985,6 @@ { "fieldPath": "name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39482,7 +38997,6 @@ { "fieldPath": "active", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -39495,7 +39009,6 @@ { "fieldPath": "include_members", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -39576,7 +39089,6 @@ { "fieldPath": "opened_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39589,7 +39101,6 @@ { "fieldPath": "sys_class_name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39602,7 +39113,6 @@ { "fieldPath": "sys_created_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39615,7 +39125,6 @@ { "fieldPath": "sys_updated_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -39628,7 +39137,6 @@ { "fieldPath": "closed_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39641,7 +39149,6 @@ { "fieldPath": "close_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39654,7 +39161,6 @@ { "fieldPath": "made_sla", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -39667,7 +39173,6 @@ { "fieldPath": "state", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -39680,7 +39185,6 @@ { "fieldPath": "related_incidents", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -39693,7 +39197,6 @@ { "fieldPath": "business_duration", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -39706,7 +39209,6 @@ { "fieldPath": "sys_domain", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39719,7 +39221,6 @@ { "fieldPath": "delivery_task", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39732,7 +39233,6 @@ { "fieldPath": "priority", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -39745,7 +39245,6 @@ { "fieldPath": "sys_created_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -39758,7 +39257,6 @@ { "fieldPath": "sys_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39771,7 +39269,6 @@ { "fieldPath": "escalation", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -39784,7 +39281,6 @@ { "fieldPath": "business_service", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39797,7 +39293,6 @@ { "fieldPath": "comments_and_work_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39810,7 +39305,6 @@ { "fieldPath": "rfc", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39823,7 +39317,6 @@ { "fieldPath": "sys_domain_path", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39836,7 +39329,6 @@ { "fieldPath": "cmdb_ci", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39849,7 +39341,6 @@ { "fieldPath": "problem_state", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -39862,7 +39353,6 @@ { "fieldPath": "delivery_plan", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39875,7 +39365,6 @@ { "fieldPath": "user_input", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39888,7 +39377,6 @@ { "fieldPath": "active", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -39901,7 +39389,6 @@ { "fieldPath": "location", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39914,7 +39401,6 @@ { "fieldPath": "expected_start", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -39927,7 +39413,6 @@ { "fieldPath": "calendar_duration", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -39940,7 +39425,6 @@ { "fieldPath": "number", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39953,7 +39437,6 @@ { "fieldPath": "sla_due", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -39966,7 +39449,6 @@ { "fieldPath": "work_notes_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39979,7 +39461,6 @@ { "fieldPath": "knowledge", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -39992,7 +39473,6 @@ { "fieldPath": "sys_updated_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40005,7 +39485,6 @@ { "fieldPath": "time_worked", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40018,7 +39497,6 @@ { "fieldPath": "order", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -40031,7 +39509,6 @@ { "fieldPath": "assignment_group", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40044,7 +39521,6 @@ { "fieldPath": "upon_approval", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40057,7 +39533,6 @@ { "fieldPath": "company", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40070,7 +39545,6 @@ { "fieldPath": "opened_at", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -40083,7 +39557,6 @@ { "fieldPath": "group_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40096,7 +39569,6 @@ { "fieldPath": "work_around", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40109,7 +39581,6 @@ { "fieldPath": "description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40122,7 +39593,6 @@ { "fieldPath": "work_end", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -40135,7 +39605,6 @@ { "fieldPath": "correlation_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40148,7 +39617,6 @@ { "fieldPath": "approval_set", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -40161,7 +39629,6 @@ { "fieldPath": "urgency", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -40174,7 +39641,6 @@ { "fieldPath": "impact", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -40187,7 +39653,6 @@ { "fieldPath": "short_description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40200,7 +39665,6 @@ { "fieldPath": "approval", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40213,7 +39677,6 @@ { "fieldPath": "closed_at", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -40226,7 +39689,6 @@ { "fieldPath": "known_error", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -40239,7 +39701,6 @@ { "fieldPath": "due_date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -40252,7 +39713,6 @@ { "fieldPath": "work_start", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -40265,7 +39725,6 @@ { "fieldPath": "activity_due", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -40278,7 +39737,6 @@ { "fieldPath": "sys_mod_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -40291,7 +39749,6 @@ { "fieldPath": "correlation_display", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40304,7 +39761,6 @@ { "fieldPath": "contact_type", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40317,7 +39773,6 @@ { "fieldPath": "additional_assignee_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40330,7 +39785,6 @@ { "fieldPath": "approval_history", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40343,7 +39797,6 @@ { "fieldPath": "reassignment_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -40356,7 +39809,6 @@ { "fieldPath": "follow_up", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -40369,7 +39821,6 @@ { "fieldPath": "comments", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40382,7 +39833,6 @@ { "fieldPath": "work_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40395,7 +39845,6 @@ { "fieldPath": "parent", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40408,7 +39857,6 @@ { "fieldPath": "assigned_to", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40421,7 +39869,6 @@ { "fieldPath": "watch_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40434,7 +39881,6 @@ { "fieldPath": "upon_reject", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40515,7 +39961,6 @@ { "fieldPath": "sys_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40528,7 +39973,6 @@ { "fieldPath": "correlation_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40541,7 +39985,6 @@ { "fieldPath": "urgency", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -40554,7 +39997,6 @@ { "fieldPath": "severity", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -40567,7 +40009,6 @@ { "fieldPath": "business_service", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40580,7 +40021,6 @@ { "fieldPath": "location", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40593,7 +40033,6 @@ { "fieldPath": "approval_set", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -40606,7 +40045,6 @@ { "fieldPath": "closed_at", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -40619,7 +40057,6 @@ { "fieldPath": "parent_incident", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40632,7 +40069,6 @@ { "fieldPath": "subcategory", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40645,7 +40081,6 @@ { "fieldPath": "company", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40658,7 +40093,6 @@ { "fieldPath": "caller_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40671,7 +40105,6 @@ { "fieldPath": "resolved_at", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -40684,7 +40117,6 @@ { "fieldPath": "group_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40697,7 +40129,6 @@ { "fieldPath": "correlation_display", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40710,7 +40141,6 @@ { "fieldPath": "resolved_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40723,7 +40153,6 @@ { "fieldPath": "sys_created_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -40736,7 +40165,6 @@ { "fieldPath": "business_stc", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -40749,7 +40177,6 @@ { "fieldPath": "sys_domain_path", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40762,7 +40189,6 @@ { "fieldPath": "parent", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40775,7 +40201,6 @@ { "fieldPath": "category", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40788,7 +40213,6 @@ { "fieldPath": "user_input", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40801,7 +40225,6 @@ { "fieldPath": "number", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40814,7 +40237,6 @@ { "fieldPath": "escalation", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -40827,7 +40249,6 @@ { "fieldPath": "state", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -40840,7 +40261,6 @@ { "fieldPath": "approval_history", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40853,7 +40273,6 @@ { "fieldPath": "impact", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -40866,7 +40285,6 @@ { "fieldPath": "expected_start", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -40879,7 +40297,6 @@ { "fieldPath": "additional_assignee_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40892,7 +40309,6 @@ { "fieldPath": "child_incidents", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -40905,7 +40321,6 @@ { "fieldPath": "cmdb_ci", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40918,7 +40333,6 @@ { "fieldPath": "incident_state", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -40931,7 +40345,6 @@ { "fieldPath": "notify", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -40944,7 +40357,6 @@ { "fieldPath": "work_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40957,7 +40369,6 @@ { "fieldPath": "reassignment_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -40970,7 +40381,6 @@ { "fieldPath": "contact_type", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40983,7 +40393,6 @@ { "fieldPath": "opened_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40996,7 +40405,6 @@ { "fieldPath": "sys_class_name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41009,7 +40417,6 @@ { "fieldPath": "problem_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41022,7 +40429,6 @@ { "fieldPath": "due_date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -41035,7 +40441,6 @@ { "fieldPath": "approval", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41048,7 +40453,6 @@ { "fieldPath": "description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41061,7 +40465,6 @@ { "fieldPath": "order", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -41074,7 +40477,6 @@ { "fieldPath": "opened_at", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -41087,7 +40489,6 @@ { "fieldPath": "work_notes_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41100,7 +40501,6 @@ { "fieldPath": "priority", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -41113,7 +40513,6 @@ { "fieldPath": "time_worked", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41126,7 +40525,6 @@ { "fieldPath": "sys_domain", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41139,7 +40537,6 @@ { "fieldPath": "caused_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41152,7 +40549,6 @@ { "fieldPath": "sys_updated_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41165,7 +40561,6 @@ { "fieldPath": "upon_reject", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41178,7 +40573,6 @@ { "fieldPath": "delivery_task", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41191,7 +40585,6 @@ { "fieldPath": "knowledge", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -41204,7 +40597,6 @@ { "fieldPath": "sys_updated_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -41217,7 +40609,6 @@ { "fieldPath": "calendar_duration", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -41230,7 +40621,6 @@ { "fieldPath": "closed_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41243,7 +40633,6 @@ { "fieldPath": "comments", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41256,7 +40645,6 @@ { "fieldPath": "short_description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41269,7 +40657,6 @@ { "fieldPath": "assigned_to", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41282,7 +40669,6 @@ { "fieldPath": "assignment_group", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41295,7 +40681,6 @@ { "fieldPath": "work_end", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -41308,7 +40693,6 @@ { "fieldPath": "reopen_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -41321,7 +40705,6 @@ { "fieldPath": "work_start", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -41334,7 +40717,6 @@ { "fieldPath": "made_sla", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -41347,7 +40729,6 @@ { "fieldPath": "sys_mod_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -41360,7 +40741,6 @@ { "fieldPath": "calendar_stc", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -41373,7 +40753,6 @@ { "fieldPath": "rfc", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41386,7 +40765,6 @@ { "fieldPath": "delivery_plan", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41399,7 +40777,6 @@ { "fieldPath": "close_code", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41412,7 +40789,6 @@ { "fieldPath": "close_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41425,7 +40801,6 @@ { "fieldPath": "activity_due", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -41438,7 +40813,6 @@ { "fieldPath": "sys_created_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41451,7 +40825,6 @@ { "fieldPath": "active", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -41464,7 +40837,6 @@ { "fieldPath": "business_duration", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -41477,7 +40849,6 @@ { "fieldPath": "follow_up", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -41490,7 +40861,6 @@ { "fieldPath": "comments_and_work_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41503,7 +40873,6 @@ { "fieldPath": "upon_approval", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41516,7 +40885,6 @@ { "fieldPath": "watch_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41529,7 +40897,6 @@ { "fieldPath": "sla_due", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -41610,7 +40977,6 @@ { "fieldPath": "first_discovered", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -41623,7 +40989,6 @@ { "fieldPath": "operational_status", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -41636,7 +41001,6 @@ { "fieldPath": "last_discovered", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -41649,7 +41013,6 @@ { "fieldPath": "cost_cc", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41662,7 +41025,6 @@ { "fieldPath": "checked_in", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -41675,7 +41037,6 @@ { "fieldPath": "attributes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41688,7 +41049,6 @@ { "fieldPath": "serial_number", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41701,7 +41061,6 @@ { "fieldPath": "vendor", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41714,7 +41073,6 @@ { "fieldPath": "ip_address", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41727,7 +41085,6 @@ { "fieldPath": "support_group", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41740,7 +41097,6 @@ { "fieldPath": "sys_updated_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41753,7 +41109,6 @@ { "fieldPath": "asset", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41766,7 +41121,6 @@ { "fieldPath": "sys_domain", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41779,7 +41133,6 @@ { "fieldPath": "supported_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41792,7 +41145,6 @@ { "fieldPath": "invoice_number", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41805,7 +41157,6 @@ { "fieldPath": "managed_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41818,7 +41169,6 @@ { "fieldPath": "fault_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -41831,7 +41181,6 @@ { "fieldPath": "due_in", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41844,7 +41193,6 @@ { "fieldPath": "cost", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41857,7 +41205,6 @@ { "fieldPath": "correlation_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41870,7 +41217,6 @@ { "fieldPath": "justification", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41883,7 +41229,6 @@ { "fieldPath": "sys_created_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -41896,7 +41241,6 @@ { "fieldPath": "assigned", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -41909,7 +41253,6 @@ { "fieldPath": "model_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41922,7 +41265,6 @@ { "fieldPath": "sys_class_name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41935,7 +41277,6 @@ { "fieldPath": "comments", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41948,7 +41289,6 @@ { "fieldPath": "sys_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41961,7 +41301,6 @@ { "fieldPath": "company", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41974,7 +41313,6 @@ { "fieldPath": "lease_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41987,7 +41325,6 @@ { "fieldPath": "monitor", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -42000,7 +41337,6 @@ { "fieldPath": "cost_center", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42013,7 +41349,6 @@ { "fieldPath": "subcategory", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42026,7 +41361,6 @@ { "fieldPath": "delivery_date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -42039,7 +41373,6 @@ { "fieldPath": "assignment_group", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42052,7 +41385,6 @@ { "fieldPath": "can_print", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -42065,7 +41397,6 @@ { "fieldPath": "short_description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42078,7 +41409,6 @@ { "fieldPath": "model_number", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42091,7 +41421,6 @@ { "fieldPath": "name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42104,7 +41433,6 @@ { "fieldPath": "start_date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -42117,7 +41445,6 @@ { "fieldPath": "discovery_source", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42130,7 +41457,6 @@ { "fieldPath": "sys_domain_path", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42143,7 +41469,6 @@ { "fieldPath": "assigned_to", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42156,7 +41481,6 @@ { "fieldPath": "category", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42169,7 +41493,6 @@ { "fieldPath": "schedule", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42182,7 +41505,6 @@ { "fieldPath": "fqdn", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42195,7 +41517,6 @@ { "fieldPath": "warranty_expiration", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.DateType": {} @@ -42208,7 +41529,6 @@ { "fieldPath": "owned_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42221,7 +41541,6 @@ { "fieldPath": "asset_tag", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42234,7 +41553,6 @@ { "fieldPath": "manufacturer", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42247,7 +41565,6 @@ { "fieldPath": "purchase_date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.DateType": {} @@ -42260,7 +41577,6 @@ { "fieldPath": "location", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42273,7 +41589,6 @@ { "fieldPath": "department", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42286,7 +41601,6 @@ { "fieldPath": "sys_updated_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -42299,7 +41613,6 @@ { "fieldPath": "checked_out", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -42312,7 +41625,6 @@ { "fieldPath": "unverified", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -42325,7 +41637,6 @@ { "fieldPath": "skip_sync", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -42338,7 +41649,6 @@ { "fieldPath": "po_number", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42351,7 +41661,6 @@ { "fieldPath": "order_date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -42364,7 +41673,6 @@ { "fieldPath": "gl_account", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42377,7 +41685,6 @@ { "fieldPath": "maintenance_schedule", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42390,7 +41697,6 @@ { "fieldPath": "install_date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -42403,7 +41709,6 @@ { "fieldPath": "dns_domain", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42416,7 +41721,6 @@ { "fieldPath": "sys_created_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42429,7 +41733,6 @@ { "fieldPath": "mac_address", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42442,7 +41745,6 @@ { "fieldPath": "change_control", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42455,7 +41757,6 @@ { "fieldPath": "install_status", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -42468,7 +41769,6 @@ { "fieldPath": "due", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -42481,7 +41781,6 @@ { "fieldPath": "sys_mod_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} diff --git a/metadata-ingestion/tests/integration/tableau/tableau_state_mces_golden.json b/metadata-ingestion/tests/integration/tableau/tableau_state_mces_golden.json deleted file mode 100644 index fb884f79c0977..0000000000000 --- a/metadata-ingestion/tests/integration/tableau/tableau_state_mces_golden.json +++ /dev/null @@ -1,32464 +0,0 @@ -[ -{ - "entityType": "container", - "entityUrn": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a", - "changeType": "UPSERT", - "aspectName": "containerProperties", - "aspect": { - "value": "{\"customProperties\": {\"platform\": \"tableau\", \"workbook_id\": \"1f15d897-7f0c-7c59-037a-afa6a9b7c9a9\"}, \"externalUrl\": \"https://do-not-connect/#/site/acryl/workbooks/15995\", \"name\": \"Email Performance by Campaign\", \"description\": \"Description for Email Performance by Campaign\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "container", - "entityUrn": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a", - "changeType": "UPSERT", - "aspectName": "status", - "aspect": { - "value": "{\"removed\": false}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "container", - "entityUrn": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a", - "changeType": "UPSERT", - "aspectName": "dataPlatformInstance", - "aspect": { - "value": "{\"platform\": \"urn:li:dataPlatform:tableau\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "container", - "entityUrn": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a", - "changeType": "UPSERT", - "aspectName": "subTypes", - "aspect": { - "value": "{\"typeNames\": [\"Workbook\"]}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "container", - "entityUrn": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a", - "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" - } -}, -{ - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,222d1406-de0e-cd8d-0b94-9b45a0007e59)", - "changeType": "UPSERT", - "aspectName": "chartUsageStatistics", - "aspect": { - "value": "{\"timestampMillis\": 1638860400000, \"partitionSpec\": {\"type\": \"FULL_TABLE\", \"partition\": \"FULL_TABLE_SNAPSHOT\"}, \"viewsCount\": 5}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { - "urn": "urn:li:chart:(tableau,222d1406-de0e-cd8d-0b94-9b45a0007e59)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.DataPlatformInstance": { - "platform": "urn:li:dataPlatform:tableau" - } - }, - { - "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "Name": "", - "Activity Date": "", - "ID": "", - "Program Name": "", - "Active": "", - "Id": "" - }, - "externalUrl": "https://do-not-connect/t/acryl/authoring/EmailPerformancebyCampaign/EmailPerformancebyCampaign/Timeline - Sent", - "title": "Timeline - Sent", - "description": "", - "lastModified": { - "created": { - "time": 1640200234000, - "actor": "urn:li:corpuser:jawadqu@gmail.com" - }, - "lastModified": { - "time": 1640200234000, - "actor": "urn:li:corpuser:jawadqu@gmail.com" - } - }, - "inputs": [ - { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD)" - } - ] - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/tableau/default/Email Performance by Campaign" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER" - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - } - } - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,222d1406-de0e-cd8d-0b94-9b45a0007e59)", - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { - "urn": "urn:li:chart:(tableau,38130558-4194-2e2a-3046-c0d887829cb4)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.DataPlatformInstance": { - "platform": "urn:li:dataPlatform:tableau" - } - }, - { - "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "Delivery Rate": "formula: ZN([Delivered Email]/[Sent Email])", - "Name": "", - "Id (Activity - Click Email)": "", - "Activity Date": "", - "Clickthrough Rate": "formula: [Clickthrough Emails]/[Delivered Email]", - "Open Rate": "formula: ZN([Opened Email]/[Delivered Email])", - "Sent Email": "formula: COUNTD([Id])", - "Delivered Email": "formula: COUNTD([Id (Activity - Email Delivered)])", - "ID": "", - "Id (Activity - Open Email)": "", - "Clickthrough Emails": "formula: COUNTD([Id (Activity - Click Email)])", - "Click-to-Open": "formula: ZN([Clickthrough Emails]\r\n/ \r\n[Opened Email])", - "Opened Email": "formula: COUNTD([Id (Activity - Open Email)])", - "Id (Activity - Email Delivered)": "", - "Program Name": "", - "Active": "", - "Id": "" - }, - "externalUrl": "https://do-not-connect/t/acryl/authoring/EmailPerformancebyCampaign/EmailPerformancebyCampaign/Campaign List", - "title": "Campaign List", - "description": "", - "lastModified": { - "created": { - "time": 1640200234000, - "actor": "urn:li:corpuser:jawadqu@gmail.com" - }, - "lastModified": { - "time": 1640200234000, - "actor": "urn:li:corpuser:jawadqu@gmail.com" - } - }, - "inputs": [ - { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD)" - } - ] - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/tableau/default/Email Performance by Campaign" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER" - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - } - } - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,38130558-4194-2e2a-3046-c0d887829cb4)", - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { - "urn": "urn:li:chart:(tableau,692a2da4-2a82-32c1-f713-63b8e4325d86)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.DataPlatformInstance": { - "platform": "urn:li:dataPlatform:tableau" - } - }, - { - "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "Delivery Rate": "formula: ZN([Delivered Email]/[Sent Email])", - "Name": "", - "Id (Activity - Click Email)": "", - "Activity Date": "", - "Clickthrough Rate": "formula: [Clickthrough Emails]/[Delivered Email]", - "Open Rate": "formula: ZN([Opened Email]/[Delivered Email])", - "Measure Names": "", - "Sent Email": "formula: COUNTD([Id])", - "Delivered Email": "formula: COUNTD([Id (Activity - Email Delivered)])", - "ID": "", - "Id (Activity - Open Email)": "", - "Clickthrough Emails": "formula: COUNTD([Id (Activity - Click Email)])", - "Click-to-Open": "formula: ZN([Clickthrough Emails]\r\n/ \r\n[Opened Email])", - "Opened Email": "formula: COUNTD([Id (Activity - Open Email)])", - "Id (Activity - Email Delivered)": "", - "Program Name": "", - "Measure Values": "", - "Active": "", - "Id": "" - }, - "externalUrl": "https://do-not-connect/t/acryl/authoring/EmailPerformancebyCampaign/EmailPerformancebyCampaign/Summary", - "title": "Summary", - "description": "", - "lastModified": { - "created": { - "time": 1640200234000, - "actor": "urn:li:corpuser:jawadqu@gmail.com" - }, - "lastModified": { - "time": 1640200234000, - "actor": "urn:li:corpuser:jawadqu@gmail.com" - } - }, - "inputs": [ - { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD)" - } - ] - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/tableau/default/Email Performance by Campaign" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER" - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - } - } - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,692a2da4-2a82-32c1-f713-63b8e4325d86)", - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { - "urn": "urn:li:chart:(tableau,f4317efd-c3e6-6ace-8fe6-e71b590bbbcc)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.DataPlatformInstance": { - "platform": "urn:li:dataPlatform:tableau" - } - }, - { - "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "Delivery Rate": "formula: ZN([Delivered Email]/[Sent Email])", - "Name": "", - "Id (Activity - Click Email)": "", - "Activity Date": "", - "Open Rate": "formula: ZN([Opened Email]/[Delivered Email])", - "Sent Email": "formula: COUNTD([Id])", - "Delivered Email": "formula: COUNTD([Id (Activity - Email Delivered)])", - "ID": "", - "Id (Activity - Open Email)": "", - "Clickthrough Emails": "formula: COUNTD([Id (Activity - Click Email)])", - "Click-to-Open": "formula: ZN([Clickthrough Emails]\r\n/ \r\n[Opened Email])", - "Opened Email": "formula: COUNTD([Id (Activity - Open Email)])", - "Id (Activity - Email Delivered)": "", - "Program Name": "", - "Id": "" - }, - "externalUrl": "https://do-not-connect/t/acryl/authoring/EmailPerformancebyCampaign/EmailPerformancebyCampaign/Mobile - Sent by Campaign", - "title": "Mobile - Sent by Campaign", - "description": "", - "lastModified": { - "created": { - "time": 1640200234000, - "actor": "urn:li:corpuser:jawadqu@gmail.com" - }, - "lastModified": { - "time": 1640200234000, - "actor": "urn:li:corpuser:jawadqu@gmail.com" - } - }, - "inputs": [ - { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD)" - } - ] - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/tableau/default/Email Performance by Campaign" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER" - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - } - } - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,f4317efd-c3e6-6ace-8fe6-e71b590bbbcc)", - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "dashboard", - "entityUrn": "urn:li:dashboard:(tableau,8f7dd564-36b6-593f-3c6f-687ad06cd40b)", - "changeType": "UPSERT", - "aspectName": "dashboardUsageStatistics", - "aspect": { - "value": "{\"timestampMillis\": 1638860400000, \"partitionSpec\": {\"type\": \"FULL_TABLE\", \"partition\": \"FULL_TABLE_SNAPSHOT\"}, \"viewsCount\": 3}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.DashboardSnapshot": { - "urn": "urn:li:dashboard:(tableau,8f7dd564-36b6-593f-3c6f-687ad06cd40b)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.DataPlatformInstance": { - "platform": "urn:li:dataPlatform:tableau" - } - }, - { - "com.linkedin.pegasus2avro.dashboard.DashboardInfo": { - "customProperties": {}, - "title": "Email Performance by Campaign", - "description": "", - "charts": [ - "urn:li:chart:(tableau,222d1406-de0e-cd8d-0b94-9b45a0007e59)", - "urn:li:chart:(tableau,38130558-4194-2e2a-3046-c0d887829cb4)", - "urn:li:chart:(tableau,692a2da4-2a82-32c1-f713-63b8e4325d86)", - "urn:li:chart:(tableau,f4317efd-c3e6-6ace-8fe6-e71b590bbbcc)" - ], - "datasets": [], - "lastModified": { - "created": { - "time": 1640200234000, - "actor": "urn:li:corpuser:jawadqu@gmail.com" - }, - "lastModified": { - "time": 1640200234000, - "actor": "urn:li:corpuser:jawadqu@gmail.com" - } - }, - "dashboardUrl": "https://do-not-connect/#/site/acryl/views/EmailPerformancebyCampaign/EmailPerformancebyCampaign" - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/tableau/default/Email Performance by Campaign" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER" - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - } - } - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "dashboard", - "entityUrn": "urn:li:dashboard:(tableau,8f7dd564-36b6-593f-3c6f-687ad06cd40b)", - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "container", - "entityUrn": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1", - "changeType": "UPSERT", - "aspectName": "containerProperties", - "aspect": { - "value": "{\"customProperties\": {\"platform\": \"tableau\", \"workbook_id\": \"661fabd0-bed6-8610-e066-0694a81a6cea\"}, \"externalUrl\": \"https://do-not-connect/#/site/acryl/workbooks/15619\", \"name\": \"Dvdrental Workbook\", \"description\": \"\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "container", - "entityUrn": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1", - "changeType": "UPSERT", - "aspectName": "status", - "aspect": { - "value": "{\"removed\": false}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "container", - "entityUrn": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1", - "changeType": "UPSERT", - "aspectName": "dataPlatformInstance", - "aspect": { - "value": "{\"platform\": \"urn:li:dataPlatform:tableau\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "container", - "entityUrn": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1", - "changeType": "UPSERT", - "aspectName": "subTypes", - "aspect": { - "value": "{\"typeNames\": [\"Workbook\"]}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "container", - "entityUrn": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1", - "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" - } -}, -{ - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { - "urn": "urn:li:chart:(tableau,8a6a269a-d6de-fae4-5050-513255b40ffc)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.DataPlatformInstance": { - "platform": "urn:li:dataPlatform:tableau" - } - }, - { - "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "Custom SQL Query": "" - }, - "externalUrl": "https://do-not-connect/#/site/acryl/views/dvdrental/Sheet1", - "title": "Sheet 1", - "description": "", - "lastModified": { - "created": { - "time": 1639772911000, - "actor": "urn:li:corpuser:jawadqu@gmail.com" - }, - "lastModified": { - "time": 1642199995000, - "actor": "urn:li:corpuser:jawadqu@gmail.com" - } - }, - "inputs": [ - { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD)" - } - ] - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/tableau/default/Dvdrental Workbook" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER" - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - } - } - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,8a6a269a-d6de-fae4-5050-513255b40ffc)", - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:fad3de4b86519c3edeb685215fe0bab1\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { - "urn": "urn:li:chart:(tableau,c57a5574-db47-46df-677f-0b708dab14db)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.DataPlatformInstance": { - "platform": "urn:li:dataPlatform:tableau" - } - }, - { - "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "payment_date": "", - "amount": "", - "Custom SQL Query": "", - "First Name": "", - "customer_id": "", - "rental_id": "", - "Last Name": "" - }, - "externalUrl": "https://do-not-connect/#/site/acryl/views/dvdrental/Sheet2", - "title": "Sheet 2", - "description": "", - "lastModified": { - "created": { - "time": 1639773415000, - "actor": "urn:li:corpuser:jawadqu@gmail.com" - }, - "lastModified": { - "time": 1642199995000, - "actor": "urn:li:corpuser:jawadqu@gmail.com" - } - }, - "inputs": [ - { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD)" - } - ] - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/tableau/default/Dvdrental Workbook" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER" - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - } - } - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,c57a5574-db47-46df-677f-0b708dab14db)", - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:fad3de4b86519c3edeb685215fe0bab1\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { - "urn": "urn:li:chart:(tableau,e604255e-0573-3951-6db7-05bee48116c1)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.DataPlatformInstance": { - "platform": "urn:li:dataPlatform:tableau" - } - }, - { - "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "Category": "", - "Segment": "", - "Customer Name": "" - }, - "externalUrl": "https://do-not-connect/#/site/acryl/views/dvdrental/Sheet3", - "title": "Sheet 3", - "description": "", - "lastModified": { - "created": { - "time": 1640375456000, - "actor": "urn:li:corpuser:jawadqu@gmail.com" - }, - "lastModified": { - "time": 1642199995000, - "actor": "urn:li:corpuser:jawadqu@gmail.com" - } - }, - "inputs": [ - { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD)" - } - ] - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/tableau/default/Dvdrental Workbook" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER" - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - } - } - }, - { - "com.linkedin.pegasus2avro.common.GlobalTags": { - "tags": [ - { - "tag": "urn:li:tag:TAGSHEET3" - } - ] - } - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,e604255e-0573-3951-6db7-05bee48116c1)", - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:fad3de4b86519c3edeb685215fe0bab1\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.DashboardSnapshot": { - "urn": "urn:li:dashboard:(tableau,20e44c22-1ccd-301a-220c-7b6837d09a52)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.DataPlatformInstance": { - "platform": "urn:li:dataPlatform:tableau" - } - }, - { - "com.linkedin.pegasus2avro.dashboard.DashboardInfo": { - "customProperties": {}, - "title": "dvd Rental Dashboard", - "description": "", - "charts": [ - "urn:li:chart:(tableau,8a6a269a-d6de-fae4-5050-513255b40ffc)" - ], - "datasets": [], - "lastModified": { - "created": { - "time": 1639773866000, - "actor": "urn:li:corpuser:jawadqu@gmail.com" - }, - "lastModified": { - "time": 1642199995000, - "actor": "urn:li:corpuser:jawadqu@gmail.com" - } - }, - "dashboardUrl": "https://do-not-connect/#/site/acryl/views/dvdrental/dvdRentalDashboard" - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/tableau/default/Dvdrental Workbook" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER" - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - } - } - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "dashboard", - "entityUrn": "urn:li:dashboard:(tableau,20e44c22-1ccd-301a-220c-7b6837d09a52)", - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:fad3de4b86519c3edeb685215fe0bab1\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.DashboardSnapshot": { - "urn": "urn:li:dashboard:(tableau,39b7a1de-6276-cfc7-9b59-1d22f3bbb06b)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.DataPlatformInstance": { - "platform": "urn:li:dataPlatform:tableau" - } - }, - { - "com.linkedin.pegasus2avro.dashboard.DashboardInfo": { - "customProperties": {}, - "title": "Story 1", - "description": "", - "charts": [], - "datasets": [], - "lastModified": { - "created": { - "time": 1639773866000, - "actor": "urn:li:corpuser:jawadqu@gmail.com" - }, - "lastModified": { - "time": 1642199995000, - "actor": "urn:li:corpuser:jawadqu@gmail.com" - } - }, - "dashboardUrl": "https://do-not-connect/#/site/acryl/views/dvdrental/Story1" - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/tableau/default/Dvdrental Workbook" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER" - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - } - } - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "dashboard", - "entityUrn": "urn:li:dashboard:(tableau,39b7a1de-6276-cfc7-9b59-1d22f3bbb06b)", - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:fad3de4b86519c3edeb685215fe0bab1\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "container", - "entityUrn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d", - "changeType": "UPSERT", - "aspectName": "containerProperties", - "aspect": { - "value": "{\"customProperties\": {\"platform\": \"tableau\", \"workbook_id\": \"6ffa5a7f-d852-78f1-6c6d-20ac23610ebf\"}, \"externalUrl\": \"https://do-not-connect/#/site/acryl/workbooks/15605\", \"name\": \"Executive Dashboard\", \"description\": \"\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "container", - "entityUrn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d", - "changeType": "UPSERT", - "aspectName": "status", - "aspect": { - "value": "{\"removed\": false}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "container", - "entityUrn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d", - "changeType": "UPSERT", - "aspectName": "dataPlatformInstance", - "aspect": { - "value": "{\"platform\": \"urn:li:dataPlatform:tableau\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "container", - "entityUrn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d", - "changeType": "UPSERT", - "aspectName": "subTypes", - "aspect": { - "value": "{\"typeNames\": [\"Workbook\"]}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "container", - "entityUrn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d", - "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" - } -}, -{ - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { - "urn": "urn:li:chart:(tableau,20fc5eb7-81eb-aa18-8c39-af501c62d085)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.DataPlatformInstance": { - "platform": "urn:li:dataPlatform:tableau" - } - }, - { - "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "Opened": "", - "Total # Request": "formula: // This is a calculated field\r\n// It shows the total number of problems ignoring opened date\r\n\r\n{ EXCLUDE [Opened]: COUNTD([Number])}", - "Due date": "", - "Priority": "", - "Overdue": "formula: // This is a calculated field\r\n// It shows if an accident is overdue\r\n\r\n//Check overdue cases among inactive incidents\r\nIF [Active]=FALSE \r\nAND\r\n[Closed]>[Due date]\r\n\r\nOR\r\n//Check overdue cases among active incidents\r\n[Active]=TRUE \r\nAND NOW()>[Due date]\r\n\r\nTHEN \"Overdue\"\r\nELSE \"Non Overdue\"\r\nEND", - "Active": "", - "Current Year Total Cases": "formula: // This is a calculated field\r\n// It counts each distinct request made in the last year. The \"exclude\" is used to avoid filters interfering in the final result\r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Max Year?]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}", - "Max Year?": "formula: // This is a calculated field\r\n// It shows TRUE/FALSE if the year of opened is equal the maximum year in the dataset\r\n\r\nDATEPART(\"year\", [Opened]) = DATEPART(\"year\", {MAX([Opened])})", - "Total Active Requests": "formula: // This is a calculated field\r\n// It counts each distinct active request. The \"exclude\" is used to avoid filters interfering with the final result \r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Active]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}", - "Number": "", - "Closed": "" - }, - "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Opened Requests", - "title": "Opened Requests", - "description": "", - "lastModified": { - "created": { - "time": 1639768450000, - "actor": "urn:li:corpuser:jawadqu@gmail.com" - }, - "lastModified": { - "time": 1639768502000, - "actor": "urn:li:corpuser:jawadqu@gmail.com" - } - }, - "inputs": [ - { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD)" - }, - { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)" - } - ] - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/tableau/default/Executive Dashboard" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER" - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - } - } - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,20fc5eb7-81eb-aa18-8c39-af501c62d085)", - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { - "urn": "urn:li:chart:(tableau,2b5351c1-535d-4a4a-1339-c51ddd6abf8a)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.DataPlatformInstance": { - "platform": "urn:li:dataPlatform:tableau" - } - }, - { - "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "Opened": "", - "Due date": "", - "Priority": "", - "Name": "", - "Overdue": "formula: // This is a calculated field\r\n// It shows if an accident is overdue\r\n\r\n//Check overdue cases among inactive incidents\r\nIF [Active]=FALSE \r\nAND\r\n[Closed]>[Due date]\r\n\r\nOR\r\n//Check overdue cases among active incidents\r\n[Active]=TRUE \r\nAND NOW()>[Due date]\r\n\r\nTHEN \"Overdue\"\r\nELSE \"Non Overdue\"\r\nEND", - "Active": "", - "Current Year Total Cases": "formula: // This is a calculated field\r\n// It counts each distinct request made in the last year. The \"exclude\" is used to avoid filters interfering in the final result\r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Max Year?]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}", - "Max Year?": "formula: // This is a calculated field\r\n// It shows TRUE/FALSE if the year of opened is equal the maximum year in the dataset\r\n\r\nDATEPART(\"year\", [Opened]) = DATEPART(\"year\", {MAX([Opened])})", - "Number": "", - "Closed": "" - }, - "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Top 10 Items by Requests and YoY Change", - "title": "Top 10 Items by Requests and YoY Change", - "description": "", - "lastModified": { - "created": { - "time": 1639768450000, - "actor": "urn:li:corpuser:jawadqu@gmail.com" - }, - "lastModified": { - "time": 1639768502000, - "actor": "urn:li:corpuser:jawadqu@gmail.com" - } - }, - "inputs": [ - { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD)" - }, - { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)" - } - ] - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/tableau/default/Executive Dashboard" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER" - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - } - } - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,2b5351c1-535d-4a4a-1339-c51ddd6abf8a)", - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { - "urn": "urn:li:chart:(tableau,2b73b9dd-4ec7-75ca-f2e9-fa1984ca8b72)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.DataPlatformInstance": { - "platform": "urn:li:dataPlatform:tableau" - } - }, - { - "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "Overdue": "formula: // This is a calculated field\r\n// It checks if an incident is overdue\r\n\r\n//Check overdue cases among inactive incidents\r\n{ FIXED [Number]:\r\n\r\nIF MAX([Active]=FALSE) \r\nAND\r\nmax([Closed])> max([Due date])\r\n\r\nOR\r\n//Check overdue cases among active incidents\r\nMAX([Active]=TRUE) \r\nAND NOW()> MAX([Due date]) \r\n\r\nTHEN \"Overdue\"\r\nEND\r\n}", - "Number": "", - "Priority": "", - "Due date": "", - "Total # Problems": "formula: // This is a calculated field using a level of detail calculation (LOD)\r\n// It counts each distinct problems ignoring date\r\n\r\n{ EXCLUDE [Opened]: COUNTD([Number])}", - "Opened": "", - "Max Year?": "formula: // This is a calculated field\r\n// It shows TRUE/FALSE if the year of opened is equal the max year of the dataset \r\n\r\nDATEPART(\"year\", [Opened]) = DATEPART(\"year\", {MAX([Opened])})", - "Closed": "", - "Active": "", - "Current Year Total Cases": "formula: // This is a calculated field\r\n// It counts each disctinct problem. The \"exclude\" is used to avoid filters interfering with the result\r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Max Year?]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}", - "Total Active Problems": "formula: // This is a calculated field using a level of detail calculation (LOD)\r\n// It counts each distinct active problem. The \"exclude\" is used to avoid filters interfering with the result \r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Active]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}" - }, - "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Opened Problems", - "title": "Opened Problems", - "description": "", - "lastModified": { - "created": { - "time": 1639768450000, - "actor": "urn:li:corpuser:jawadqu@gmail.com" - }, - "lastModified": { - "time": 1639768502000, - "actor": "urn:li:corpuser:jawadqu@gmail.com" - } - }, - "inputs": [ - { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD)" - }, - { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)" - } - ] - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/tableau/default/Executive Dashboard" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER" - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - } - } - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,2b73b9dd-4ec7-75ca-f2e9-fa1984ca8b72)", - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { - "urn": "urn:li:chart:(tableau,373c6466-bb0c-b319-8752-632456349261)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.DataPlatformInstance": { - "platform": "urn:li:dataPlatform:tableau" - } - }, - { - "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "% of Overdue": "formula: // This is a calculated field\r\n// It show the percentage incidents which are overdue\r\n\r\n(IF ATTR([Overdue]=\"Overdue\")\r\nTHEN COUNTD([Number])\r\nEND)\r\n/\r\nATTR({ EXCLUDE [Overdue]:\r\nCOUNTD([Number])})", - "Priority": "", - "Category (Incident)": "", - "Overdue": "formula: // This is a calculated field\r\n// It shows if an incident is overdue\r\n\r\n//Check overdue cases among inactive incidents\r\n{ FIXED [Number]:\r\n\r\nIF MAX([Active]=FALSE) \r\nAND\r\nmax([Closed])>max([Due date])\r\n\r\nOR\r\n//Check overdue cases among active incidents\r\nMAX([Active] = TRUE) \r\nAND NOW() > MAX([Due date]) \r\n\r\nTHEN \"Overdue\"\r\nEND\r\n}", - "Number": "", - "Opened": "", - "Max Year?": "formula: // This is a calculated field\r\n// It shows TRUE/FALSE if opened date equals maximum year in the dataset\r\n\r\nDATEPART(\"year\", [Opened]) = DATEPART(\"year\", {MAX([Opened])})", - "Due date": "", - "Active": "", - "Closed": "" - }, - "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Overdue", - "title": "Overdue", - "description": "", - "lastModified": { - "created": { - "time": 1639768450000, - "actor": "urn:li:corpuser:jawadqu@gmail.com" - }, - "lastModified": { - "time": 1639768502000, - "actor": "urn:li:corpuser:jawadqu@gmail.com" - } - }, - "inputs": [ - { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)" - } - ] - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/tableau/default/Executive Dashboard" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER" - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - } - } - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,373c6466-bb0c-b319-8752-632456349261)", - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { - "urn": "urn:li:chart:(tableau,53b8dc2f-8ada-51f7-7422-fe82e9b803cc)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.DataPlatformInstance": { - "platform": "urn:li:dataPlatform:tableau" - } - }, - { - "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "Number": "", - "Priority": "", - "Opened": "", - "Max Year?": "formula: // This is a calculated field\r\n// It shows TRUE/FALSE if the year of opened is equal the max year of the dataset \r\n\r\nDATEPART(\"year\", [Opened]) = DATEPART(\"year\", {MAX([Opened])})", - "% of critical and high priority": "formula: // This is a calculated field\r\n// It shows the percentage of critical or high priority problems\r\n\r\nCOUNTD(IF [Priority]=1\r\nOR [Priority]=2\r\nTHEN [Number]\r\nEND)\r\n/\r\nCOUNTD([Number])", - "Active": "" - }, - "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/High and Critical Priority Problems", - "title": "High and Critical Priority Problems", - "description": "", - "lastModified": { - "created": { - "time": 1639768450000, - "actor": "urn:li:corpuser:jawadqu@gmail.com" - }, - "lastModified": { - "time": 1639768502000, - "actor": "urn:li:corpuser:jawadqu@gmail.com" - } - }, - "inputs": [ - { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD)" - }, - { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)" - } - ] - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/tableau/default/Executive Dashboard" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER" - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - } - } - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,53b8dc2f-8ada-51f7-7422-fe82e9b803cc)", - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { - "urn": "urn:li:chart:(tableau,58af9ecf-b839-da50-65e1-2e1fa20e3362)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.DataPlatformInstance": { - "platform": "urn:li:dataPlatform:tableau" - } - }, - { - "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "Priority": "", - "Current Year Total Cases": "formula: // This is a calculated field using level of detail calculation\r\n// It counts each distinct incident. The exclude is used to guarantee that filters will not interfere in the result\r\n\r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Max Year?]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}", - "Category (Incident)": "", - "Overdue": "formula: // This is a calculated field\r\n// It shows if an incident is overdue\r\n\r\n//Check overdue cases among inactive incidents\r\n{ FIXED [Number]:\r\n\r\nIF MAX([Active]=FALSE) \r\nAND\r\nmax([Closed])>max([Due date])\r\n\r\nOR\r\n//Check overdue cases among active incidents\r\nMAX([Active] = TRUE) \r\nAND NOW() > MAX([Due date]) \r\n\r\nTHEN \"Overdue\"\r\nEND\r\n}", - "Number": "", - "Opened": "", - "Max Year?": "formula: // This is a calculated field\r\n// It shows TRUE/FALSE if opened date equals maximum year in the dataset\r\n\r\nDATEPART(\"year\", [Opened]) = DATEPART(\"year\", {MAX([Opened])})", - "Due date": "", - "Active": "", - "Closed": "" - }, - "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Total Incidents by Category and YoY Change", - "title": "Total Incidents by Category and YoY Change", - "description": "", - "lastModified": { - "created": { - "time": 1639768450000, - "actor": "urn:li:corpuser:jawadqu@gmail.com" - }, - "lastModified": { - "time": 1639768502000, - "actor": "urn:li:corpuser:jawadqu@gmail.com" - } - }, - "inputs": [ - { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)" - } - ] - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/tableau/default/Executive Dashboard" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER" - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - } - } - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,58af9ecf-b839-da50-65e1-2e1fa20e3362)", - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { - "urn": "urn:li:chart:(tableau,618b3e76-75c1-cb31-0c61-3f4890b72c31)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.DataPlatformInstance": { - "platform": "urn:li:dataPlatform:tableau" - } - }, - { - "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "Number": "", - "Priority": "", - "Problems with Related Incidents": "formula: // This is a calculated field\r\n// It counts each distinct problems which has a related incident\r\n\r\nCOUNT(IF ([Related Incidents]>0\r\nAND NOT ISNULL([Related Incidents]))=true\r\nTHEN [Number]\r\nEND)", - "Related Incidents": "", - "Opened": "", - "% of known error": "formula: // This is a calculated field\r\n// It shows the percentage of problems that are known errors\r\n\r\nCOUNTD(IF [Known error]=TRUE\r\nTHEN [Number] END)\r\n/\r\nCOUNTD([Number])", - "Max Year?": "formula: // This is a calculated field\r\n// It shows TRUE/FALSE if the year of opened is equal the max year of the dataset \r\n\r\nDATEPART(\"year\", [Opened]) = DATEPART(\"year\", {MAX([Opened])})", - "Known error": "", - "Active": "" - }, - "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Known Errors", - "title": "Known Errors", - "description": "", - "lastModified": { - "created": { - "time": 1639768450000, - "actor": "urn:li:corpuser:jawadqu@gmail.com" - }, - "lastModified": { - "time": 1639768502000, - "actor": "urn:li:corpuser:jawadqu@gmail.com" - } - }, - "inputs": [ - { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD)" - }, - { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)" - } - ] - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/tableau/default/Executive Dashboard" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER" - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - } - } - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,618b3e76-75c1-cb31-0c61-3f4890b72c31)", - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { - "urn": "urn:li:chart:(tableau,721c3c41-7a2b-16a8-3281-6f948a44be96)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.DataPlatformInstance": { - "platform": "urn:li:dataPlatform:tableau" - } - }, - { - "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "Opened": "", - "Due date": "", - "Priority": "", - "Overdue": "formula: // This is a calculated field\r\n// It shows if an accident is overdue\r\n\r\n//Check overdue cases among inactive incidents\r\nIF [Active]=FALSE \r\nAND\r\n[Closed]>[Due date]\r\n\r\nOR\r\n//Check overdue cases among active incidents\r\n[Active]=TRUE \r\nAND NOW()>[Due date]\r\n\r\nTHEN \"Overdue\"\r\nELSE \"Non Overdue\"\r\nEND", - "Active": "", - "% of Overdue": "formula: // This is a calculated field\r\n// It shows the percentage of incidents which are overdue\r\n\r\n(IF ATTR([Overdue]= \"Overdue\")\r\nTHEN COUNTD([Number])\r\nEND)\r\n/\r\nATTR({ EXCLUDE [Overdue]:\r\nCOUNTD([Number])})", - "Number": "", - "Closed": "" - }, - "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Overdue Requests", - "title": "Overdue Requests", - "description": "", - "lastModified": { - "created": { - "time": 1639768450000, - "actor": "urn:li:corpuser:jawadqu@gmail.com" - }, - "lastModified": { - "time": 1639768502000, - "actor": "urn:li:corpuser:jawadqu@gmail.com" - } - }, - "inputs": [ - { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD)" - }, - { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)" - } - ] - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/tableau/default/Executive Dashboard" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER" - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - } - } - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,721c3c41-7a2b-16a8-3281-6f948a44be96)", - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { - "urn": "urn:li:chart:(tableau,7ef184c1-5a41-5ec8-723e-ae44c20aa335)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.DataPlatformInstance": { - "platform": "urn:li:dataPlatform:tableau" - } - }, - { - "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "Priority": "", - "Category (Incident)": "", - "Time to Close an Incident (seconds)": "formula: // This is a calculated field\r\n// It calculates the difference in seconds between opening and closing an incident\r\n\r\n// Check if closed date is valid\r\nIF [Closed]>[Opened]\r\nTHEN\r\n//Calculate difference\r\nDATEDIFF('second', [Opened], [Closed])\r\nEND", - "Opened": "", - "Max Year?": "formula: // This is a calculated field\r\n// It shows TRUE/FALSE if opened date equals maximum year in the dataset\r\n\r\nDATEPART(\"year\", [Opened]) = DATEPART(\"year\", {MAX([Opened])})", - "Active": "", - "Closed": "", - "Time to Close an Incident": "formula: // This is a calculated field\r\n// It transforms time in seconds into DD:HH:MM:SS format\r\nSTR(INT(AVG([Time to Close an Incident (seconds)])/86400)) \r\n \r\n+ \" day(s) \" + \r\n \r\nIF (INT(AVG([Time to Close an Incident (seconds)])%86400/3600)) \r\n< 10 THEN \"0\" ELSE \"\" END + STR(INT(AVG([Time to Close an Incident (seconds)])%86400/3600))\r\n \r\n+ \":\" + \r\n \r\nIF INT(AVG([Time to Close an Incident (seconds)])%3600/60) \r\n< 10 THEN \"0\" ELSE \"\" END + STR(INT(AVG([Time to Close an Incident (seconds)])%3600/60)) \r\n \r\n \r\n+ \":\" + \r\n \r\nIF INT(AVG([Time to Close an Incident (seconds)]) %3600 %60) \r\n< 10 THEN \"0\" ELSE \"\" END + STR(INT(AVG([Time to Close an Incident (seconds)]) %3600 %60))" - }, - "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/AVG Time to Solve an Incident", - "title": "AVG Time to Solve an Incident", - "description": "", - "lastModified": { - "created": { - "time": 1639768450000, - "actor": "urn:li:corpuser:jawadqu@gmail.com" - }, - "lastModified": { - "time": 1639768502000, - "actor": "urn:li:corpuser:jawadqu@gmail.com" - } - }, - "inputs": [ - { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)" - } - ] - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/tableau/default/Executive Dashboard" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER" - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - } - } - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,7ef184c1-5a41-5ec8-723e-ae44c20aa335)", - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { - "urn": "urn:li:chart:(tableau,7fbc77ba-0ab6-3727-0db3-d8402a804da5)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.DataPlatformInstance": { - "platform": "urn:li:dataPlatform:tableau" - } - }, - { - "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "Opened": "", - "% made SLA": "formula: // This is a calculated field\r\n// It shows the percentage of requests which made SLA\r\n\r\nCOUNTD(IF [Made SLA]= TRUE\r\nTHEN [Number]\r\nEND)\r\n/\r\nCOUNTD([Number])", - "Priority": "", - "Active": "", - "Made SLA": "", - "Number": "" - }, - "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Made SLA?", - "title": "Made SLA?", - "description": "", - "lastModified": { - "created": { - "time": 1639768450000, - "actor": "urn:li:corpuser:jawadqu@gmail.com" - }, - "lastModified": { - "time": 1639768502000, - "actor": "urn:li:corpuser:jawadqu@gmail.com" - } - }, - "inputs": [ - { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD)" - }, - { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)" - } - ] - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/tableau/default/Executive Dashboard" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER" - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - } - } - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,7fbc77ba-0ab6-3727-0db3-d8402a804da5)", - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { - "urn": "urn:li:chart:(tableau,8385ea9a-0749-754f-7ad9-824433de2120)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.DataPlatformInstance": { - "platform": "urn:li:dataPlatform:tableau" - } - }, - { - "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "Priority": "", - "Number": "", - "Opened": "", - "Max Year?": "formula: // This is a calculated field\r\n// It shows TRUE/FALSE if opened date equals maximum year in the dataset\r\n\r\nDATEPART(\"year\", [Opened]) = DATEPART(\"year\", {MAX([Opened])})", - "Active": "" - }, - "externalUrl": "https://do-not-connect/#/site/acryl/views/ExecutiveDashboard/Tooltip-IncidentBreakdownbyPriority", - "title": "Tooltip - Incident Breakdown by Priority", - "description": "", - "lastModified": { - "created": { - "time": 1639768450000, - "actor": "urn:li:corpuser:jawadqu@gmail.com" - }, - "lastModified": { - "time": 1639768502000, - "actor": "urn:li:corpuser:jawadqu@gmail.com" - } - }, - "inputs": [ - { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)" - } - ] - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/tableau/default/Executive Dashboard" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER" - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - } - } - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,8385ea9a-0749-754f-7ad9-824433de2120)", - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { - "urn": "urn:li:chart:(tableau,b207c2f2-b675-32e3-2663-17bb836a018b)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.DataPlatformInstance": { - "platform": "urn:li:dataPlatform:tableau" - } - }, - { - "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "Overdue": "formula: // This is a calculated field\r\n// It checks if an incident is overdue\r\n\r\n//Check overdue cases among inactive incidents\r\n{ FIXED [Number]:\r\n\r\nIF MAX([Active]=FALSE) \r\nAND\r\nmax([Closed])> max([Due date])\r\n\r\nOR\r\n//Check overdue cases among active incidents\r\nMAX([Active]=TRUE) \r\nAND NOW()> MAX([Due date]) \r\n\r\nTHEN \"Overdue\"\r\nEND\r\n}", - "Number": "", - "Priority": "", - "Due date": "", - "% of Overdue": "formula: // This is a calculated field\r\n// It shows the percentage of incidents that are overdue\r\n\r\nIFNULL((IF ATTR([Overdue]= \"Overdue\")\r\nTHEN COUNTD([Number])\r\nEND),0)\r\n/\r\nATTR({ EXCLUDE [Overdue]:\r\nCOUNTD([Number])})", - "Opened": "", - "Max Year?": "formula: // This is a calculated field\r\n// It shows TRUE/FALSE if the year of opened is equal the max year of the dataset \r\n\r\nDATEPART(\"year\", [Opened]) = DATEPART(\"year\", {MAX([Opened])})", - "Closed": "", - "Active": "" - }, - "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Overdue Problems", - "title": "Overdue Problems", - "description": "", - "lastModified": { - "created": { - "time": 1639768450000, - "actor": "urn:li:corpuser:jawadqu@gmail.com" - }, - "lastModified": { - "time": 1639768502000, - "actor": "urn:li:corpuser:jawadqu@gmail.com" - } - }, - "inputs": [ - { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD)" - }, - { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)" - } - ] - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/tableau/default/Executive Dashboard" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER" - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - } - } - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,b207c2f2-b675-32e3-2663-17bb836a018b)", - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { - "urn": "urn:li:chart:(tableau,b679da5e-7d03-f01e-b2ea-01fb3c1926dc)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.DataPlatformInstance": { - "platform": "urn:li:dataPlatform:tableau" - } - }, - { - "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "Number": "", - "Priority": "", - "Opened": "", - "Max Year?": "formula: // This is a calculated field\r\n// It shows TRUE/FALSE if the year of opened is equal the max year of the dataset \r\n\r\nDATEPART(\"year\", [Opened]) = DATEPART(\"year\", {MAX([Opened])})", - "Active": "" - }, - "externalUrl": "https://do-not-connect/#/site/acryl/views/ExecutiveDashboard/Tooltip-ProblemBreakdownbyPriority", - "title": "Tooltip - Problem Breakdown by Priority", - "description": "", - "lastModified": { - "created": { - "time": 1639768450000, - "actor": "urn:li:corpuser:jawadqu@gmail.com" - }, - "lastModified": { - "time": 1639768502000, - "actor": "urn:li:corpuser:jawadqu@gmail.com" - } - }, - "inputs": [ - { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD)" - }, - { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)" - } - ] - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/tableau/default/Executive Dashboard" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER" - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - } - } - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,b679da5e-7d03-f01e-b2ea-01fb3c1926dc)", - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { - "urn": "urn:li:chart:(tableau,c14973c2-e1c3-563a-a9c1-8a408396d22a)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.DataPlatformInstance": { - "platform": "urn:li:dataPlatform:tableau" - } - }, - { - "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "Opened": "", - "Priority": "", - "Active": "", - "Max Year?": "formula: // This is a calculated field\r\n// It shows TRUE/FALSE if opened date equals maximum year in the dataset\r\n\r\nDATEPART(\"year\", [Opened]) = DATEPART(\"year\", {MAX([Opened])})", - "Number": "" - }, - "externalUrl": "https://do-not-connect/#/site/acryl/views/ExecutiveDashboard/Tooltip-RequestBreakdownbyPriority", - "title": "Tooltip - Request Breakdown by Priority", - "description": "", - "lastModified": { - "created": { - "time": 1639768450000, - "actor": "urn:li:corpuser:jawadqu@gmail.com" - }, - "lastModified": { - "time": 1639768502000, - "actor": "urn:li:corpuser:jawadqu@gmail.com" - } - }, - "inputs": [ - { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD)" - }, - { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)" - } - ] - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/tableau/default/Executive Dashboard" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER" - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - } - } - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,c14973c2-e1c3-563a-a9c1-8a408396d22a)", - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { - "urn": "urn:li:chart:(tableau,e70a540d-55ed-b9cc-5a3c-01ebe81a1274)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.DataPlatformInstance": { - "platform": "urn:li:dataPlatform:tableau" - } - }, - { - "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "Number": "", - "Priority": "", - "Time Span Breakdown": "formula: // This is a calculated field\r\n// It groups problems accordingly with their ages\r\n\r\nIF [Age of Problems]< 2592000\r\nTHEN \"Under 30 d\"\r\nELSEIF [Age of Problems] > 7776000\r\nTHEN \"+ than 90d\"\r\nELSE \" 30-90 d\"\r\nEND", - "Opened": "", - "Max Year?": "formula: // This is a calculated field\r\n// It shows TRUE/FALSE if the year of opened is equal the max year of the dataset \r\n\r\nDATEPART(\"year\", [Opened]) = DATEPART(\"year\", {MAX([Opened])})", - "Age of Problems": "formula: //Calculates the age of active problems since opened until now\r\n\r\nDATEDIFF('second', [Opened], NOW())", - "Active": "" - }, - "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Age of Active Problems", - "title": "Age of Active Problems", - "description": "", - "lastModified": { - "created": { - "time": 1639768450000, - "actor": "urn:li:corpuser:jawadqu@gmail.com" - }, - "lastModified": { - "time": 1639768502000, - "actor": "urn:li:corpuser:jawadqu@gmail.com" - } - }, - "inputs": [ - { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD)" - }, - { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)" - } - ] - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/tableau/default/Executive Dashboard" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER" - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - } - } - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,e70a540d-55ed-b9cc-5a3c-01ebe81a1274)", - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { - "urn": "urn:li:chart:(tableau,f76d3570-23b8-f74b-d85c-cc5484c2079c)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.DataPlatformInstance": { - "platform": "urn:li:dataPlatform:tableau" - } - }, - { - "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "Priority": "", - "Current Year Total Cases": "formula: // This is a calculated field using level of detail calculation\r\n// It counts each distinct incident. The exclude is used to guarantee that filters will not interfere in the result\r\n\r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Max Year?]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}", - "Category (Incident)": "", - "Overdue": "formula: // This is a calculated field\r\n// It shows if an incident is overdue\r\n\r\n//Check overdue cases among inactive incidents\r\n{ FIXED [Number]:\r\n\r\nIF MAX([Active]=FALSE) \r\nAND\r\nmax([Closed])>max([Due date])\r\n\r\nOR\r\n//Check overdue cases among active incidents\r\nMAX([Active] = TRUE) \r\nAND NOW() > MAX([Due date]) \r\n\r\nTHEN \"Overdue\"\r\nEND\r\n}", - "Total Active Incidents": "formula: // This is a calculated field\r\n// It counts each distinct incident. The \"exclude\" is used to avoid filters interfering in the final result\r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Active]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}", - "Number": "", - "Opened": "", - "Max Year?": "formula: // This is a calculated field\r\n// It shows TRUE/FALSE if opened date equals maximum year in the dataset\r\n\r\nDATEPART(\"year\", [Opened]) = DATEPART(\"year\", {MAX([Opened])})", - "Opened Month Tooltip": "formula: // This is an IF statment using the opened field to allow for different formats\r\n// original used on columns for line charts are formatted in starting letter of month i.e. J for January\r\n// This version formats to full month name for the tooltip \r\n\r\n\r\n// The IF statement names the month based on the month number of the datefield\r\nIF DATEPART('month', [Opened]) = 1 THEN 'January'\r\nELSEIF DATEPART('month', [Opened]) = 2 THEN 'February'\r\nELSEIF DATEPART('month', [Opened]) = 3 THEN 'March'\r\nELSEIF DATEPART('month', [Opened]) = 4 THEN 'April'\r\nELSEIF DATEPART('month', [Opened]) = 5 THEN 'May'\r\nELSEIF DATEPART('month', [Opened]) = 6 THEN 'June'\r\nELSEIF DATEPART('month', [Opened]) = 7 THEN 'July'\r\nELSEIF DATEPART('month', [Opened]) = 8 THEN 'August'\r\nELSEIF DATEPART('month', [Opened]) = 9 THEN 'September'\r\nELSEIF DATEPART('month', [Opened]) = 10 THEN 'October'\r\nELSEIF DATEPART('month', [Opened]) = 11 THEN 'Novemeber'\r\nELSEIF DATEPART('month', [Opened]) = 12 THEN 'December'\r\nELSE NULL\r\nEND", - "Due date": "", - "Active": "", - "Closed": "" - }, - "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Opened Incidents", - "title": "Opened Incidents", - "description": "", - "lastModified": { - "created": { - "time": 1639768450000, - "actor": "urn:li:corpuser:jawadqu@gmail.com" - }, - "lastModified": { - "time": 1639768502000, - "actor": "urn:li:corpuser:jawadqu@gmail.com" - } - }, - "inputs": [ - { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)" - } - ] - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/tableau/default/Executive Dashboard" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER" - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - } - } - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,f76d3570-23b8-f74b-d85c-cc5484c2079c)", - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.DashboardSnapshot": { - "urn": "urn:li:dashboard:(tableau,5dcaaf46-e6fb-2548-e763-272a7ab2c9b1)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.DataPlatformInstance": { - "platform": "urn:li:dataPlatform:tableau" - } - }, - { - "com.linkedin.pegasus2avro.dashboard.DashboardInfo": { - "customProperties": {}, - "title": "Executive Dashboard", - "description": "", - "charts": [ - "urn:li:chart:(tableau,20fc5eb7-81eb-aa18-8c39-af501c62d085)", - "urn:li:chart:(tableau,2b5351c1-535d-4a4a-1339-c51ddd6abf8a)", - "urn:li:chart:(tableau,2b73b9dd-4ec7-75ca-f2e9-fa1984ca8b72)", - "urn:li:chart:(tableau,373c6466-bb0c-b319-8752-632456349261)", - "urn:li:chart:(tableau,53b8dc2f-8ada-51f7-7422-fe82e9b803cc)", - "urn:li:chart:(tableau,58af9ecf-b839-da50-65e1-2e1fa20e3362)", - "urn:li:chart:(tableau,618b3e76-75c1-cb31-0c61-3f4890b72c31)", - "urn:li:chart:(tableau,721c3c41-7a2b-16a8-3281-6f948a44be96)", - "urn:li:chart:(tableau,7ef184c1-5a41-5ec8-723e-ae44c20aa335)", - "urn:li:chart:(tableau,7fbc77ba-0ab6-3727-0db3-d8402a804da5)", - "urn:li:chart:(tableau,b207c2f2-b675-32e3-2663-17bb836a018b)", - "urn:li:chart:(tableau,e70a540d-55ed-b9cc-5a3c-01ebe81a1274)", - "urn:li:chart:(tableau,f76d3570-23b8-f74b-d85c-cc5484c2079c)" - ], - "datasets": [], - "lastModified": { - "created": { - "time": 1639768450000, - "actor": "urn:li:corpuser:jawadqu@gmail.com" - }, - "lastModified": { - "time": 1639768502000, - "actor": "urn:li:corpuser:jawadqu@gmail.com" - } - }, - "dashboardUrl": "https://do-not-connect/#/site/acryl/views/ExecutiveDashboard/ExecutiveDashboard" - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/tableau/default/Executive Dashboard" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER" - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - } - } - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "dashboard", - "entityUrn": "urn:li:dashboard:(tableau,5dcaaf46-e6fb-2548-e763-272a7ab2c9b1)", - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "container", - "entityUrn": "urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9", - "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" - } -}, -{ - "entityType": "container", - "entityUrn": "urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9", - "changeType": "UPSERT", - "aspectName": "status", - "aspect": { - "value": "{\"removed\": false}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "container", - "entityUrn": "urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9", - "changeType": "UPSERT", - "aspectName": "dataPlatformInstance", - "aspect": { - "value": "{\"platform\": \"urn:li:dataPlatform:tableau\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "container", - "entityUrn": "urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9", - "changeType": "UPSERT", - "aspectName": "subTypes", - "aspect": { - "value": "{\"typeNames\": [\"Workbook\"]}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "container", - "entityUrn": "urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9", - "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" - } -}, -{ - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { - "urn": "urn:li:chart:(tableau,130496dc-29ca-8a89-e32b-d73c4d8b65ff)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.DataPlatformInstance": { - "platform": "urn:li:dataPlatform:tableau" - } - }, - { - "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "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" - }, - "lastModified": { - "time": 1642658093000, - "actor": "urn:li:corpuser:jawadqu@gmail.com" - } - }, - "inputs": [ - { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD)" - } - ] - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/tableau/default/Workbook published ds" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER" - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - } - } - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,130496dc-29ca-8a89-e32b-d73c4d8b65ff)", - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD)", - "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.activity10,PROD)\", \"type\": \"TRANSFORMED\"}, {\"auditStamp\": {\"time\": 0, \"actor\": \"urn:li:corpuser:unknown\"}, \"dataset\": \"urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity7,PROD)\", \"type\": \"TRANSFORMED\"}, {\"auditStamp\": {\"time\": 0, \"actor\": \"urn:li:corpuser:unknown\"}, \"dataset\": \"urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.campaignstable,PROD)\", \"type\": \"TRANSFORMED\"}]}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { - "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.DataPlatformInstance": { - "platform": "urn:li:dataPlatform:tableau" - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER" - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - } - } - }, - { - "com.linkedin.pegasus2avro.dataset.DatasetProperties": { - "customProperties": { - "hasExtracts": "True", - "extractLastRefreshTime": "2018-02-09T00:05:25Z", - "extractLastIncrementalUpdateTime": "", - "extractLastUpdateTime": "2018-02-09T00:05:25Z", - "type": "EmbeddedDatasource" - }, - "name": "Marketo", - "tags": [] - } - }, - { - "com.linkedin.pegasus2avro.schema.SchemaMetadata": { - "schemaName": "test", - "platform": "urn:li:dataPlatform:tableau", - "version": 0, - "created": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - }, - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - }, - "hash": "", - "platformSchema": { - "com.linkedin.pegasus2avro.schema.OtherSchema": { - "rawSchema": "" - } - }, - "fields": [ - { - "fieldPath": "Delivery Rate", - "nullable": false, - "description": "formula: ZN([Delivered Email]/[Sent Email])", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Program ID", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Platform (Activity - Click Email)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - }, - { - "tag": "urn:li:tag:COUNT" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Updated At", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Workspace Name", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Mailing ID (Activity - Email Delivered)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Campaign ID (Activity - Email Delivered)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Number of Records", - "nullable": false, - "description": "formula: 1", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Campaign Run ID", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "User Agent (Activity - Click Email)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Choice Number (Activity - Email Delivered)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Campaign ID", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Name", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Is Predictive", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Campaign ID (Activity - Click Email)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Activity Date (Activity - Click Email)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Has Predictive (Activity - Open Email)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Step ID (Activity - Open Email)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Id (Activity - Click Email)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Step ID (Activity - Click Email)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Activity Date", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Clickthrough Rate", - "nullable": false, - "description": "formula: [Clickthrough Emails]/[Delivered Email]", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Open Rate", - "nullable": false, - "description": "formula: ZN([Opened Email]/[Delivered Email])", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Measure Names", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Sent Email", - "nullable": false, - "description": "formula: COUNTD([Id])", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Delivered Email", - "nullable": false, - "description": "formula: COUNTD([Id (Activity - Email Delivered)])", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Lead ID (Activity - Click Email)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Choice Number", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Is Mobile Device", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Platform", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - }, - { - "tag": "urn:li:tag:COUNT" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Mailing ID (Activity - Open Email)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Lead ID (Activity - Open Email)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Test Variant (Activity - Email Delivered)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "ID", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Campaign Run ID (Activity - Email Delivered)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Id (Activity - Open Email)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Activity Date (Activity - Open Email)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Description", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Campaign Run ID (Activity - Click Email)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Created At", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Clickthrough Emails", - "nullable": false, - "description": "formula: COUNTD([Id (Activity - Click Email)])", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Is Mobile Device (Activity - Click Email)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Mailing ID", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Device (Activity - Click Email)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - }, - { - "tag": "urn:li:tag:COUNT" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Mailing ID (Activity - Click Email)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Choice Number (Activity - Click Email)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Test Variant", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Link ID", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Click-to-Open", - "nullable": false, - "description": "formula: ZN([Clickthrough Emails]\r\n/ \r\n[Opened Email])", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Opened Email", - "nullable": false, - "description": "formula: COUNTD([Id (Activity - Open Email)])", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Link", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - }, - { - "tag": "urn:li:tag:COUNT" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Lead ID", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Campaign Run ID (Activity - Open Email)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Opened Non Clicked Emails", - "nullable": false, - "description": "formula: [Opened Email]-[Clickthrough Emails]", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Test Variant (Activity - Open Email)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Step ID (Activity - Email Delivered)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Non Clickthrough Email", - "nullable": false, - "description": "formula: [Delivered Email]-[Clickthrough Emails]", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Device", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - }, - { - "tag": "urn:li:tag:COUNT" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Lead ID (Activity - Email Delivered)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Id (Activity - Email Delivered)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Program Name", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Campaign ID (Activity - Open Email)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Activity Date (Activity - Email Delivered)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Test Variant (Activity - Click Email)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Has Predictive", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Non Opened Email", - "nullable": false, - "description": "formula: [Delivered Email]-[Opened Email]", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Measure Values", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Has Predictive (Activity - Email Delivered)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "User Agent", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Active", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Step ID", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Bounceback", - "nullable": false, - "description": "formula: [Sent Email] - [Delivered Email]", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Choice Number (Activity - Open Email)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Id", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - } - ] - } - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD)", - "changeType": "UPSERT", - "aspectName": "subTypes", - "aspect": { - "value": "{\"typeNames\": [\"Embedded Data Source\"]}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD)", - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { - "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.DataPlatformInstance": { - "platform": "urn:li:dataPlatform:tableau" - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER" - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - } - } - }, - { - "com.linkedin.pegasus2avro.dataset.DatasetProperties": { - "customProperties": { - "hasExtracts": "False", - "extractLastRefreshTime": "", - "extractLastIncrementalUpdateTime": "", - "extractLastUpdateTime": "", - "type": "EmbeddedDatasource" - }, - "name": "Customer Payment Query", - "tags": [] - } - }, - { - "com.linkedin.pegasus2avro.schema.SchemaMetadata": { - "schemaName": "test", - "platform": "urn:li:dataPlatform:tableau", - "version": 0, - "created": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - }, - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - }, - "hash": "", - "platformSchema": { - "com.linkedin.pegasus2avro.schema.OtherSchema": { - "rawSchema": "" - } - }, - "fields": [ - { - "fieldPath": "payment_date", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - }, - { - "tag": "urn:li:tag:YEAR" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "amount", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - }, - { - "tag": "urn:li:tag:SUM" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Custom SQL Query", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.ArrayType": {} - } - }, - "nativeDataType": "TABLE", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "First Name", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "customer_id", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - }, - { - "tag": "urn:li:tag:SUM" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "rental_id", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - }, - { - "tag": "urn:li:tag:SUM" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Last Name", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - } - ] - } - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD)", - "changeType": "UPSERT", - "aspectName": "subTypes", - "aspect": { - "value": "{\"typeNames\": [\"Embedded Data Source\"]}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD)", - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:fad3de4b86519c3edeb685215fe0bab1\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,618c87db-5959-338b-bcc7-6f5f4cc0b6c6,PROD)", - "changeType": "UPSERT", - "aspectName": "upstreamLineage", - "aspect": { - "value": "{\"upstreams\": [{\"auditStamp\": {\"time\": 0, \"actor\": \"urn:li:corpuser:unknown\"}, \"dataset\": \"urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.address,PROD)\", \"type\": \"TRANSFORMED\"}, {\"auditStamp\": {\"time\": 0, \"actor\": \"urn:li:corpuser:unknown\"}, \"dataset\": \"urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.actor,PROD)\", \"type\": \"TRANSFORMED\"}]}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { - "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,618c87db-5959-338b-bcc7-6f5f4cc0b6c6,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.DataPlatformInstance": { - "platform": "urn:li:dataPlatform:tableau" - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER" - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - } - } - }, - { - "com.linkedin.pegasus2avro.dataset.DatasetProperties": { - "customProperties": { - "hasExtracts": "False", - "extractLastRefreshTime": "", - "extractLastIncrementalUpdateTime": "", - "extractLastUpdateTime": "", - "type": "EmbeddedDatasource" - }, - "name": "actor+ (dvdrental)", - "tags": [] - } - }, - { - "com.linkedin.pegasus2avro.schema.SchemaMetadata": { - "schemaName": "test", - "platform": "urn:li:dataPlatform:tableau", - "version": 0, - "created": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - }, - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - }, - "hash": "", - "platformSchema": { - "com.linkedin.pegasus2avro.schema.OtherSchema": { - "rawSchema": "" - } - }, - "fields": [ - { - "fieldPath": "Address2", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Last Update", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "address", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.ArrayType": {} - } - }, - "nativeDataType": "TABLE", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "District", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "First Name", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Address", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Postal Code", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "country, city", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NullType": {} - } - }, - "nativeDataType": "UNKNOWN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:HIERARCHYFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Phone", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Last Update (Address)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Address Id", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Actor Id", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "actor", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.ArrayType": {} - } - }, - "nativeDataType": "TABLE", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Last Name", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "City Id", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - }, - { - "tag": "urn:li:tag:SUM" - } - ] - }, - "isPartOfKey": false - } - ] - } - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,618c87db-5959-338b-bcc7-6f5f4cc0b6c6,PROD)", - "changeType": "UPSERT", - "aspectName": "subTypes", - "aspect": { - "value": "{\"typeNames\": [\"Embedded Data Source\"]}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,618c87db-5959-338b-bcc7-6f5f4cc0b6c6,PROD)", - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:fad3de4b86519c3edeb685215fe0bab1\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD)", - "changeType": "UPSERT", - "aspectName": "upstreamLineage", - "aspect": { - "value": "{\"upstreams\": [{\"auditStamp\": {\"time\": 0, \"actor\": \"urn:li:corpuser:unknown\"}, \"dataset\": \"urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD)\", \"type\": \"TRANSFORMED\"}]}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { - "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.DataPlatformInstance": { - "platform": "urn:li:dataPlatform:tableau" - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER" - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - } - } - }, - { - "com.linkedin.pegasus2avro.dataset.DatasetProperties": { - "customProperties": { - "hasExtracts": "False", - "extractLastRefreshTime": "", - "extractLastIncrementalUpdateTime": "", - "extractLastUpdateTime": "", - "type": "EmbeddedDatasource" - }, - "name": "Superstore Datasource", - "tags": [] - } - }, - { - "com.linkedin.pegasus2avro.schema.SchemaMetadata": { - "schemaName": "test", - "platform": "urn:li:dataPlatform:tableau", - "version": 0, - "created": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - }, - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - }, - "hash": "", - "platformSchema": { - "com.linkedin.pegasus2avro.schema.OtherSchema": { - "rawSchema": "" - } - }, - "fields": [ - { - "fieldPath": "Region (People)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NullType": {} - } - }, - "nativeDataType": "UNKNOWN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DATASOURCEFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Product ID", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NullType": {} - } - }, - "nativeDataType": "UNKNOWN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DATASOURCEFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Profit", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NullType": {} - } - }, - "nativeDataType": "UNKNOWN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DATASOURCEFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Product", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NullType": {} - } - }, - "nativeDataType": "UNKNOWN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DATASOURCEFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Sub-Category", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NullType": {} - } - }, - "nativeDataType": "UNKNOWN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DATASOURCEFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Row ID", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NullType": {} - } - }, - "nativeDataType": "UNKNOWN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DATASOURCEFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Order ID", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NullType": {} - } - }, - "nativeDataType": "UNKNOWN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DATASOURCEFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Customer ID", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NullType": {} - } - }, - "nativeDataType": "UNKNOWN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DATASOURCEFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Ship Mode", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NullType": {} - } - }, - "nativeDataType": "UNKNOWN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DATASOURCEFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "People", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NullType": {} - } - }, - "nativeDataType": "UNKNOWN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DATASOURCEFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Order ID (Returns)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NullType": {} - } - }, - "nativeDataType": "UNKNOWN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DATASOURCEFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "City", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NullType": {} - } - }, - "nativeDataType": "UNKNOWN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DATASOURCEFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Sales", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NullType": {} - } - }, - "nativeDataType": "UNKNOWN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DATASOURCEFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Region", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NullType": {} - } - }, - "nativeDataType": "UNKNOWN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DATASOURCEFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Quantity", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NullType": {} - } - }, - "nativeDataType": "UNKNOWN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DATASOURCEFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Ship Date", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NullType": {} - } - }, - "nativeDataType": "UNKNOWN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DATASOURCEFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Orders", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NullType": {} - } - }, - "nativeDataType": "UNKNOWN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DATASOURCEFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Profit Ratio", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NullType": {} - } - }, - "nativeDataType": "UNKNOWN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DATASOURCEFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Returns", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NullType": {} - } - }, - "nativeDataType": "UNKNOWN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DATASOURCEFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Manufacturer", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NullType": {} - } - }, - "nativeDataType": "UNKNOWN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DATASOURCEFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Location", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NullType": {} - } - }, - "nativeDataType": "UNKNOWN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DATASOURCEFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Returned", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NullType": {} - } - }, - "nativeDataType": "UNKNOWN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DATASOURCEFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Category", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NullType": {} - } - }, - "nativeDataType": "UNKNOWN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DATASOURCEFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Regional Manager", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NullType": {} - } - }, - "nativeDataType": "UNKNOWN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DATASOURCEFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Postal Code", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NullType": {} - } - }, - "nativeDataType": "UNKNOWN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DATASOURCEFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Profit (bin)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NullType": {} - } - }, - "nativeDataType": "UNKNOWN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DATASOURCEFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Segment", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NullType": {} - } - }, - "nativeDataType": "UNKNOWN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DATASOURCEFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Top Customers by Profit", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NullType": {} - } - }, - "nativeDataType": "UNKNOWN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DATASOURCEFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Country/Region", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NullType": {} - } - }, - "nativeDataType": "UNKNOWN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DATASOURCEFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Discount", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NullType": {} - } - }, - "nativeDataType": "UNKNOWN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DATASOURCEFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Order Date", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NullType": {} - } - }, - "nativeDataType": "UNKNOWN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DATASOURCEFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Product Name", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NullType": {} - } - }, - "nativeDataType": "UNKNOWN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DATASOURCEFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Customer Name", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NullType": {} - } - }, - "nativeDataType": "UNKNOWN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DATASOURCEFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "State", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NullType": {} - } - }, - "nativeDataType": "UNKNOWN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DATASOURCEFIELD" - } - ] - }, - "isPartOfKey": false - } - ] - } - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD)", - "changeType": "UPSERT", - "aspectName": "subTypes", - "aspect": { - "value": "{\"typeNames\": [\"Embedded Data Source\"]}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD)", - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:fad3de4b86519c3edeb685215fe0bab1\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD)", - "changeType": "UPSERT", - "aspectName": "upstreamLineage", - "aspect": { - "value": "{\"upstreams\": [{\"auditStamp\": {\"time\": 0, \"actor\": \"urn:li:corpuser:unknown\"}, \"dataset\": \"urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.task,PROD)\", \"type\": \"TRANSFORMED\"}, {\"auditStamp\": {\"time\": 0, \"actor\": \"urn:li:corpuser:unknown\"}, \"dataset\": \"urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sc_request,PROD)\", \"type\": \"TRANSFORMED\"}, {\"auditStamp\": {\"time\": 0, \"actor\": \"urn:li:corpuser:unknown\"}, \"dataset\": \"urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sc_req_item,PROD)\", \"type\": \"TRANSFORMED\"}, {\"auditStamp\": {\"time\": 0, \"actor\": \"urn:li:corpuser:unknown\"}, \"dataset\": \"urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sc_cat_item,PROD)\", \"type\": \"TRANSFORMED\"}]}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { - "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.DataPlatformInstance": { - "platform": "urn:li:dataPlatform:tableau" - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER" - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - } - } - }, - { - "com.linkedin.pegasus2avro.dataset.DatasetProperties": { - "customProperties": { - "hasExtracts": "True", - "extractLastRefreshTime": "2018-01-18T19:35:39Z", - "extractLastIncrementalUpdateTime": "", - "extractLastUpdateTime": "2018-01-18T19:35:39Z", - "type": "EmbeddedDatasource" - }, - "name": "Requests", - "tags": [] - } - }, - { - "com.linkedin.pegasus2avro.schema.SchemaMetadata": { - "schemaName": "test", - "platform": "urn:li:dataPlatform:tableau", - "version": 0, - "created": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - }, - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - }, - "hash": "", - "platformSchema": { - "com.linkedin.pegasus2avro.schema.OtherSchema": { - "rawSchema": "" - } - }, - "fields": [ - { - "fieldPath": "Closed by (Request)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Location", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Opened", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Mobile Picture", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Delivery task", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "% made SLA", - "nullable": false, - "description": "formula: // This is a calculated field\r\n// It shows the percentage of requests which made SLA\r\n\r\nCOUNTD(IF [Made SLA]= TRUE\r\nTHEN [Number]\r\nEND)\r\n/\r\nCOUNTD([Number])", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Meta", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Correlation ID (Request)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Domain Path (Requested Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Work notes (Requested Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Domain", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Short description", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Domain Path (Request)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Updated by (Requested Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Additional comments (Requested Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Recurring price", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Duration (Request)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Contact type", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Total # Request", - "nullable": false, - "description": "formula: // This is a calculated field\r\n// It shows the total number of problems ignoring opened date\r\n\r\n{ EXCLUDE [Opened]: COUNTD([Number])}", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - }, - { - "tag": "urn:li:tag:ATTRIBUTE" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Requested for date", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.DateType": {} - } - }, - "nativeDataType": "DATE", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Upon approval", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Ordered item link", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Visible elsewhere", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "BOOLEAN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Price", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Updated (Requested Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Recurring Price Frequency (Catalog Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Correlation display (Requested Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Order (Request)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Group list", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Update name", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Special instructions", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Execution Plan", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Visible on Bundles", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "BOOLEAN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Approval set (Requested Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "No search", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "BOOLEAN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Active (Request)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "BOOLEAN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Configuration item (Requested Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Due date", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "List Price", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Company (Requested Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Additional assignee list", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Expected start (Requested Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Task type (Requested Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Description (Catalog Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Escalation (Requested Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Customer update", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "BOOLEAN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Time worked", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Price (Catalog Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Approval (Requested Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Due date (Request)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Order Guide", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Package", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Watch list (Request)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Delivery plan (Request)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Parent (Request)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Urgency", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Delivery address", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Domain (Requested Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Work notes list (Request)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Estimated Delivery", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Activity due (Requested Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Model", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Billable", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "BOOLEAN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Created (Requested Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Opened by (Requested Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Recurring Price Frequency", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Recurring Price", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Fulfillment group", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Name", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Additional comments (Request)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Created (Request)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Work notes (Request)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Parent", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Opened by (Request)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Backordered", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "BOOLEAN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "No cart", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "BOOLEAN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Ignore price", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "BOOLEAN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Follow up (Request)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Number (Requested Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Approval set (Request)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Priority", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - }, - { - "tag": "urn:li:tag:SUM" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Opened (Request)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Correlation ID (Requested Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Created by", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Short description (Requested Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Close notes (Request)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Duration (Requested Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Overdue", - "nullable": false, - "description": "formula: // This is a calculated field\r\n// It shows if an accident is overdue\r\n\r\n//Check overdue cases among inactive incidents\r\nIF [Active]=FALSE \r\nAND\r\n[Closed]>[Due date]\r\n\r\nOR\r\n//Check overdue cases among active incidents\r\n[Active]=TRUE \r\nAND NOW()>[Due date]\r\n\r\nTHEN \"Overdue\"\r\nELSE \"Non Overdue\"\r\nEND", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Task type", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Location (Catalog Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Measure Names", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Upon approval (Requested Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Cart", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Contact type (Request)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Assigned to (Request)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Replace on upgrade", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "BOOLEAN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Impact (Requested Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Additional assignee list (Request)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Context", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Order (Catalog Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Priority (Request)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Correlation display (Request)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Requested for", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Configuration item (Request)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "No order", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "BOOLEAN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Billable (Catalog Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "BOOLEAN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Created (Catalog Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Upon reject", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Assignment group (Requested Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Sys ID (Catalog Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Updated", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "No quantity", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "BOOLEAN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Mobile Picture Type", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Quantity", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Delivery plan", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Business duration (Request)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Protection policy", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Follow up", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Location (Requested Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Omit price in cart", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "BOOLEAN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Catalogs", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Urgency (Requested Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "User input (Requested Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Updates (Catalog Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Work notes", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Entitlement script", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Follow up (Requested Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Company", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Work start (Requested Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Published version", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Preview link", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Updates (Requested Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Updates", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Closed (Request)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Assignment group (Request)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Comments and Work notes", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Price (Requested Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Active (Catalog Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "BOOLEAN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Stage (Requested Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Visible on Guides", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "BOOLEAN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Active", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "BOOLEAN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Configuration item (Requested Item) 1", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Due date (Requested Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Assigned to", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Escalation (Request)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Updated (Catalog Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Created", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Type", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Category", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Delivery time", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Item", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Expected start (Request)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Expected start", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Updated (Request)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Stage", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Delivery task (Requested Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Request", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Description (Requested Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Created by (Request)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Active (Requested Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "BOOLEAN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Short description (Request)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Correlation display", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Reassignment count (Requested Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Work end", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Current Year Total Cases", - "nullable": false, - "description": "formula: // This is a calculated field\r\n// It counts each distinct request made in the last year. The \"exclude\" is used to avoid filters interfering in the final result\r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Max Year?]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - }, - { - "tag": "urn:li:tag:ATTRIBUTE" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Approval", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Close notes", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Updates (Request)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Closed by", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Delivery plan (Requested Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Resolve Time", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Business duration", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Max Year?", - "nullable": false, - "description": "formula: // This is a calculated field\r\n// It shows TRUE/FALSE if the year of opened is equal the maximum year in the dataset\r\n\r\nDATEPART(\"year\", [Opened]) = DATEPART(\"year\", {MAX([Opened])})", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "BOOLEAN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Updated by (Catalog Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Task type (Request)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Time worked (Request)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Comments and Work notes (Request)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Time worked (Requested Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Contact type (Requested Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Additional assignee list (Requested Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Approval history", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "State", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Group list (Request)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Made SLA", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "BOOLEAN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Knowledge (Requested Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "BOOLEAN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Icon", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "User input (Request)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Display name", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Business service (Requested Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Reassignment count", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Number (Request)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Duration", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Escalation", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Comments and Work notes (Requested Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Number of Records", - "nullable": false, - "description": "formula: 1", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Work start (Request)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Close notes (Requested Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "State (Request)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Description (Request)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "State (Requested Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "No proceed checkout", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "BOOLEAN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Measure Values", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Watch list (Requested Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "SLA due (Requested Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Impact (Request)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Updated by", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Sys ID (Request)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Closed (Requested Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Activity due (Request)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Use cart layout", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "BOOLEAN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "No order now", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "BOOLEAN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "SLA due (Request)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Application", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "User input", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Additional comments", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Approval (Request)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Reassignment count (Request)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Template", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Urgency (Request)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Catalog", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Image", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Knowledge", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "BOOLEAN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Impact", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Created by (Requested Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Priority (Requested Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Updated by (Request)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Approval history (Request)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Made SLA (Requested Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "BOOLEAN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "% of Overdue", - "nullable": false, - "description": "formula: // This is a calculated field\r\n// It shows the percentage of incidents which are overdue\r\n\r\n(IF ATTR([Overdue]= \"Overdue\")\r\nTHEN COUNTD([Number])\r\nEND)\r\n/\r\nATTR({ EXCLUDE [Overdue]:\r\nCOUNTD([Number])})", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Workflow", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Location (Request)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Class", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Created from item design", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Business service", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Upon approval (Request)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Knowledge (Request)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "BOOLEAN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Migrated Data", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.ArrayType": {} - } - }, - "nativeDataType": "TABLE", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Parent (Requested Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Company (Request)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Assigned to (Requested Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Closed by (Requested Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Roles", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "SLA due", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Short description (Catalog Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Hide price (mobile listings)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "BOOLEAN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Work start", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Business duration (Requested Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Assignment group", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Upon reject (Requested Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Availability", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Vendor", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Work notes list", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Picture", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Group list (Requested Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Work notes list (Requested Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Opened by", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Watch list", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Upon reject (Request)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Delivery plan script", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Order (Requested Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Work end (Requested Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Sys ID", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Opened (Requested Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Made SLA (Request)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "BOOLEAN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Approval set", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Approval history (Requested Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Sys ID (Requested Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Work end (Request)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Total Active Requests", - "nullable": false, - "description": "formula: // This is a calculated field\r\n// It counts each distinct active request. The \"exclude\" is used to avoid filters interfering with the final result \r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Active]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - }, - { - "tag": "urn:li:tag:ATTRIBUTE" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Delivery task (Request)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Start closed", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "BOOLEAN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Domain (Request)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Correlation ID", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Number", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Closed", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Request state", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Business service (Request)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Configuration item", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Description", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Activity due", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Cost", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Domain Path", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Order", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Created by (Catalog Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - } - ] - } - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD)", - "changeType": "UPSERT", - "aspectName": "subTypes", - "aspect": { - "value": "{\"typeNames\": [\"Embedded Data Source\"]}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD)", - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD)", - "changeType": "UPSERT", - "aspectName": "upstreamLineage", - "aspect": { - "value": "{\"upstreams\": [{\"auditStamp\": {\"time\": 0, \"actor\": \"urn:li:corpuser:unknown\"}, \"dataset\": \"urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.task,PROD)\", \"type\": \"TRANSFORMED\"}, {\"auditStamp\": {\"time\": 0, \"actor\": \"urn:li:corpuser:unknown\"}, \"dataset\": \"urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sys_user_group,PROD)\", \"type\": \"TRANSFORMED\"}, {\"auditStamp\": {\"time\": 0, \"actor\": \"urn:li:corpuser:unknown\"}, \"dataset\": \"urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.problem,PROD)\", \"type\": \"TRANSFORMED\"}]}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { - "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.DataPlatformInstance": { - "platform": "urn:li:dataPlatform:tableau" - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER" - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - } - } - }, - { - "com.linkedin.pegasus2avro.dataset.DatasetProperties": { - "customProperties": { - "hasExtracts": "True", - "extractLastRefreshTime": "2018-01-18T20:21:33Z", - "extractLastIncrementalUpdateTime": "", - "extractLastUpdateTime": "2018-01-18T20:21:33Z", - "type": "EmbeddedDatasource" - }, - "name": "Problems", - "tags": [] - } - }, - { - "com.linkedin.pegasus2avro.schema.SchemaMetadata": { - "schemaName": "test", - "platform": "urn:li:dataPlatform:tableau", - "version": 0, - "created": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - }, - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - }, - "hash": "", - "platformSchema": { - "com.linkedin.pegasus2avro.schema.OtherSchema": { - "rawSchema": "" - } - }, - "fields": [ - { - "fieldPath": "SLA due (Problem)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Reassignment count", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Active (Group)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "BOOLEAN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Expected start", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Expected start (Problem)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Description", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Impact", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Location (Problem)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Created by (Group)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Time worked", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Active (Problem)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "BOOLEAN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Duration", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Default assignee", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Updates", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Workaround", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Overdue", - "nullable": false, - "description": "formula: // This is a calculated field\r\n// It checks if an incident is overdue\r\n\r\n//Check overdue cases among inactive incidents\r\n{ FIXED [Number]:\r\n\r\nIF MAX([Active]=FALSE) \r\nAND\r\nmax([Closed])> max([Due date])\r\n\r\nOR\r\n//Check overdue cases among active incidents\r\nMAX([Active]=TRUE) \r\nAND NOW()> MAX([Due date]) \r\n\r\nTHEN \"Overdue\"\r\nEND\r\n}", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Domain Path", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Number", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Approval", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Created by (Problem)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Closed by (Problem)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Approval set", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Short description (Problem)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Updated by (Problem)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Sys ID (Problem)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Work notes (Problem)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Escalation", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Migrated Data", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.ArrayType": {} - } - }, - "nativeDataType": "TABLE", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Correlation display", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Business service", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Knowledge", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "BOOLEAN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Comments and Work notes (Problem)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Delivery task (Problem)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Delivery task", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Work notes list (Problem)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Work notes list", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Opened by (Problem)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Parent (Problem)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Escalation (Problem)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "u", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Due date", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Time Span Breakdown", - "nullable": false, - "description": "formula: // This is a calculated field\r\n// It groups problems accordingly with their ages\r\n\r\nIF [Age of Problems]< 2592000\r\nTHEN \"Under 30 d\"\r\nELSEIF [Age of Problems] > 7776000\r\nTHEN \"+ than 90d\"\r\nELSE \" 30-90 d\"\r\nEND", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Activity due", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Made SLA (Problem)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "BOOLEAN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Business duration", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "u_", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Change request", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Close notes (Problem)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Correlation display (Problem)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Approval set (Problem)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Upon approval (Problem)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Follow up (Problem)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Updates (Problem)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Assigned to (Problem)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "% of Overdue", - "nullable": false, - "description": "formula: // This is a calculated field\r\n// It shows the percentage of incidents that are overdue\r\n\r\nIFNULL((IF ATTR([Overdue]= \"Overdue\")\r\nTHEN COUNTD([Number])\r\nEND),0)\r\n/\r\nATTR({ EXCLUDE [Overdue]:\r\nCOUNTD([Number])})", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Sys ID (Group)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Updated (Problem)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Approval (Problem)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Time worked (Problem)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Assignment group", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "SLA due", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Created", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Created by", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Cost center", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Delivery plan (Problem)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Domain (Problem)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Activity due (Problem)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Group list", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Roles", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Total # Problems", - "nullable": false, - "description": "formula: // This is a calculated field using a level of detail calculation (LOD)\r\n// It counts each distinct problems ignoring date\r\n\r\n{ EXCLUDE [Opened]: COUNTD([Number])}", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - }, - { - "tag": "urn:li:tag:ATTRIBUTE" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Additional comments", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Duration (Problem)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Updated by", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Domain Path (Problem)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Parent (Group)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Watch list", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Due date (Problem)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Business duration (Problem)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Urgency (Problem)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Correlation ID", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Work start (Problem)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Contact type", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Urgency", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Number of Records", - "nullable": false, - "description": "formula: 1", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Opened (Problem)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Sys ID", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Manager", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Exclude manager", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "BOOLEAN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Lucha", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Task type", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Made SLA", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "BOOLEAN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Priority (Problem)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Description (Group)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Created (Problem)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Order (Problem)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Company", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Problems with Related Incidents", - "nullable": false, - "description": "formula: // This is a calculated field\r\n// It counts each distinct problems which has a related incident\r\n\r\nCOUNT(IF ([Related Incidents]>0\r\nAND NOT ISNULL([Related Incidents]))=true\r\nTHEN [Number]\r\nEND)", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Follow up", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "User input (Problem)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Name", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Parent", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Related Incidents", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Watch list (Problem)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Updated", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "State (Problem)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Closed by", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Task type (Problem)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Group list (Problem)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Opened", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "User input", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Source", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Closed (Problem)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Opened by", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Work start", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Additional assignee list (Problem)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "% of known error", - "nullable": false, - "description": "formula: // This is a calculated field\r\n// It shows the percentage of problems that are known errors\r\n\r\nCOUNTD(IF [Known error]=TRUE\r\nTHEN [Number] END)\r\n/\r\nCOUNTD([Number])", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Work end", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Problem state", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Upon approval", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Domain", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Reassignment count (Problem)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Contact type (Problem)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Upon reject (Problem)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Close notes", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Max Year?", - "nullable": false, - "description": "formula: // This is a calculated field\r\n// It shows TRUE/FALSE if the year of opened is equal the max year of the dataset \r\n\r\nDATEPART(\"year\", [Opened]) = DATEPART(\"year\", {MAX([Opened])})", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "BOOLEAN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Configuration item (Problem)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Short description", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Company (Problem)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Work notes", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Delivery plan", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Additional comments (Problem)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Knowledge (Problem)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "BOOLEAN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Known error", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "BOOLEAN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Group email", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Age of Problems", - "nullable": false, - "description": "formula: //Calculates the age of active problems since opened until now\r\n\r\nDATEDIFF('second', [Opened], NOW())", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Priority", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - }, - { - "tag": "urn:li:tag:SUM" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Comments and Work notes", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Measure Values", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Approval history", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Assigned to", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Impact (Problem)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Updated (Group)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "% of critical and high priority", - "nullable": false, - "description": "formula: // This is a calculated field\r\n// It shows the percentage of critical or high priority problems\r\n\r\nCOUNTD(IF [Priority]=1\r\nOR [Priority]=2\r\nTHEN [Number]\r\nEND)\r\n/\r\nCOUNTD([Number])", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Closed", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Configuration item", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Business service (Problem)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Additional assignee list", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Include members", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "BOOLEAN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Order", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Measure Names", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Location", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Description (Problem)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Current Year Total Cases", - "nullable": false, - "description": "formula: // This is a calculated field\r\n// It counts each disctinct problem. The \"exclude\" is used to avoid filters interfering with the result\r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Max Year?]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - }, - { - "tag": "urn:li:tag:ATTRIBUTE" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Created (Group)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Updated by (Group)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Number (Problem)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "State", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Approval history (Problem)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Type", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Work end (Problem)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Upon reject", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Correlation ID (Problem)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Assignment group (Problem)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Total Active Problems", - "nullable": false, - "description": "formula: // This is a calculated field using a level of detail calculation (LOD)\r\n// It counts each distinct active problem. The \"exclude\" is used to avoid filters interfering with the result \r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Active]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - }, - { - "tag": "urn:li:tag:ATTRIBUTE" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Active", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "BOOLEAN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Updates (Group)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - } - ] - } - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD)", - "changeType": "UPSERT", - "aspectName": "subTypes", - "aspect": { - "value": "{\"typeNames\": [\"Embedded Data Source\"]}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD)", - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)", - "changeType": "UPSERT", - "aspectName": "upstreamLineage", - "aspect": { - "value": "{\"upstreams\": [{\"auditStamp\": {\"time\": 0, \"actor\": \"urn:li:corpuser:unknown\"}, \"dataset\": \"urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.incident,PROD)\", \"type\": \"TRANSFORMED\"}, {\"auditStamp\": {\"time\": 0, \"actor\": \"urn:li:corpuser:unknown\"}, \"dataset\": \"urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.task,PROD)\", \"type\": \"TRANSFORMED\"}, {\"auditStamp\": {\"time\": 0, \"actor\": \"urn:li:corpuser:unknown\"}, \"dataset\": \"urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.cmdb_ci,PROD)\", \"type\": \"TRANSFORMED\"}]}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { - "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.DataPlatformInstance": { - "platform": "urn:li:dataPlatform:tableau" - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER" - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - } - } - }, - { - "com.linkedin.pegasus2avro.dataset.DatasetProperties": { - "customProperties": { - "hasExtracts": "True", - "extractLastRefreshTime": "2018-01-18T20:13:08Z", - "extractLastIncrementalUpdateTime": "", - "extractLastUpdateTime": "2018-01-18T20:13:08Z", - "type": "EmbeddedDatasource" - }, - "name": "Incidents", - "tags": [] - } - }, - { - "com.linkedin.pegasus2avro.schema.SchemaMetadata": { - "schemaName": "test", - "platform": "urn:li:dataPlatform:tableau", - "version": 0, - "created": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - }, - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - }, - "hash": "", - "platformSchema": { - "com.linkedin.pegasus2avro.schema.OtherSchema": { - "rawSchema": "" - } - }, - "fields": [ - { - "fieldPath": "Assignment group", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Closed (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Updates (Configuration Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Attributes", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "User input", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "User input (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Short description (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Close notes", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Escalation (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Impact", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Close code (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Migrated Data", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.ArrayType": {} - } - }, - "nativeDataType": "TABLE", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Delivery task (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Created by", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Updated by (Configuration Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Expected start", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Status", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Notify (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Due", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Closed by", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Upon approval", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Requires verification", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "BOOLEAN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Maintenance schedule", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Escalation", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Updates (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Parent", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Domain Path (Configuration Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Location (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Upon reject", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Warranty expiration", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.DateType": {} - } - }, - "nativeDataType": "DATE", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "GL account", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Additional assignee list (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Opened by", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Work notes", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Additional assignee list", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Work notes (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Company", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Knowledge", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "BOOLEAN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Made SLA", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "BOOLEAN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "First discovered", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Approval history (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Asset", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "% of Overdue", - "nullable": false, - "description": "formula: // This is a calculated field\r\n// It show the percentage incidents which are overdue\r\n\r\n(IF ATTR([Overdue]=\"Overdue\")\r\nTHEN COUNTD([Number])\r\nEND)\r\n/\r\nATTR({ EXCLUDE [Overdue]:\r\nCOUNTD([Number])})", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Work start", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Domain", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "SLA due", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Group list (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Priority", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - }, - { - "tag": "urn:li:tag:SUM" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Duration (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Assigned to (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Skip sync", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "BOOLEAN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "DNS Domain", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Updated", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Caller (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Department", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Resolved by (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Correlation ID (Configuration Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Opened (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Current Year Total Cases", - "nullable": false, - "description": "formula: // This is a calculated field using level of detail calculation\r\n// It counts each distinct incident. The exclude is used to guarantee that filters will not interfere in the result\r\n\r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Max Year?]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - }, - { - "tag": "urn:li:tag:ATTRIBUTE" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Close notes (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Managed by", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Measure Names", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Model number", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Created by (Configuration Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Created", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Assignment group (Configuration Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Location", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "PO number", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Short description", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Business resolve time (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Child Incidents (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "IP Address", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Created (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Configuration item", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Order (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Asset tag", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Due in", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Updated by", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Manufacturer", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Correlation display", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Business duration", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Business service", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Checked out", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Category (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Fully qualified domain name", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Installed", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Order", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Purchased", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.DateType": {} - } - }, - "nativeDataType": "DATE", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Lease contract", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Vendor", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Overdue", - "nullable": false, - "description": "formula: // This is a calculated field\r\n// It shows if an incident is overdue\r\n\r\n//Check overdue cases among inactive incidents\r\n{ FIXED [Number]:\r\n\r\nIF MAX([Active]=FALSE) \r\nAND\r\nmax([Closed])>max([Due date])\r\n\r\nOR\r\n//Check overdue cases among active incidents\r\nMAX([Active] = TRUE) \r\nAND NOW() > MAX([Due date]) \r\n\r\nTHEN \"Overdue\"\r\nEND\r\n}", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Due date (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Additional comments", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Approval history", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Category (Configuration Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Parent Incident (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Updated (Configuration Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Cost currency", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "SLA due (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Impact (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Approval (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Subcategory (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Opened by (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Activity due (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Comments and Work notes", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Cost", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Reassignment count (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Urgency (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Monitor", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "BOOLEAN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Watch list", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Approval set", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Time worked", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Serial number", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Model ID", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Parent (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Time to Close an Incident (seconds)", - "nullable": false, - "description": "formula: // This is a calculated field\r\n// It calculates the difference in seconds between opening and closing an incident\r\n\r\n// Check if closed date is valid\r\nIF [Closed]>[Opened]\r\nTHEN\r\n//Calculate difference\r\nDATEDIFF('second', [Opened], [Closed])\r\nEND", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Owned by", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Activity due", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Invoice number", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Updated by (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Approval set (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Duration", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Start date", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Ordered", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Assigned to", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Follow up", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Business duration (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Order received", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Discovery source", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Closed by (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Work notes list", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Total Active Incidents", - "nullable": false, - "description": "formula: // This is a calculated field\r\n// It counts each distinct incident. The \"exclude\" is used to avoid filters interfering in the final result\r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Active]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - }, - { - "tag": "urn:li:tag:ATTRIBUTE" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Number", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Class", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Description (Configuration Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Operational status", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Expected start (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Work notes list (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Opened", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Resolve time (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Reopen count (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Created by (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Assigned to (Configuration Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Most recent discovery", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Domain (Configuration Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Upon reject (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Work end", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Company (Configuration Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Knowledge (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "BOOLEAN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Max Year?", - "nullable": false, - "description": "formula: // This is a calculated field\r\n// It shows TRUE/FALSE if opened date equals maximum year in the dataset\r\n\r\nDATEPART(\"year\", [Opened]) = DATEPART(\"year\", {MAX([Opened])})", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "BOOLEAN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Location (Configuration Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Watch list (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Delivery task", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Fault count", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Caused by Change (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Updated (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Sys ID (Configuration Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "MAC Address", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Name", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Approval group", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Approval", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Priority (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Urgency", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Delivery plan (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Company (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Additional comments (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Business service (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Schedule", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Sys ID (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Supported by", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Configuration item (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Task type", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Support group", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Active (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "BOOLEAN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Correlation display (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Justification", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Change Request (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Updates", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Incident state (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Domain (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Made SLA (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "BOOLEAN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Opened Month Tooltip", - "nullable": false, - "description": "formula: // This is an IF statment using the opened field to allow for different formats\r\n// original used on columns for line charts are formatted in starting letter of month i.e. J for January\r\n// This version formats to full month name for the tooltip \r\n\r\n\r\n// The IF statement names the month based on the month number of the datefield\r\nIF DATEPART('month', [Opened]) = 1 THEN 'January'\r\nELSEIF DATEPART('month', [Opened]) = 2 THEN 'February'\r\nELSEIF DATEPART('month', [Opened]) = 3 THEN 'March'\r\nELSEIF DATEPART('month', [Opened]) = 4 THEN 'April'\r\nELSEIF DATEPART('month', [Opened]) = 5 THEN 'May'\r\nELSEIF DATEPART('month', [Opened]) = 6 THEN 'June'\r\nELSEIF DATEPART('month', [Opened]) = 7 THEN 'July'\r\nELSEIF DATEPART('month', [Opened]) = 8 THEN 'August'\r\nELSEIF DATEPART('month', [Opened]) = 9 THEN 'September'\r\nELSEIF DATEPART('month', [Opened]) = 10 THEN 'October'\r\nELSEIF DATEPART('month', [Opened]) = 11 THEN 'Novemeber'\r\nELSEIF DATEPART('month', [Opened]) = 12 THEN 'December'\r\nELSE NULL\r\nEND", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Problem (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Measure Values", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Group list", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Checked in", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Severity (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Number of Records", - "nullable": false, - "description": "formula: 1", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Time worked (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Cost center", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Work end (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Domain Path", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Due date", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Contact type", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Created (Configuration Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Delivery plan", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Subcategory (Configuration Item)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Description", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Sys ID", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Comments and Work notes (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Can Print", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "BOOLEAN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Active", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "BOOLEAN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Correlation ID (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Number (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Follow up (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Task type (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Domain Path (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Closed", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Description (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Reassignment count", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Contact type (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Assignment group (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Comments", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "State", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Work start (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Correlation ID", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "State (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Resolved (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Assigned", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Time to Close an Incident", - "nullable": false, - "description": "formula: // This is a calculated field\r\n// It transforms time in seconds into DD:HH:MM:SS format\r\nSTR(INT(AVG([Time to Close an Incident (seconds)])/86400)) \r\n \r\n+ \" day(s) \" + \r\n \r\nIF (INT(AVG([Time to Close an Incident (seconds)])%86400/3600)) \r\n< 10 THEN \"0\" ELSE \"\" END + STR(INT(AVG([Time to Close an Incident (seconds)])%86400/3600))\r\n \r\n+ \":\" + \r\n \r\nIF INT(AVG([Time to Close an Incident (seconds)])%3600/60) \r\n< 10 THEN \"0\" ELSE \"\" END + STR(INT(AVG([Time to Close an Incident (seconds)])%3600/60)) \r\n \r\n \r\n+ \":\" + \r\n \r\nIF INT(AVG([Time to Close an Incident (seconds)]) %3600 %60) \r\n< 10 THEN \"0\" ELSE \"\" END + STR(INT(AVG([Time to Close an Incident (seconds)]) %3600 %60))", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Upon approval (Incident)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - } - ] - } - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)", - "changeType": "UPSERT", - "aspectName": "subTypes", - "aspect": { - "value": "{\"typeNames\": [\"Embedded Data Source\"]}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)", - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD)", - "changeType": "UPSERT", - "aspectName": "upstreamLineage", - "aspect": { - "value": "{\"upstreams\": [{\"auditStamp\": {\"time\": 0, \"actor\": \"urn:li:corpuser:unknown\"}, \"dataset\": \"urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD)\", \"type\": \"TRANSFORMED\"}]}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { - "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.DataPlatformInstance": { - "platform": "urn:li:dataPlatform:tableau" - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER" - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - } - } - }, - { - "com.linkedin.pegasus2avro.dataset.DatasetProperties": { - "customProperties": { - "hasExtracts": "False", - "extractLastRefreshTime": "", - "extractLastIncrementalUpdateTime": "", - "extractLastUpdateTime": "", - "type": "EmbeddedDatasource" - }, - "name": "test publish datasource", - "tags": [] - } - }, - { - "com.linkedin.pegasus2avro.schema.SchemaMetadata": { - "schemaName": "test", - "platform": "urn:li:dataPlatform:tableau", - "version": 0, - "created": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - }, - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - }, - "hash": "", - "platformSchema": { - "com.linkedin.pegasus2avro.schema.OtherSchema": { - "rawSchema": "" - } - }, - "fields": [ - { - "fieldPath": "customer_id", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NullType": {} - } - }, - "nativeDataType": "UNKNOWN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DATASOURCEFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Custom SQL Query", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NullType": {} - } - }, - "nativeDataType": "UNKNOWN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DATASOURCEFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "staff_last_name", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NullType": {} - } - }, - "nativeDataType": "UNKNOWN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DATASOURCEFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "staff_first_name", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NullType": {} - } - }, - "nativeDataType": "UNKNOWN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DATASOURCEFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "customer_last_name", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NullType": {} - } - }, - "nativeDataType": "UNKNOWN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DATASOURCEFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "amount", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NullType": {} - } - }, - "nativeDataType": "UNKNOWN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DATASOURCEFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "customer_first_name", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NullType": {} - } - }, - "nativeDataType": "UNKNOWN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DATASOURCEFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "payment_date", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NullType": {} - } - }, - "nativeDataType": "UNKNOWN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DATASOURCEFIELD" - } - ] - }, - "isPartOfKey": false - } - ] - } - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD)", - "changeType": "UPSERT", - "aspectName": "subTypes", - "aspect": { - "value": "{\"typeNames\": [\"Embedded Data Source\"]}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD)", - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { - "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.DataPlatformInstance": { - "platform": "urn:li:dataPlatform:tableau" - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER" - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - } - } - }, - { - "com.linkedin.pegasus2avro.dataset.DatasetProperties": { - "customProperties": { - "hasExtracts": "False", - "extractLastRefreshTime": "", - "extractLastIncrementalUpdateTime": "", - "extractLastUpdateTime": "", - "type": "PublishedDatasource" - }, - "name": "test publish datasource", - "description": "description for test publish datasource", - "tags": [] - } - }, - { - "com.linkedin.pegasus2avro.schema.SchemaMetadata": { - "schemaName": "test", - "platform": "urn:li:dataPlatform:tableau", - "version": 0, - "created": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - }, - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - }, - "hash": "", - "platformSchema": { - "com.linkedin.pegasus2avro.schema.OtherSchema": { - "rawSchema": "" - } - }, - "fields": [ - { - "fieldPath": "payment_date", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DATETIME", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - }, - { - "tag": "urn:li:tag:YEAR" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "staff_first_name", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - }, - { - "tag": "urn:li:tag:COUNT" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "customer_id", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - }, - { - "tag": "urn:li:tag:SUM" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "amount", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - }, - { - "tag": "urn:li:tag:SUM" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Published SQL Query", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.ArrayType": {} - } - }, - "nativeDataType": "TABLE", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "customer_last_name", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - }, - { - "tag": "urn:li:tag:COUNT" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "customer_first_name", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - }, - { - "tag": "urn:li:tag:COUNT" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "staff_last_name", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - }, - { - "tag": "urn:li:tag:COUNT" - } - ] - }, - "isPartOfKey": false - } - ] - } - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD)", - "changeType": "UPSERT", - "aspectName": "subTypes", - "aspect": { - "value": "{\"typeNames\": [\"Published Data Source\"]}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD)", - "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%2C %28new%29.xls.people,PROD)\", \"type\": \"TRANSFORMED\"}, {\"auditStamp\": {\"time\": 0, \"actor\": \"urn:li:corpuser:unknown\"}, \"dataset\": \"urn:li:dataset:(urn:li:dataPlatform:external,sample - superstore%2C %28new%29.xls.returns,PROD)\", \"type\": \"TRANSFORMED\"}, {\"auditStamp\": {\"time\": 0, \"actor\": \"urn:li:corpuser:unknown\"}, \"dataset\": \"urn:li:dataset:(urn:li:dataPlatform:external,sample - superstore%2C %28new%29.xls.orders,PROD)\", \"type\": \"TRANSFORMED\"}]}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { - "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.DataPlatformInstance": { - "platform": "urn:li:dataPlatform:tableau" - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/Samples" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER" - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - } - } - }, - { - "com.linkedin.pegasus2avro.dataset.DatasetProperties": { - "customProperties": { - "hasExtracts": "False", - "extractLastRefreshTime": "", - "extractLastIncrementalUpdateTime": "", - "extractLastUpdateTime": "", - "type": "PublishedDatasource" - }, - "name": "Superstore Datasource", - "description": "Description for Superstore dataset", - "tags": [] - } - }, - { - "com.linkedin.pegasus2avro.schema.SchemaMetadata": { - "schemaName": "test", - "platform": "urn:li:dataPlatform:tableau", - "version": 0, - "created": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - }, - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - }, - "hash": "", - "platformSchema": { - "com.linkedin.pegasus2avro.schema.OtherSchema": { - "rawSchema": "" - } - }, - "fields": [ - { - "fieldPath": "Top Customers by Profit", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NullType": {} - } - }, - "nativeDataType": "UNKNOWN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:SETFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Returns", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.ArrayType": {} - } - }, - "nativeDataType": "TABLE", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Segment", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - }, - { - "tag": "urn:li:tag:COUNT" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Profit Ratio", - "nullable": false, - "description": "formula: SUM([Profit])/SUM([Sales])", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:CALCULATEDFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "City", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Profit", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Quantity", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - }, - { - "tag": "urn:li:tag:SUM" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Returned", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - }, - { - "tag": "urn:li:tag:COUNT" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Category", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - }, - { - "tag": "urn:li:tag:COUNT" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Product Name", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Orders", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.ArrayType": {} - } - }, - "nativeDataType": "TABLE", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Product ID", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Profit (bin)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NullType": {} - } - }, - "nativeDataType": "UNKNOWN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:BINFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Order ID (Returns)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Person", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - }, - { - "tag": "urn:li:tag:COUNT" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Sub-Category", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - }, - { - "tag": "urn:li:tag:COUNT" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Postal Code", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - }, - { - "tag": "urn:li:tag:SUM" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Product", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NullType": {} - } - }, - "nativeDataType": "UNKNOWN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:HIERARCHYFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Ship Date", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.DateType": {} - } - }, - "nativeDataType": "DATE", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - }, - { - "tag": "urn:li:tag:YEAR" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Location", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NullType": {} - } - }, - "nativeDataType": "UNKNOWN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:HIERARCHYFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "People", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.ArrayType": {} - } - }, - "nativeDataType": "TABLE", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Country/Region", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Customer ID", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Region", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Ship Mode", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - }, - { - "tag": "urn:li:tag:COUNT" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Order ID", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - }, - { - "tag": "urn:li:tag:COUNT" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Sales", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - }, - { - "tag": "urn:li:tag:SUM" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Customer Name", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Row ID", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "INTEGER", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Manufacturer", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:GROUPFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Region (People)", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Discount", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "REAL", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:MEASURE" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - }, - { - "tag": "urn:li:tag:SUM" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "Order Date", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.DateType": {} - } - }, - "nativeDataType": "DATE", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - }, - { - "tag": "urn:li:tag:YEAR" - } - ] - }, - "isPartOfKey": false - }, - { - "fieldPath": "State", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STRING", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DIMENSION" - }, - { - "tag": "urn:li:tag:COLUMNFIELD" - } - ] - }, - "isPartOfKey": false - } - ] - } - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD)", - "changeType": "UPSERT", - "aspectName": "subTypes", - "aspect": { - "value": "{\"typeNames\": [\"Published Data Source\"]}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD)", - "changeType": "UPSERT", - "aspectName": "upstreamLineage", - "aspect": { - "value": "{\"upstreams\": [{\"auditStamp\": {\"time\": 0, \"actor\": \"urn:li:corpuser:unknown\"}, \"dataset\": \"urn:li:dataset:(urn:li:dataPlatform:tableau,22b0b4c3-6b85-713d-a161-5a87fdd78f40,PROD)\", \"type\": \"TRANSFORMED\"}]}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,22b0b4c3-6b85-713d-a161-5a87fdd78f40,PROD)", - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:fad3de4b86519c3edeb685215fe0bab1\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,22b0b4c3-6b85-713d-a161-5a87fdd78f40,PROD)", - "changeType": "UPSERT", - "aspectName": "upstreamLineage", - "aspect": { - "value": "{\"upstreams\": [{\"auditStamp\": {\"time\": 0, \"actor\": \"urn:li:corpuser:unknown\"}, \"dataset\": \"urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.customer,PROD)\", \"type\": \"TRANSFORMED\"}, {\"auditStamp\": {\"time\": 0, \"actor\": \"urn:li:corpuser:unknown\"}, \"dataset\": \"urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.payment,PROD)\", \"type\": \"TRANSFORMED\"}]}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { - "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,22b0b4c3-6b85-713d-a161-5a87fdd78f40,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.DataPlatformInstance": { - "platform": "urn:li:dataPlatform:tableau" - } - }, - { - "com.linkedin.pegasus2avro.schema.SchemaMetadata": { - "schemaName": "test", - "platform": "urn:li:dataPlatform:tableau", - "version": 0, - "created": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - }, - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - }, - "hash": "", - "platformSchema": { - "com.linkedin.pegasus2avro.schema.OtherSchema": { - "rawSchema": "" - } - }, - "fields": [ - { - "fieldPath": "amount", - "nullable": false, - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "NUMERIC", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "last_name", - "nullable": false, - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STR", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "rental_id", - "nullable": false, - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "I4", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "first_name", - "nullable": false, - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STR", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "payment_date", - "nullable": false, - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DBTIMESTAMP", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "customer_id", - "nullable": false, - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "I4", - "recursive": false, - "isPartOfKey": false - } - ] - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Customer Payment Query" - ] - } - }, - { - "com.linkedin.pegasus2avro.dataset.DatasetProperties": { - "customProperties": {}, - "name": "Custom SQL Query", - "tags": [] - } - }, - { - "com.linkedin.pegasus2avro.dataset.ViewProperties": { - "materialized": false, - "viewLogic": "SELECT\n\tcustomer.customer_id,\n\tfirst_name,\n\tlast_name,\n\tamount,\n\tpayment_date,\n\trental_id\nFROM\n\tcustomer\nINNER JOIN payment \n ON payment.customer_id = customer.customer_id\nwhere customer.customer_id = <[Parameters].[Parameter 1]>\nORDER BY payment_date", - "viewLanguage": "SQL" - } - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,22b0b4c3-6b85-713d-a161-5a87fdd78f40,PROD)", - "changeType": "UPSERT", - "aspectName": "subTypes", - "aspect": { - "value": "{\"typeNames\": [\"View\", \"Custom SQL\"]}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD)", - "changeType": "UPSERT", - "aspectName": "upstreamLineage", - "aspect": { - "value": "{\"upstreams\": [{\"auditStamp\": {\"time\": 0, \"actor\": \"urn:li:corpuser:unknown\"}, \"dataset\": \"urn:li:dataset:(urn:li:dataPlatform:tableau,4fb670d5-3e19-9656-e684-74aa9729cf18,PROD)\", \"type\": \"TRANSFORMED\"}]}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,4fb670d5-3e19-9656-e684-74aa9729cf18,PROD)", - "changeType": "UPSERT", - "aspectName": "upstreamLineage", - "aspect": { - "value": "{\"upstreams\": [{\"auditStamp\": {\"time\": 0, \"actor\": \"urn:li:corpuser:unknown\"}, \"dataset\": \"urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.customer,PROD)\", \"type\": \"TRANSFORMED\"}, {\"auditStamp\": {\"time\": 0, \"actor\": \"urn:li:corpuser:unknown\"}, \"dataset\": \"urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.payment,PROD)\", \"type\": \"TRANSFORMED\"}, {\"auditStamp\": {\"time\": 0, \"actor\": \"urn:li:corpuser:unknown\"}, \"dataset\": \"urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.staff,PROD)\", \"type\": \"TRANSFORMED\"}]}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { - "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,4fb670d5-3e19-9656-e684-74aa9729cf18,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.DataPlatformInstance": { - "platform": "urn:li:dataPlatform:tableau" - } - }, - { - "com.linkedin.pegasus2avro.schema.SchemaMetadata": { - "schemaName": "test", - "platform": "urn:li:dataPlatform:tableau", - "version": 0, - "created": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - }, - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - }, - "hash": "", - "platformSchema": { - "com.linkedin.pegasus2avro.schema.OtherSchema": { - "rawSchema": "" - } - }, - "fields": [ - { - "fieldPath": "customer_id", - "nullable": false, - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "I4", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "staff_first_name", - "nullable": false, - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STR", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "amount", - "nullable": false, - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "NUMERIC", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "customer_first_name", - "nullable": false, - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STR", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "payment_date", - "nullable": false, - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DBTIMESTAMP", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "staff_last_name", - "nullable": false, - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STR", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "customer_last_name", - "nullable": false, - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STR", - "recursive": false, - "isPartOfKey": false - } - ] - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/test publish datasource" - ] - } - }, - { - "com.linkedin.pegasus2avro.dataset.DatasetProperties": { - "customProperties": {}, - "name": "Custom SQL Query", - "tags": [] - } - }, - { - "com.linkedin.pegasus2avro.dataset.ViewProperties": { - "materialized": false, - "viewLogic": "SELECT\n\tc.customer_id,\n\tc.first_name customer_first_name,\n\tc.last_name customer_last_name,\n\ts.first_name staff_first_name,\n\ts.last_name staff_last_name,\n\tamount,\n\tpayment_date\nFROM\n\tcustomer c\nINNER JOIN payment p \n ON p.customer_id = c.customer_id\nINNER JOIN staff s \n ON p.staff_id = s.staff_id\nORDER BY payment_date", - "viewLanguage": "SQL" - } - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,4fb670d5-3e19-9656-e684-74aa9729cf18,PROD)", - "changeType": "UPSERT", - "aspectName": "subTypes", - "aspect": { - "value": "{\"typeNames\": [\"View\", \"Custom SQL\"]}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { - "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity6,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Marketo" - ] - } - }, - { - "com.linkedin.pegasus2avro.schema.SchemaMetadata": { - "schemaName": "test", - "platform": "urn:li:dataPlatform:tableau", - "version": 0, - "created": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - }, - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - }, - "hash": "", - "platformSchema": { - "com.linkedin.pegasus2avro.schema.OtherSchema": { - "rawSchema": "" - } - }, - "fields": [ - { - "fieldPath": "Test_Variant", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "Mailing_ID", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "Campaign_Run_ID", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "id", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "Activity_Date", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "Choice_Number", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "Step_ID", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "Campaign_ID", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "Lead_ID", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "Has_Predictive", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "isPartOfKey": false - } - ] - } - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { - "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity11,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Marketo" - ] - } - }, - { - "com.linkedin.pegasus2avro.schema.SchemaMetadata": { - "schemaName": "test", - "platform": "urn:li:dataPlatform:tableau", - "version": 0, - "created": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - }, - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - }, - "hash": "", - "platformSchema": { - "com.linkedin.pegasus2avro.schema.OtherSchema": { - "rawSchema": "" - } - }, - "fields": [ - { - "fieldPath": "Campaign_ID", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "Campaign_Run_ID", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "Link", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "Test_Variant", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "Platform", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "id", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "Activity_Date", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "Choice_Number", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "Mailing_ID", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "Step_ID", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "Lead_ID", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "Link_ID", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "Is_Predictive", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "Device", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "Is_Mobile_Device", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "User_Agent", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - } - ] - } - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { - "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity10,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Marketo" - ] - } - }, - { - "com.linkedin.pegasus2avro.schema.SchemaMetadata": { - "schemaName": "test", - "platform": "urn:li:dataPlatform:tableau", - "version": 0, - "created": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - }, - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - }, - "hash": "", - "platformSchema": { - "com.linkedin.pegasus2avro.schema.OtherSchema": { - "rawSchema": "" - } - }, - "fields": [ - { - "fieldPath": "Platform", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "Device", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "Choice_Number", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "Lead_ID", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "Activity_Date", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "Test_Variant", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "Is_Mobile_Device", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "Has_Predictive", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "Step_ID", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "User_Agent", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "Mailing_ID", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "Campaign_ID", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "Campaign_Run_ID", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "id", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - } - ] - } - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { - "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity7,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Marketo" - ] - } - }, - { - "com.linkedin.pegasus2avro.schema.SchemaMetadata": { - "schemaName": "test", - "platform": "urn:li:dataPlatform:tableau", - "version": 0, - "created": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - }, - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - }, - "hash": "", - "platformSchema": { - "com.linkedin.pegasus2avro.schema.OtherSchema": { - "rawSchema": "" - } - }, - "fields": [ - { - "fieldPath": "Test_Variant", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "Campaign_Run_ID", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "Activity_Date", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "Mailing_ID", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "Has_Predictive", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "id", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "Campaign_ID", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "Step_ID", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "Lead_ID", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "Choice_Number", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - } - ] - } - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { - "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.campaignstable,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Marketo" - ] - } - }, - { - "com.linkedin.pegasus2avro.schema.SchemaMetadata": { - "schemaName": "test", - "platform": "urn:li:dataPlatform:tableau", - "version": 0, - "created": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - }, - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - }, - "hash": "", - "platformSchema": { - "com.linkedin.pegasus2avro.schema.OtherSchema": { - "rawSchema": "" - } - }, - "fields": [ - { - "fieldPath": "programName", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "name", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "programId", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "description", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "createdAt", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "id", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "workspaceName", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "updatedAt", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "active", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "isPartOfKey": false - } - ] - } - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { - "urn": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.address,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/actor+ (dvdrental)" - ] - } - }, - { - "com.linkedin.pegasus2avro.schema.SchemaMetadata": { - "schemaName": "test", - "platform": "urn:li:dataPlatform:tableau", - "version": 0, - "created": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - }, - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - }, - "hash": "", - "platformSchema": { - "com.linkedin.pegasus2avro.schema.OtherSchema": { - "rawSchema": "" - } - }, - "fields": [ - { - "fieldPath": "postal_code", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STR", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "last_update", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DBTIMESTAMP", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "phone", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STR", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "address2", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STR", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "address", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STR", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "city_id", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "I2", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "district", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STR", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "address_id", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "I4", - "recursive": false, - "isPartOfKey": false - } - ] - } - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { - "urn": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.actor,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/actor+ (dvdrental)" - ] - } - }, - { - "com.linkedin.pegasus2avro.schema.SchemaMetadata": { - "schemaName": "test", - "platform": "urn:li:dataPlatform:tableau", - "version": 0, - "created": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - }, - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - }, - "hash": "", - "platformSchema": { - "com.linkedin.pegasus2avro.schema.OtherSchema": { - "rawSchema": "" - } - }, - "fields": [ - { - "fieldPath": "last_update", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "DBTIMESTAMP", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "last_name", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STR", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "first_name", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "STR", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "actor_id", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "I4", - "recursive": false, - "isPartOfKey": false - } - ] - } - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "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" - ] - } - }, - { - "com.linkedin.pegasus2avro.schema.SchemaMetadata": { - "schemaName": "test", - "platform": "urn:li:dataPlatform:tableau", - "version": 0, - "created": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - }, - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - }, - "hash": "", - "platformSchema": { - "com.linkedin.pegasus2avro.schema.OtherSchema": { - "rawSchema": "" - } - }, - "fields": [ - { - "fieldPath": "time_worked", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "work_notes_list", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "group_list", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "parent", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "expected_start", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "due_date", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "work_end", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "cmdb_ci", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "business_duration", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "work_start", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "closed_at", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "user_input", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "reassignment_count", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "approval", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "short_description", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "impact", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "knowledge", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "closed_by", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "calendar_duration", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "delivery_task", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sla_due", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_class_name", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "comments", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "upon_reject", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "upon_approval", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "approval_history", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_created_on", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "correlation_id", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "opened_at", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "approval_set", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "escalation", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_id", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "delivery_plan", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "comments_and_work_notes", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "close_notes", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "watch_list", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "description", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "opened_by", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "activity_due", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_updated_on", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "work_notes", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_updated_by", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "assigned_to", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "assignment_group", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "order", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_domain_path", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_mod_count", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "business_service", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "priority", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "correlation_display", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "active", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_domain", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "company", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "urgency", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "number", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "state", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "made_sla", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_created_by", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "additional_assignee_list", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "contact_type", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "location", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "follow_up", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - } - ] - } - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "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" - ] - } - }, - { - "com.linkedin.pegasus2avro.schema.SchemaMetadata": { - "schemaName": "test", - "platform": "urn:li:dataPlatform:tableau", - "version": 0, - "created": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - }, - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - }, - "hash": "", - "platformSchema": { - "com.linkedin.pegasus2avro.schema.OtherSchema": { - "rawSchema": "" - } - }, - "fields": [ - { - "fieldPath": "work_notes_list", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "closed_at", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "user_input", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "requested_for", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "opened_at", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "price", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "assigned_to", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "number", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "delivery_plan", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "delivery_address", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "business_duration", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "urgency", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "work_end", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "due_date", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "parent", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "made_sla", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "assignment_group", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_class_name", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "additional_assignee_list", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "work_start", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_domain_path", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "time_worked", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "comments_and_work_notes", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "group_list", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "business_service", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "correlation_id", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "cmdb_ci", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "requested_date", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.DateType": {} - } - }, - "nativeDataType": "WDC_DATE", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "follow_up", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_updated_on", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "state", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "comments", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "approval_set", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "close_notes", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "upon_approval", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "company", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "activity_due", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "contact_type", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "approval", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "calendar_duration", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "reassignment_count", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "delivery_task", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "approval_history", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_created_on", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "request_state", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "watch_list", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "upon_reject", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "expected_start", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "active", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "opened_by", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "work_notes", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "impact", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "description", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sla_due", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "correlation_display", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "priority", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "stage", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_created_by", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_id", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "escalation", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "closed_by", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "short_description", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "location", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "special_instructions", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "order", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_updated_by", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_mod_count", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "knowledge", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_domain", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "calendar_stc", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - } - ] - } - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "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" - ] - } - }, - { - "com.linkedin.pegasus2avro.schema.SchemaMetadata": { - "schemaName": "test", - "platform": "urn:li:dataPlatform:tableau", - "version": 0, - "created": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - }, - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - }, - "hash": "", - "platformSchema": { - "com.linkedin.pegasus2avro.schema.OtherSchema": { - "rawSchema": "" - } - }, - "fields": [ - { - "fieldPath": "watch_list", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "due_date", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "made_sla", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "parent", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "assigned_to", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_mod_count", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "cmdb_ci", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_domain", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "configuration_item", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "closed_by", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "active", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "expected_start", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "recurring_price", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "work_end", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "short_description", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "approval", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "opened_at", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "order", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "assignment_group", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sc_catalog", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "knowledge", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "stage", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "correlation_display", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "reassignment_count", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "delivery_plan", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_class_name", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "user_input", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "description", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "activity_due", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "price", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "work_notes_list", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "estimated_delivery", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "additional_assignee_list", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "context", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "business_duration", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "approval_set", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "priority", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_updated_on", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_id", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "state", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "business_service", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "billable", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "approval_history", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "recurring_frequency", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "contact_type", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "cat_item", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_updated_by", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_domain_path", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "comments", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "impact", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "order_guide", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sla_due", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_created_by", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "comments_and_work_notes", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "opened_by", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "backordered", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "correlation_id", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "group_list", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "delivery_task", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "number", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_created_on", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "company", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "work_start", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "request", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "close_notes", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "work_notes", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "calendar_duration", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "quantity", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "follow_up", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "location", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "upon_reject", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "closed_at", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "time_worked", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "escalation", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "urgency", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "upon_approval", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - } - ] - } - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "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" - ] - } - }, - { - "com.linkedin.pegasus2avro.schema.SchemaMetadata": { - "schemaName": "test", - "platform": "urn:li:dataPlatform:tableau", - "version": 0, - "created": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - }, - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - }, - "hash": "", - "platformSchema": { - "com.linkedin.pegasus2avro.schema.OtherSchema": { - "rawSchema": "" - } - }, - "fields": [ - { - "fieldPath": "sc_catalogs", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_updated_by", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "type", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "mobile_picture_type", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "workflow", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_customer_update", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_class_name", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "visible_standalone", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "no_quantity", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "order", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_updated_on", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_scope", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "template", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "no_proceed_checkout", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "billable", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "name", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "delivery_plan", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "description", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "meta", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "ordered_item_link", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_mod_count", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sc_ic_version", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "image", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_id", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "short_description", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_policy", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "roles", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "picture", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "list_price", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "no_order_now", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "vendor", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sc_ic_item_staging", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "no_order", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "entitlement_script", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "active", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "icon", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "ignore_price", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "start_closed", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_package", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "group", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_replace_on_upgrade", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "cost", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_FLOAT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "use_sc_layout", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "location", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "availability", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "model", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "custom_cart", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "mobile_picture", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "category", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "no_cart", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "mobile_hide_price", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_created_by", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "price", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "delivery_time", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "no_search", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_created_on", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "recurring_frequency", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "recurring_price", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "delivery_plan_script", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "visible_bundle", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_update_name", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_name", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "visible_guide", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "preview", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "omit_price", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "isPartOfKey": false - } - ] - } - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "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" - ] - } - }, - { - "com.linkedin.pegasus2avro.schema.SchemaMetadata": { - "schemaName": "test", - "platform": "urn:li:dataPlatform:tableau", - "version": 0, - "created": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - }, - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - }, - "hash": "", - "platformSchema": { - "com.linkedin.pegasus2avro.schema.OtherSchema": { - "rawSchema": "" - } - }, - "fields": [ - { - "fieldPath": "u_u", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_updated_by", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "source", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "exclude_manager", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "description", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "cost_center", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_created_by", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "parent", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_mod_count", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_updated_on", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "u_lucha", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_id", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "u_lu2", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "type", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "roles", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_created_on", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "default_assignee", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "email", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "manager", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "name", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "active", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "include_members", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "isPartOfKey": false - } - ] - } - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "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" - ] - } - }, - { - "com.linkedin.pegasus2avro.schema.SchemaMetadata": { - "schemaName": "test", - "platform": "urn:li:dataPlatform:tableau", - "version": 0, - "created": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - }, - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - }, - "hash": "", - "platformSchema": { - "com.linkedin.pegasus2avro.schema.OtherSchema": { - "rawSchema": "" - } - }, - "fields": [ - { - "fieldPath": "opened_by", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_class_name", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_created_by", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_updated_on", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "closed_by", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "close_notes", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "made_sla", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "state", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "related_incidents", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "business_duration", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_domain", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "delivery_task", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "priority", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_created_on", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_id", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "escalation", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "business_service", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "comments_and_work_notes", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "rfc", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_domain_path", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "cmdb_ci", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "problem_state", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "delivery_plan", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "user_input", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "active", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "location", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "expected_start", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "calendar_duration", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "number", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sla_due", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "work_notes_list", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "knowledge", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_updated_by", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "time_worked", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "order", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "assignment_group", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "upon_approval", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "company", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "opened_at", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "group_list", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "work_around", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "description", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "work_end", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "correlation_id", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "approval_set", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "urgency", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "impact", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "short_description", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "approval", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "closed_at", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "known_error", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "due_date", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "work_start", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "activity_due", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_mod_count", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "correlation_display", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "contact_type", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "additional_assignee_list", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "approval_history", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "reassignment_count", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "follow_up", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "comments", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "work_notes", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "parent", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "assigned_to", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "watch_list", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "upon_reject", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - } - ] - } - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "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" - ] - } - }, - { - "com.linkedin.pegasus2avro.schema.SchemaMetadata": { - "schemaName": "test", - "platform": "urn:li:dataPlatform:tableau", - "version": 0, - "created": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - }, - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - }, - "hash": "", - "platformSchema": { - "com.linkedin.pegasus2avro.schema.OtherSchema": { - "rawSchema": "" - } - }, - "fields": [ - { - "fieldPath": "sys_id", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "correlation_id", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "urgency", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "severity", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "business_service", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "location", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "approval_set", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "closed_at", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "parent_incident", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "subcategory", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "company", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "caller_id", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "resolved_at", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "group_list", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "correlation_display", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "resolved_by", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_created_on", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "business_stc", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_domain_path", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "parent", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "category", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "user_input", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "number", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "escalation", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "state", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "approval_history", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "impact", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "expected_start", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "additional_assignee_list", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "child_incidents", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "cmdb_ci", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "incident_state", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "notify", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "work_notes", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "reassignment_count", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "contact_type", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "opened_by", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_class_name", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "problem_id", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "due_date", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "approval", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "description", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "order", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "opened_at", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "work_notes_list", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "priority", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "time_worked", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_domain", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "caused_by", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_updated_by", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "upon_reject", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "delivery_task", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "knowledge", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_updated_on", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "calendar_duration", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "closed_by", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "comments", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "short_description", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "assigned_to", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "assignment_group", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "work_end", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "reopen_count", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "work_start", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "made_sla", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_mod_count", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "calendar_stc", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "rfc", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "delivery_plan", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "close_code", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "close_notes", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "activity_due", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_created_by", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "active", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "business_duration", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "follow_up", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "comments_and_work_notes", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "upon_approval", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "watch_list", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sla_due", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - } - ] - } - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "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" - ] - } - }, - { - "com.linkedin.pegasus2avro.schema.SchemaMetadata": { - "schemaName": "test", - "platform": "urn:li:dataPlatform:tableau", - "version": 0, - "created": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - }, - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - }, - "hash": "", - "platformSchema": { - "com.linkedin.pegasus2avro.schema.OtherSchema": { - "rawSchema": "" - } - }, - "fields": [ - { - "fieldPath": "first_discovered", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "operational_status", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "last_discovered", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "cost_cc", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "checked_in", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "attributes", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "serial_number", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "vendor", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "ip_address", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "support_group", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_updated_by", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "asset", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_domain", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "supported_by", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "invoice_number", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "managed_by", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "fault_count", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "due_in", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "cost", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "correlation_id", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "justification", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_created_on", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "assigned", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "model_id", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_class_name", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "comments", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_id", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "company", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "lease_id", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "monitor", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "cost_center", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "subcategory", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "delivery_date", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "assignment_group", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "can_print", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "short_description", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "model_number", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "name", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "start_date", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "discovery_source", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_domain_path", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "assigned_to", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "category", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "schedule", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "fqdn", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "warranty_expiration", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.DateType": {} - } - }, - "nativeDataType": "WDC_DATE", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "owned_by", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "asset_tag", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "manufacturer", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "purchase_date", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.DateType": {} - } - }, - "nativeDataType": "WDC_DATE", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "location", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "department", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_updated_on", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "checked_out", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "unverified", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "skip_sync", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "po_number", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "order_date", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "gl_account", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "maintenance_schedule", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "install_date", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "dns_domain", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_created_by", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "mac_address", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "change_control", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "install_status", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "due", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "sys_mod_count", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "isPartOfKey": false - } - ] - } - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { - "urn": "urn:li:dataset:(urn:li:dataPlatform:external,sample - superstore%2C %28new%29.xls.people,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/Samples/Superstore Datasource" - ] - } - }, - { - "com.linkedin.pegasus2avro.schema.SchemaMetadata": { - "schemaName": "test", - "platform": "urn:li:dataPlatform:tableau", - "version": 0, - "created": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - }, - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - }, - "hash": "", - "platformSchema": { - "com.linkedin.pegasus2avro.schema.OtherSchema": { - "rawSchema": "" - } - }, - "fields": [ - { - "fieldPath": "Person", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "Region", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "isPartOfKey": false - } - ] - } - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { - "urn": "urn:li:dataset:(urn:li:dataPlatform:external,sample - superstore%2C %28new%29.xls.returns,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/Samples/Superstore Datasource" - ] - } - }, - { - "com.linkedin.pegasus2avro.schema.SchemaMetadata": { - "schemaName": "test", - "platform": "urn:li:dataPlatform:tableau", - "version": 0, - "created": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - }, - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - }, - "hash": "", - "platformSchema": { - "com.linkedin.pegasus2avro.schema.OtherSchema": { - "rawSchema": "" - } - }, - "fields": [ - { - "fieldPath": "Returned", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "Order ID", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "isPartOfKey": false - } - ] - } - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { - "urn": "urn:li:dataset:(urn:li:dataPlatform:external,sample - superstore%2C %28new%29.xls.orders,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/Samples/Superstore Datasource" - ] - } - }, - { - "com.linkedin.pegasus2avro.schema.SchemaMetadata": { - "schemaName": "test", - "platform": "urn:li:dataPlatform:tableau", - "version": 0, - "created": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - }, - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown" - }, - "hash": "", - "platformSchema": { - "com.linkedin.pegasus2avro.schema.OtherSchema": { - "rawSchema": "" - } - }, - "fields": [ - { - "fieldPath": "Product ID", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "Category", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "Postal Code", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "I8", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "City", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "Quantity", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "I8", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "State", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "Order Date", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.DateType": {} - } - }, - "nativeDataType": "DATE", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "Customer Name", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "Country/Region", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "Sales", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "R8", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "Segment", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "Sub-Category", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "Profit", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "R8", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "Product Name", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "Customer ID", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "Order ID", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "Row ID", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "I8", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "Discount", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "R8", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "Ship Date", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.DateType": {} - } - }, - "nativeDataType": "DATE", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "Ship Mode", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "isPartOfKey": false - }, - { - "fieldPath": "Region", - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WSTR", - "recursive": false, - "isPartOfKey": false - } - ] - } - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { - "urn": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.customer,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/test publish datasource" - ] - } - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { - "urn": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.payment,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/test publish datasource" - ] - } - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -}, -{ - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { - "urn": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.staff,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/test publish datasource" - ] - } - } - ] - } - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test" - } -} -] \ No newline at end of file diff --git a/metadata-ingestion/tests/integration/tableau/tableau_with_platform_instance_mces_golden.json b/metadata-ingestion/tests/integration/tableau/tableau_with_platform_instance_mces_golden.json index 65e74b1899069..e94ff0118e04c 100644 --- a/metadata-ingestion/tests/integration/tableau/tableau_with_platform_instance_mces_golden.json +++ b/metadata-ingestion/tests/integration/tableau/tableau_with_platform_instance_mces_golden.json @@ -1039,9 +1039,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/EmailPerformancebyCampaign/EmailPerformancebyCampaign/Campaign List", "title": "Campaign List", "description": "", @@ -1605,9 +1603,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/EmailPerformancebyCampaign/EmailPerformancebyCampaign/Summary", "title": "Summary", "description": "", @@ -2223,9 +2219,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/EmailPerformancebyCampaign/EmailPerformancebyCampaign/Mobile - Sent by Campaign", "title": "Mobile - Sent by Campaign", "description": "", @@ -2737,9 +2731,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/#/site/acryl/views/dvdrental/Sheet1", "title": "Sheet 1", "description": "", @@ -2887,9 +2879,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/#/site/acryl/views/dvdrental/Sheet2", "title": "Sheet 2", "description": "", @@ -3205,9 +3195,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/#/site/acryl/views/dvdrental/Sheet3", "title": "Sheet 3", "description": "", @@ -3407,9 +3395,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Opened Requests", "title": "Opened Requests", "description": "", @@ -3913,9 +3899,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Top 10 Items by Requests and YoY Change", "title": "Top 10 Items by Requests and YoY Change", "description": "", @@ -4387,9 +4371,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Opened Problems", "title": "Opened Problems", "description": "", @@ -4893,9 +4875,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Overdue", "title": "Overdue", "description": "", @@ -5280,9 +5260,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/High and Critical Priority Problems", "title": "High and Critical Priority Problems", "description": "", @@ -5647,9 +5625,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Total Incidents by Category and YoY Change", "title": "Total Incidents by Category and YoY Change", "description": "", @@ -6037,9 +6013,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Known Errors", "title": "Known Errors", "description": "", @@ -6482,9 +6456,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Overdue Requests", "title": "Overdue Requests", "description": "", @@ -6901,9 +6873,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/AVG Time to Solve an Incident", "title": "AVG Time to Solve an Incident", "description": "", @@ -7236,9 +7206,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Made SLA?", "title": "Made SLA?", "description": "", @@ -7603,9 +7571,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/#/site/acryl/views/ExecutiveDashboard/Tooltip-IncidentBreakdownbyPriority", "title": "Tooltip - Incident Breakdown by Priority", "description": "", @@ -7860,9 +7826,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Overdue Problems", "title": "Overdue Problems", "description": "", @@ -8305,9 +8269,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/#/site/acryl/views/ExecutiveDashboard/Tooltip-ProblemBreakdownbyPriority", "title": "Tooltip - Problem Breakdown by Priority", "description": "", @@ -8646,9 +8608,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/#/site/acryl/views/ExecutiveDashboard/Tooltip-RequestBreakdownbyPriority", "title": "Tooltip - Request Breakdown by Priority", "description": "", @@ -9013,9 +8973,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Age of Active Problems", "title": "Age of Active Problems", "description": "", @@ -9406,9 +9364,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/t/acryl/authoring/ExecutiveDashboard/ExecutiveDashboard/Opened Incidents", "title": "Opened Incidents", "description": "", @@ -9851,9 +9807,7 @@ }, { "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "externalUrl": "https://do-not-connect/#/site/acryl/views/Workbookpublishedds/Sheet1", "title": "published sheet ds", "description": "", @@ -10174,9 +10128,7 @@ }, { "com.linkedin.pegasus2avro.dashboard.DashboardInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "title": "dvd Rental Dashboard", "description": "", "charts": [ @@ -10281,9 +10233,7 @@ }, { "com.linkedin.pegasus2avro.dashboard.DashboardInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "title": "Story 1", "description": "", "charts": [], @@ -10386,9 +10336,7 @@ }, { "com.linkedin.pegasus2avro.dashboard.DashboardInfo": { - "customProperties": { - "luid": "" - }, + "customProperties": {}, "title": "Executive Dashboard", "description": "", "charts": [ @@ -10872,9 +10820,7 @@ "customProperties": { "hasExtracts": "True", "extractLastRefreshTime": "2018-02-09T00:05:25Z", - "extractLastIncrementalUpdateTime": "", - "extractLastUpdateTime": "2018-02-09T00:05:25Z", - "type": "EmbeddedDatasource" + "extractLastUpdateTime": "2018-02-09T00:05:25Z" }, "name": "Marketo", "tags": [] @@ -12814,13 +12760,7 @@ }, { "com.linkedin.pegasus2avro.dataset.DatasetProperties": { - "customProperties": { - "hasExtracts": "False", - "extractLastRefreshTime": "", - "extractLastIncrementalUpdateTime": "", - "extractLastUpdateTime": "", - "type": "EmbeddedDatasource" - }, + "customProperties": {}, "name": "Customer Payment Query", "tags": [] } @@ -13155,13 +13095,7 @@ }, { "com.linkedin.pegasus2avro.dataset.DatasetProperties": { - "customProperties": { - "hasExtracts": "False", - "extractLastRefreshTime": "", - "extractLastIncrementalUpdateTime": "", - "extractLastUpdateTime": "", - "type": "EmbeddedDatasource" - }, + "customProperties": {}, "name": "actor+ (dvdrental)", "tags": [] } @@ -14070,13 +14004,7 @@ }, { "com.linkedin.pegasus2avro.dataset.DatasetProperties": { - "customProperties": { - "hasExtracts": "False", - "extractLastRefreshTime": "", - "extractLastIncrementalUpdateTime": "", - "extractLastUpdateTime": "", - "type": "EmbeddedDatasource" - }, + "customProperties": {}, "name": "Superstore Datasource", "tags": [] } @@ -15034,9 +14962,7 @@ "customProperties": { "hasExtracts": "True", "extractLastRefreshTime": "2018-01-18T19:35:39Z", - "extractLastIncrementalUpdateTime": "", - "extractLastUpdateTime": "2018-01-18T19:35:39Z", - "type": "EmbeddedDatasource" + "extractLastUpdateTime": "2018-01-18T19:35:39Z" }, "name": "Requests", "tags": [] @@ -21902,9 +21828,7 @@ "customProperties": { "hasExtracts": "True", "extractLastRefreshTime": "2018-01-18T20:21:33Z", - "extractLastIncrementalUpdateTime": "", - "extractLastUpdateTime": "2018-01-18T20:21:33Z", - "type": "EmbeddedDatasource" + "extractLastUpdateTime": "2018-01-18T20:21:33Z" }, "name": "Problems", "tags": [] @@ -26018,9 +25942,7 @@ "customProperties": { "hasExtracts": "True", "extractLastRefreshTime": "2018-01-18T20:13:08Z", - "extractLastIncrementalUpdateTime": "", - "extractLastUpdateTime": "2018-01-18T20:13:08Z", - "type": "EmbeddedDatasource" + "extractLastUpdateTime": "2018-01-18T20:13:08Z" }, "name": "Incidents", "tags": [] @@ -31365,13 +31287,7 @@ }, { "com.linkedin.pegasus2avro.dataset.DatasetProperties": { - "customProperties": { - "hasExtracts": "False", - "extractLastRefreshTime": "", - "extractLastIncrementalUpdateTime": "", - "extractLastUpdateTime": "", - "type": "EmbeddedDatasource" - }, + "customProperties": {}, "name": "test publish datasource", "tags": [] } @@ -31764,13 +31680,7 @@ }, { "com.linkedin.pegasus2avro.dataset.DatasetProperties": { - "customProperties": { - "hasExtracts": "False", - "extractLastRefreshTime": "", - "extractLastIncrementalUpdateTime": "", - "extractLastUpdateTime": "", - "type": "PublishedDatasource" - }, + "customProperties": {}, "name": "test publish datasource", "description": "description for test publish datasource", "tags": [] @@ -32235,13 +32145,7 @@ }, { "com.linkedin.pegasus2avro.dataset.DatasetProperties": { - "customProperties": { - "hasExtracts": "False", - "extractLastRefreshTime": "", - "extractLastIncrementalUpdateTime": "", - "extractLastUpdateTime": "", - "type": "PublishedDatasource" - }, + "customProperties": {}, "name": "Superstore Datasource", "description": "Description for Superstore dataset", "tags": [] @@ -33621,7 +33525,6 @@ { "fieldPath": "Test_Variant", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33634,7 +33537,6 @@ { "fieldPath": "Mailing_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33647,7 +33549,6 @@ { "fieldPath": "Campaign_Run_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33660,7 +33561,6 @@ { "fieldPath": "id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33673,7 +33573,6 @@ { "fieldPath": "Activity_Date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -33686,7 +33585,6 @@ { "fieldPath": "Choice_Number", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33699,7 +33597,6 @@ { "fieldPath": "Step_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33712,7 +33609,6 @@ { "fieldPath": "Campaign_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33725,7 +33621,6 @@ { "fieldPath": "Lead_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33738,7 +33633,6 @@ { "fieldPath": "Has_Predictive", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -33823,7 +33717,6 @@ { "fieldPath": "Campaign_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33836,7 +33729,6 @@ { "fieldPath": "Campaign_Run_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33849,7 +33741,6 @@ { "fieldPath": "Link", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -33862,7 +33753,6 @@ { "fieldPath": "Test_Variant", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33875,7 +33765,6 @@ { "fieldPath": "Platform", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -33888,7 +33777,6 @@ { "fieldPath": "id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33901,7 +33789,6 @@ { "fieldPath": "Activity_Date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -33914,7 +33801,6 @@ { "fieldPath": "Choice_Number", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33927,7 +33813,6 @@ { "fieldPath": "Mailing_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33940,7 +33825,6 @@ { "fieldPath": "Step_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33953,7 +33837,6 @@ { "fieldPath": "Lead_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -33966,7 +33849,6 @@ { "fieldPath": "Link_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -33979,7 +33861,6 @@ { "fieldPath": "Is_Predictive", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -33992,7 +33873,6 @@ { "fieldPath": "Device", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34005,7 +33885,6 @@ { "fieldPath": "Is_Mobile_Device", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -34018,7 +33897,6 @@ { "fieldPath": "User_Agent", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34103,7 +33981,6 @@ { "fieldPath": "Platform", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34116,7 +33993,6 @@ { "fieldPath": "Device", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34129,7 +34005,6 @@ { "fieldPath": "Choice_Number", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34142,7 +34017,6 @@ { "fieldPath": "Lead_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34155,7 +34029,6 @@ { "fieldPath": "Activity_Date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -34168,7 +34041,6 @@ { "fieldPath": "Test_Variant", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34181,7 +34053,6 @@ { "fieldPath": "Is_Mobile_Device", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -34194,7 +34065,6 @@ { "fieldPath": "Has_Predictive", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -34207,7 +34077,6 @@ { "fieldPath": "Step_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34220,7 +34089,6 @@ { "fieldPath": "User_Agent", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34233,7 +34101,6 @@ { "fieldPath": "Mailing_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34246,7 +34113,6 @@ { "fieldPath": "Campaign_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34259,7 +34125,6 @@ { "fieldPath": "Campaign_Run_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34272,7 +34137,6 @@ { "fieldPath": "id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34357,7 +34221,6 @@ { "fieldPath": "Test_Variant", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34370,7 +34233,6 @@ { "fieldPath": "Campaign_Run_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34383,7 +34245,6 @@ { "fieldPath": "Activity_Date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -34396,7 +34257,6 @@ { "fieldPath": "Mailing_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34409,7 +34269,6 @@ { "fieldPath": "Has_Predictive", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -34422,7 +34281,6 @@ { "fieldPath": "id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34435,7 +34293,6 @@ { "fieldPath": "Campaign_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34448,7 +34305,6 @@ { "fieldPath": "Step_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34461,7 +34317,6 @@ { "fieldPath": "Lead_ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34474,7 +34329,6 @@ { "fieldPath": "Choice_Number", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34559,7 +34413,6 @@ { "fieldPath": "programName", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34572,7 +34425,6 @@ { "fieldPath": "name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34585,7 +34437,6 @@ { "fieldPath": "programId", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34598,7 +34449,6 @@ { "fieldPath": "description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34611,7 +34461,6 @@ { "fieldPath": "createdAt", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -34624,7 +34473,6 @@ { "fieldPath": "id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34637,7 +34485,6 @@ { "fieldPath": "workspaceName", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34650,7 +34497,6 @@ { "fieldPath": "updatedAt", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -34663,7 +34509,6 @@ { "fieldPath": "active", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -34748,7 +34593,6 @@ { "fieldPath": "postal_code", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34761,7 +34605,6 @@ { "fieldPath": "last_update", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -34774,7 +34617,6 @@ { "fieldPath": "phone", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34787,7 +34629,6 @@ { "fieldPath": "address2", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34800,7 +34641,6 @@ { "fieldPath": "address", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34813,7 +34653,6 @@ { "fieldPath": "city_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34826,7 +34665,6 @@ { "fieldPath": "district", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34839,7 +34677,6 @@ { "fieldPath": "address_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -34924,7 +34761,6 @@ { "fieldPath": "last_update", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -34937,7 +34773,6 @@ { "fieldPath": "last_name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34950,7 +34785,6 @@ { "fieldPath": "first_name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -34963,7 +34797,6 @@ { "fieldPath": "actor_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -35048,7 +34881,6 @@ { "fieldPath": "Person", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35061,7 +34893,6 @@ { "fieldPath": "Region", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35143,7 +34974,6 @@ { "fieldPath": "Returned", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35156,7 +34986,6 @@ { "fieldPath": "Order ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35238,7 +35067,6 @@ { "fieldPath": "Product ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35251,7 +35079,6 @@ { "fieldPath": "Category", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35264,7 +35091,6 @@ { "fieldPath": "Postal Code", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -35277,7 +35103,6 @@ { "fieldPath": "City", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35290,7 +35115,6 @@ { "fieldPath": "Quantity", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -35303,7 +35127,6 @@ { "fieldPath": "State", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35316,7 +35139,6 @@ { "fieldPath": "Order Date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.DateType": {} @@ -35329,7 +35151,6 @@ { "fieldPath": "Customer Name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35342,7 +35163,6 @@ { "fieldPath": "Country/Region", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35355,7 +35175,6 @@ { "fieldPath": "Sales", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -35368,7 +35187,6 @@ { "fieldPath": "Segment", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35381,7 +35199,6 @@ { "fieldPath": "Sub-Category", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35394,7 +35211,6 @@ { "fieldPath": "Profit", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -35407,7 +35223,6 @@ { "fieldPath": "Product Name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35420,7 +35235,6 @@ { "fieldPath": "Customer ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35433,7 +35247,6 @@ { "fieldPath": "Order ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35446,7 +35259,6 @@ { "fieldPath": "Row ID", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -35459,7 +35271,6 @@ { "fieldPath": "Discount", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -35472,7 +35283,6 @@ { "fieldPath": "Ship Date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.DateType": {} @@ -35485,7 +35295,6 @@ { "fieldPath": "Ship Mode", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35498,7 +35307,6 @@ { "fieldPath": "Region", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35582,7 +35390,6 @@ { "fieldPath": "contact_type", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35595,7 +35402,6 @@ { "fieldPath": "sys_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35608,7 +35414,6 @@ { "fieldPath": "user_input", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35621,7 +35426,6 @@ { "fieldPath": "opened_at", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -35634,7 +35438,6 @@ { "fieldPath": "expected_start", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -35647,7 +35450,6 @@ { "fieldPath": "delivery_plan", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35660,7 +35462,6 @@ { "fieldPath": "opened_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35673,7 +35474,6 @@ { "fieldPath": "delivery_task", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35686,7 +35486,6 @@ { "fieldPath": "approval_set", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -35699,7 +35498,6 @@ { "fieldPath": "urgency", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -35712,7 +35510,6 @@ { "fieldPath": "comments", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35725,7 +35522,6 @@ { "fieldPath": "active", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -35738,7 +35534,6 @@ { "fieldPath": "priority", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -35751,7 +35546,6 @@ { "fieldPath": "knowledge", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -35764,7 +35558,6 @@ { "fieldPath": "closed_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35777,7 +35570,6 @@ { "fieldPath": "activity_due", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -35790,7 +35582,6 @@ { "fieldPath": "assignment_group", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35803,7 +35594,6 @@ { "fieldPath": "correlation_display", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35816,7 +35606,6 @@ { "fieldPath": "state", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -35829,7 +35618,6 @@ { "fieldPath": "work_end", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -35842,7 +35630,6 @@ { "fieldPath": "description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35855,7 +35642,6 @@ { "fieldPath": "business_service", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35868,7 +35654,6 @@ { "fieldPath": "approval_history", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35881,7 +35666,6 @@ { "fieldPath": "upon_reject", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35894,7 +35678,6 @@ { "fieldPath": "sys_created_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -35907,7 +35690,6 @@ { "fieldPath": "parent", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35920,7 +35702,6 @@ { "fieldPath": "order", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -35933,7 +35714,6 @@ { "fieldPath": "work_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35946,7 +35726,6 @@ { "fieldPath": "work_notes_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35959,7 +35738,6 @@ { "fieldPath": "sys_created_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35972,7 +35750,6 @@ { "fieldPath": "sys_updated_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -35985,7 +35762,6 @@ { "fieldPath": "work_start", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -35998,7 +35774,6 @@ { "fieldPath": "group_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36011,7 +35786,6 @@ { "fieldPath": "sys_mod_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -36024,7 +35798,6 @@ { "fieldPath": "location", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36037,7 +35810,6 @@ { "fieldPath": "correlation_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36050,7 +35822,6 @@ { "fieldPath": "sys_updated_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36063,7 +35834,6 @@ { "fieldPath": "sla_due", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36076,7 +35846,6 @@ { "fieldPath": "number", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36089,7 +35858,6 @@ { "fieldPath": "business_duration", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36102,7 +35870,6 @@ { "fieldPath": "follow_up", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36115,7 +35882,6 @@ { "fieldPath": "additional_assignee_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36128,7 +35894,6 @@ { "fieldPath": "escalation", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -36141,7 +35906,6 @@ { "fieldPath": "due_date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36154,7 +35918,6 @@ { "fieldPath": "approval", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36167,7 +35930,6 @@ { "fieldPath": "made_sla", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -36180,7 +35942,6 @@ { "fieldPath": "assigned_to", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36193,7 +35954,6 @@ { "fieldPath": "calendar_duration", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36206,7 +35966,6 @@ { "fieldPath": "closed_at", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36219,7 +35978,6 @@ { "fieldPath": "sys_domain", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36232,7 +35990,6 @@ { "fieldPath": "cmdb_ci", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36245,7 +36002,6 @@ { "fieldPath": "comments_and_work_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36258,7 +36014,6 @@ { "fieldPath": "impact", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -36271,7 +36026,6 @@ { "fieldPath": "close_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36284,7 +36038,6 @@ { "fieldPath": "reassignment_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -36297,7 +36050,6 @@ { "fieldPath": "company", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36310,7 +36062,6 @@ { "fieldPath": "sys_domain_path", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36323,7 +36074,6 @@ { "fieldPath": "short_description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36336,7 +36086,6 @@ { "fieldPath": "upon_approval", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36349,7 +36098,6 @@ { "fieldPath": "watch_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36362,7 +36110,6 @@ { "fieldPath": "time_worked", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36375,7 +36122,6 @@ { "fieldPath": "sys_class_name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36460,7 +36206,6 @@ { "fieldPath": "work_notes_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36473,7 +36218,6 @@ { "fieldPath": "closed_at", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36486,7 +36230,6 @@ { "fieldPath": "user_input", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36499,7 +36242,6 @@ { "fieldPath": "requested_for", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36512,7 +36254,6 @@ { "fieldPath": "opened_at", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36525,7 +36266,6 @@ { "fieldPath": "price", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36538,7 +36278,6 @@ { "fieldPath": "assigned_to", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36551,7 +36290,6 @@ { "fieldPath": "number", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36564,7 +36302,6 @@ { "fieldPath": "delivery_plan", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36577,7 +36314,6 @@ { "fieldPath": "delivery_address", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36590,7 +36326,6 @@ { "fieldPath": "business_duration", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36603,7 +36338,6 @@ { "fieldPath": "urgency", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -36616,7 +36350,6 @@ { "fieldPath": "work_end", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36629,7 +36362,6 @@ { "fieldPath": "due_date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36642,7 +36374,6 @@ { "fieldPath": "parent", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36655,7 +36386,6 @@ { "fieldPath": "made_sla", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -36668,7 +36398,6 @@ { "fieldPath": "assignment_group", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36681,7 +36410,6 @@ { "fieldPath": "sys_class_name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36694,7 +36422,6 @@ { "fieldPath": "additional_assignee_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36707,7 +36434,6 @@ { "fieldPath": "work_start", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36720,7 +36446,6 @@ { "fieldPath": "sys_domain_path", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36733,7 +36458,6 @@ { "fieldPath": "time_worked", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36746,7 +36470,6 @@ { "fieldPath": "comments_and_work_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36759,7 +36482,6 @@ { "fieldPath": "group_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36772,7 +36494,6 @@ { "fieldPath": "business_service", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36785,7 +36506,6 @@ { "fieldPath": "correlation_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36798,7 +36518,6 @@ { "fieldPath": "cmdb_ci", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36811,7 +36530,6 @@ { "fieldPath": "requested_date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.DateType": {} @@ -36824,7 +36542,6 @@ { "fieldPath": "follow_up", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36837,7 +36554,6 @@ { "fieldPath": "sys_updated_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36850,7 +36566,6 @@ { "fieldPath": "state", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -36863,7 +36578,6 @@ { "fieldPath": "comments", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36876,7 +36590,6 @@ { "fieldPath": "approval_set", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36889,7 +36602,6 @@ { "fieldPath": "close_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36902,7 +36614,6 @@ { "fieldPath": "upon_approval", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36915,7 +36626,6 @@ { "fieldPath": "company", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36928,7 +36638,6 @@ { "fieldPath": "activity_due", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36941,7 +36650,6 @@ { "fieldPath": "contact_type", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36954,7 +36662,6 @@ { "fieldPath": "approval", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -36967,7 +36674,6 @@ { "fieldPath": "calendar_duration", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -36980,7 +36686,6 @@ { "fieldPath": "reassignment_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -36993,7 +36698,6 @@ { "fieldPath": "delivery_task", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37006,7 +36710,6 @@ { "fieldPath": "approval_history", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37019,7 +36722,6 @@ { "fieldPath": "sys_created_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -37032,7 +36734,6 @@ { "fieldPath": "request_state", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37045,7 +36746,6 @@ { "fieldPath": "watch_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37058,7 +36758,6 @@ { "fieldPath": "upon_reject", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37071,7 +36770,6 @@ { "fieldPath": "expected_start", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -37084,7 +36782,6 @@ { "fieldPath": "active", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -37097,7 +36794,6 @@ { "fieldPath": "opened_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37110,7 +36806,6 @@ { "fieldPath": "work_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37123,7 +36818,6 @@ { "fieldPath": "impact", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -37136,7 +36830,6 @@ { "fieldPath": "description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37149,7 +36842,6 @@ { "fieldPath": "sla_due", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -37162,7 +36854,6 @@ { "fieldPath": "correlation_display", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37175,7 +36866,6 @@ { "fieldPath": "priority", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -37188,7 +36878,6 @@ { "fieldPath": "stage", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37201,7 +36890,6 @@ { "fieldPath": "sys_created_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37214,7 +36902,6 @@ { "fieldPath": "sys_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37227,7 +36914,6 @@ { "fieldPath": "escalation", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -37240,7 +36926,6 @@ { "fieldPath": "closed_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37253,7 +36938,6 @@ { "fieldPath": "short_description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37266,7 +36950,6 @@ { "fieldPath": "location", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37279,7 +36962,6 @@ { "fieldPath": "special_instructions", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37292,7 +36974,6 @@ { "fieldPath": "order", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -37305,7 +36986,6 @@ { "fieldPath": "sys_updated_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37318,7 +36998,6 @@ { "fieldPath": "sys_mod_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -37331,7 +37010,6 @@ { "fieldPath": "knowledge", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -37344,7 +37022,6 @@ { "fieldPath": "sys_domain", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37357,7 +37034,6 @@ { "fieldPath": "calendar_stc", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -37442,7 +37118,6 @@ { "fieldPath": "watch_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37455,7 +37130,6 @@ { "fieldPath": "due_date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -37468,7 +37142,6 @@ { "fieldPath": "made_sla", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -37481,7 +37154,6 @@ { "fieldPath": "parent", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37494,7 +37166,6 @@ { "fieldPath": "assigned_to", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37507,7 +37178,6 @@ { "fieldPath": "sys_mod_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -37520,7 +37190,6 @@ { "fieldPath": "cmdb_ci", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37533,7 +37202,6 @@ { "fieldPath": "sys_domain", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37546,7 +37214,6 @@ { "fieldPath": "configuration_item", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37559,7 +37226,6 @@ { "fieldPath": "closed_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37572,7 +37238,6 @@ { "fieldPath": "active", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -37585,7 +37250,6 @@ { "fieldPath": "expected_start", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -37598,7 +37262,6 @@ { "fieldPath": "recurring_price", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37611,7 +37274,6 @@ { "fieldPath": "work_end", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -37624,7 +37286,6 @@ { "fieldPath": "short_description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37637,7 +37298,6 @@ { "fieldPath": "approval", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37650,7 +37310,6 @@ { "fieldPath": "opened_at", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -37663,7 +37322,6 @@ { "fieldPath": "order", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -37676,7 +37334,6 @@ { "fieldPath": "assignment_group", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37689,7 +37346,6 @@ { "fieldPath": "sc_catalog", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37702,7 +37358,6 @@ { "fieldPath": "knowledge", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -37715,7 +37370,6 @@ { "fieldPath": "stage", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37728,7 +37382,6 @@ { "fieldPath": "correlation_display", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37741,7 +37394,6 @@ { "fieldPath": "reassignment_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -37754,7 +37406,6 @@ { "fieldPath": "delivery_plan", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37767,7 +37418,6 @@ { "fieldPath": "sys_class_name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37780,7 +37430,6 @@ { "fieldPath": "user_input", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37793,7 +37442,6 @@ { "fieldPath": "description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37806,7 +37454,6 @@ { "fieldPath": "activity_due", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -37819,7 +37466,6 @@ { "fieldPath": "price", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37832,7 +37478,6 @@ { "fieldPath": "work_notes_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37845,7 +37490,6 @@ { "fieldPath": "estimated_delivery", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -37858,7 +37502,6 @@ { "fieldPath": "additional_assignee_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37871,7 +37514,6 @@ { "fieldPath": "context", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37884,7 +37526,6 @@ { "fieldPath": "business_duration", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -37897,7 +37538,6 @@ { "fieldPath": "approval_set", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -37910,7 +37550,6 @@ { "fieldPath": "priority", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -37923,7 +37562,6 @@ { "fieldPath": "sys_updated_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -37936,7 +37574,6 @@ { "fieldPath": "sys_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37949,7 +37586,6 @@ { "fieldPath": "state", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -37962,7 +37598,6 @@ { "fieldPath": "business_service", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -37975,7 +37610,6 @@ { "fieldPath": "billable", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -37988,7 +37622,6 @@ { "fieldPath": "approval_history", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38001,7 +37634,6 @@ { "fieldPath": "recurring_frequency", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38014,7 +37646,6 @@ { "fieldPath": "contact_type", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38027,7 +37658,6 @@ { "fieldPath": "cat_item", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38040,7 +37670,6 @@ { "fieldPath": "sys_updated_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38053,7 +37682,6 @@ { "fieldPath": "sys_domain_path", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38066,7 +37694,6 @@ { "fieldPath": "comments", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38079,7 +37706,6 @@ { "fieldPath": "impact", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -38092,7 +37718,6 @@ { "fieldPath": "order_guide", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38105,7 +37730,6 @@ { "fieldPath": "sla_due", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -38118,7 +37742,6 @@ { "fieldPath": "sys_created_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38131,7 +37754,6 @@ { "fieldPath": "comments_and_work_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38144,7 +37766,6 @@ { "fieldPath": "opened_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38157,7 +37778,6 @@ { "fieldPath": "backordered", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -38170,7 +37790,6 @@ { "fieldPath": "correlation_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38183,7 +37802,6 @@ { "fieldPath": "group_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38196,7 +37814,6 @@ { "fieldPath": "delivery_task", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38209,7 +37826,6 @@ { "fieldPath": "number", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38222,7 +37838,6 @@ { "fieldPath": "sys_created_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -38235,7 +37850,6 @@ { "fieldPath": "company", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38248,7 +37862,6 @@ { "fieldPath": "work_start", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -38261,7 +37874,6 @@ { "fieldPath": "request", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38274,7 +37886,6 @@ { "fieldPath": "close_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38287,7 +37898,6 @@ { "fieldPath": "work_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38300,7 +37910,6 @@ { "fieldPath": "calendar_duration", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -38313,7 +37922,6 @@ { "fieldPath": "quantity", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -38326,7 +37934,6 @@ { "fieldPath": "follow_up", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -38339,7 +37946,6 @@ { "fieldPath": "location", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38352,7 +37958,6 @@ { "fieldPath": "upon_reject", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38365,7 +37970,6 @@ { "fieldPath": "closed_at", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -38378,7 +37982,6 @@ { "fieldPath": "time_worked", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38391,7 +37994,6 @@ { "fieldPath": "escalation", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -38404,7 +38006,6 @@ { "fieldPath": "urgency", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -38417,7 +38018,6 @@ { "fieldPath": "upon_approval", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38502,7 +38102,6 @@ { "fieldPath": "sc_catalogs", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38515,7 +38114,6 @@ { "fieldPath": "sys_updated_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38528,7 +38126,6 @@ { "fieldPath": "type", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38541,7 +38138,6 @@ { "fieldPath": "mobile_picture_type", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38554,7 +38150,6 @@ { "fieldPath": "workflow", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38567,7 +38162,6 @@ { "fieldPath": "sys_customer_update", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -38580,7 +38174,6 @@ { "fieldPath": "sys_class_name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38593,7 +38186,6 @@ { "fieldPath": "visible_standalone", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -38606,7 +38198,6 @@ { "fieldPath": "no_quantity", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -38619,7 +38210,6 @@ { "fieldPath": "order", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -38632,7 +38222,6 @@ { "fieldPath": "sys_updated_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -38645,7 +38234,6 @@ { "fieldPath": "sys_scope", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38658,7 +38246,6 @@ { "fieldPath": "template", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38671,7 +38258,6 @@ { "fieldPath": "no_proceed_checkout", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -38684,7 +38270,6 @@ { "fieldPath": "billable", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -38697,7 +38282,6 @@ { "fieldPath": "name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38710,7 +38294,6 @@ { "fieldPath": "delivery_plan", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38723,7 +38306,6 @@ { "fieldPath": "description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38736,7 +38318,6 @@ { "fieldPath": "meta", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38749,7 +38330,6 @@ { "fieldPath": "ordered_item_link", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38762,7 +38342,6 @@ { "fieldPath": "sys_mod_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -38775,7 +38354,6 @@ { "fieldPath": "sc_ic_version", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -38788,7 +38366,6 @@ { "fieldPath": "image", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38801,7 +38378,6 @@ { "fieldPath": "sys_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38814,7 +38390,6 @@ { "fieldPath": "short_description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38827,7 +38402,6 @@ { "fieldPath": "sys_policy", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38840,7 +38414,6 @@ { "fieldPath": "roles", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38853,7 +38426,6 @@ { "fieldPath": "picture", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38866,7 +38438,6 @@ { "fieldPath": "list_price", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38879,7 +38450,6 @@ { "fieldPath": "no_order_now", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -38892,7 +38462,6 @@ { "fieldPath": "vendor", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38905,7 +38474,6 @@ { "fieldPath": "sc_ic_item_staging", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38918,7 +38486,6 @@ { "fieldPath": "no_order", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -38931,7 +38498,6 @@ { "fieldPath": "entitlement_script", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38944,7 +38510,6 @@ { "fieldPath": "active", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -38957,7 +38522,6 @@ { "fieldPath": "icon", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -38970,7 +38534,6 @@ { "fieldPath": "ignore_price", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -38983,7 +38546,6 @@ { "fieldPath": "start_closed", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -38996,7 +38558,6 @@ { "fieldPath": "sys_package", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39009,7 +38570,6 @@ { "fieldPath": "group", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39022,7 +38582,6 @@ { "fieldPath": "sys_replace_on_upgrade", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -39035,7 +38594,6 @@ { "fieldPath": "cost", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -39048,7 +38606,6 @@ { "fieldPath": "use_sc_layout", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -39061,7 +38618,6 @@ { "fieldPath": "location", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39074,7 +38630,6 @@ { "fieldPath": "availability", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39087,7 +38642,6 @@ { "fieldPath": "model", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39100,7 +38654,6 @@ { "fieldPath": "custom_cart", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39113,7 +38666,6 @@ { "fieldPath": "mobile_picture", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39126,7 +38678,6 @@ { "fieldPath": "category", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39139,7 +38690,6 @@ { "fieldPath": "no_cart", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -39152,7 +38702,6 @@ { "fieldPath": "mobile_hide_price", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -39165,7 +38714,6 @@ { "fieldPath": "sys_created_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39178,7 +38726,6 @@ { "fieldPath": "price", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39191,7 +38738,6 @@ { "fieldPath": "delivery_time", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -39204,7 +38750,6 @@ { "fieldPath": "no_search", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -39217,7 +38762,6 @@ { "fieldPath": "sys_created_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -39230,7 +38774,6 @@ { "fieldPath": "recurring_frequency", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39243,7 +38786,6 @@ { "fieldPath": "recurring_price", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39256,7 +38798,6 @@ { "fieldPath": "delivery_plan_script", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39269,7 +38810,6 @@ { "fieldPath": "visible_bundle", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -39282,7 +38822,6 @@ { "fieldPath": "sys_update_name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39295,7 +38834,6 @@ { "fieldPath": "sys_name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39308,7 +38846,6 @@ { "fieldPath": "visible_guide", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -39321,7 +38858,6 @@ { "fieldPath": "preview", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39334,7 +38870,6 @@ { "fieldPath": "omit_price", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -39419,7 +38954,6 @@ { "fieldPath": "u_u", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39432,7 +38966,6 @@ { "fieldPath": "sys_updated_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39445,7 +38978,6 @@ { "fieldPath": "source", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39458,7 +38990,6 @@ { "fieldPath": "exclude_manager", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -39471,7 +39002,6 @@ { "fieldPath": "description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39484,7 +39014,6 @@ { "fieldPath": "cost_center", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39497,7 +39026,6 @@ { "fieldPath": "sys_created_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39510,7 +39038,6 @@ { "fieldPath": "parent", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39523,7 +39050,6 @@ { "fieldPath": "sys_mod_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -39536,7 +39062,6 @@ { "fieldPath": "sys_updated_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -39549,7 +39074,6 @@ { "fieldPath": "u_lucha", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39562,7 +39086,6 @@ { "fieldPath": "sys_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39575,7 +39098,6 @@ { "fieldPath": "u_lu2", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39588,7 +39110,6 @@ { "fieldPath": "type", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39601,7 +39122,6 @@ { "fieldPath": "roles", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39614,7 +39134,6 @@ { "fieldPath": "sys_created_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -39627,7 +39146,6 @@ { "fieldPath": "default_assignee", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39640,7 +39158,6 @@ { "fieldPath": "email", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39653,7 +39170,6 @@ { "fieldPath": "manager", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39666,7 +39182,6 @@ { "fieldPath": "name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39679,7 +39194,6 @@ { "fieldPath": "active", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -39692,7 +39206,6 @@ { "fieldPath": "include_members", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -39777,7 +39290,6 @@ { "fieldPath": "opened_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39790,7 +39302,6 @@ { "fieldPath": "sys_class_name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39803,7 +39314,6 @@ { "fieldPath": "sys_created_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39816,7 +39326,6 @@ { "fieldPath": "sys_updated_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -39829,7 +39338,6 @@ { "fieldPath": "closed_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39842,7 +39350,6 @@ { "fieldPath": "close_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39855,7 +39362,6 @@ { "fieldPath": "made_sla", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -39868,7 +39374,6 @@ { "fieldPath": "state", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -39881,7 +39386,6 @@ { "fieldPath": "related_incidents", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -39894,7 +39398,6 @@ { "fieldPath": "business_duration", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -39907,7 +39410,6 @@ { "fieldPath": "sys_domain", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39920,7 +39422,6 @@ { "fieldPath": "delivery_task", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39933,7 +39434,6 @@ { "fieldPath": "priority", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -39946,7 +39446,6 @@ { "fieldPath": "sys_created_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -39959,7 +39458,6 @@ { "fieldPath": "sys_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39972,7 +39470,6 @@ { "fieldPath": "escalation", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -39985,7 +39482,6 @@ { "fieldPath": "business_service", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -39998,7 +39494,6 @@ { "fieldPath": "comments_and_work_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40011,7 +39506,6 @@ { "fieldPath": "rfc", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40024,7 +39518,6 @@ { "fieldPath": "sys_domain_path", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40037,7 +39530,6 @@ { "fieldPath": "cmdb_ci", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40050,7 +39542,6 @@ { "fieldPath": "problem_state", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -40063,7 +39554,6 @@ { "fieldPath": "delivery_plan", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40076,7 +39566,6 @@ { "fieldPath": "user_input", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40089,7 +39578,6 @@ { "fieldPath": "active", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -40102,7 +39590,6 @@ { "fieldPath": "location", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40115,7 +39602,6 @@ { "fieldPath": "expected_start", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -40128,7 +39614,6 @@ { "fieldPath": "calendar_duration", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -40141,7 +39626,6 @@ { "fieldPath": "number", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40154,7 +39638,6 @@ { "fieldPath": "sla_due", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -40167,7 +39650,6 @@ { "fieldPath": "work_notes_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40180,7 +39662,6 @@ { "fieldPath": "knowledge", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -40193,7 +39674,6 @@ { "fieldPath": "sys_updated_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40206,7 +39686,6 @@ { "fieldPath": "time_worked", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40219,7 +39698,6 @@ { "fieldPath": "order", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -40232,7 +39710,6 @@ { "fieldPath": "assignment_group", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40245,7 +39722,6 @@ { "fieldPath": "upon_approval", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40258,7 +39734,6 @@ { "fieldPath": "company", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40271,7 +39746,6 @@ { "fieldPath": "opened_at", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -40284,7 +39758,6 @@ { "fieldPath": "group_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40297,7 +39770,6 @@ { "fieldPath": "work_around", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40310,7 +39782,6 @@ { "fieldPath": "description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40323,7 +39794,6 @@ { "fieldPath": "work_end", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -40336,7 +39806,6 @@ { "fieldPath": "correlation_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40349,7 +39818,6 @@ { "fieldPath": "approval_set", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -40362,7 +39830,6 @@ { "fieldPath": "urgency", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -40375,7 +39842,6 @@ { "fieldPath": "impact", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -40388,7 +39854,6 @@ { "fieldPath": "short_description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40401,7 +39866,6 @@ { "fieldPath": "approval", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40414,7 +39878,6 @@ { "fieldPath": "closed_at", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -40427,7 +39890,6 @@ { "fieldPath": "known_error", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -40440,7 +39902,6 @@ { "fieldPath": "due_date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -40453,7 +39914,6 @@ { "fieldPath": "work_start", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -40466,7 +39926,6 @@ { "fieldPath": "activity_due", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -40479,7 +39938,6 @@ { "fieldPath": "sys_mod_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -40492,7 +39950,6 @@ { "fieldPath": "correlation_display", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40505,7 +39962,6 @@ { "fieldPath": "contact_type", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40518,7 +39974,6 @@ { "fieldPath": "additional_assignee_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40531,7 +39986,6 @@ { "fieldPath": "approval_history", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40544,7 +39998,6 @@ { "fieldPath": "reassignment_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -40557,7 +40010,6 @@ { "fieldPath": "follow_up", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -40570,7 +40022,6 @@ { "fieldPath": "comments", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40583,7 +40034,6 @@ { "fieldPath": "work_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40596,7 +40046,6 @@ { "fieldPath": "parent", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40609,7 +40058,6 @@ { "fieldPath": "assigned_to", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40622,7 +40070,6 @@ { "fieldPath": "watch_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40635,7 +40082,6 @@ { "fieldPath": "upon_reject", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40720,7 +40166,6 @@ { "fieldPath": "sys_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40733,7 +40178,6 @@ { "fieldPath": "correlation_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40746,7 +40190,6 @@ { "fieldPath": "urgency", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -40759,7 +40202,6 @@ { "fieldPath": "severity", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -40772,7 +40214,6 @@ { "fieldPath": "business_service", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40785,7 +40226,6 @@ { "fieldPath": "location", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40798,7 +40238,6 @@ { "fieldPath": "approval_set", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -40811,7 +40250,6 @@ { "fieldPath": "closed_at", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -40824,7 +40262,6 @@ { "fieldPath": "parent_incident", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40837,7 +40274,6 @@ { "fieldPath": "subcategory", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40850,7 +40286,6 @@ { "fieldPath": "company", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40863,7 +40298,6 @@ { "fieldPath": "caller_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40876,7 +40310,6 @@ { "fieldPath": "resolved_at", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -40889,7 +40322,6 @@ { "fieldPath": "group_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40902,7 +40334,6 @@ { "fieldPath": "correlation_display", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40915,7 +40346,6 @@ { "fieldPath": "resolved_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40928,7 +40358,6 @@ { "fieldPath": "sys_created_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -40941,7 +40370,6 @@ { "fieldPath": "business_stc", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -40954,7 +40382,6 @@ { "fieldPath": "sys_domain_path", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40967,7 +40394,6 @@ { "fieldPath": "parent", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40980,7 +40406,6 @@ { "fieldPath": "category", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -40993,7 +40418,6 @@ { "fieldPath": "user_input", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41006,7 +40430,6 @@ { "fieldPath": "number", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41019,7 +40442,6 @@ { "fieldPath": "escalation", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -41032,7 +40454,6 @@ { "fieldPath": "state", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -41045,7 +40466,6 @@ { "fieldPath": "approval_history", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41058,7 +40478,6 @@ { "fieldPath": "impact", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -41071,7 +40490,6 @@ { "fieldPath": "expected_start", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -41084,7 +40502,6 @@ { "fieldPath": "additional_assignee_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41097,7 +40514,6 @@ { "fieldPath": "child_incidents", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -41110,7 +40526,6 @@ { "fieldPath": "cmdb_ci", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41123,7 +40538,6 @@ { "fieldPath": "incident_state", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -41136,7 +40550,6 @@ { "fieldPath": "notify", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -41149,7 +40562,6 @@ { "fieldPath": "work_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41162,7 +40574,6 @@ { "fieldPath": "reassignment_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -41175,7 +40586,6 @@ { "fieldPath": "contact_type", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41188,7 +40598,6 @@ { "fieldPath": "opened_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41201,7 +40610,6 @@ { "fieldPath": "sys_class_name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41214,7 +40622,6 @@ { "fieldPath": "problem_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41227,7 +40634,6 @@ { "fieldPath": "due_date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -41240,7 +40646,6 @@ { "fieldPath": "approval", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41253,7 +40658,6 @@ { "fieldPath": "description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41266,7 +40670,6 @@ { "fieldPath": "order", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -41279,7 +40682,6 @@ { "fieldPath": "opened_at", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -41292,7 +40694,6 @@ { "fieldPath": "work_notes_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41305,7 +40706,6 @@ { "fieldPath": "priority", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -41318,7 +40718,6 @@ { "fieldPath": "time_worked", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41331,7 +40730,6 @@ { "fieldPath": "sys_domain", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41344,7 +40742,6 @@ { "fieldPath": "caused_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41357,7 +40754,6 @@ { "fieldPath": "sys_updated_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41370,7 +40766,6 @@ { "fieldPath": "upon_reject", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41383,7 +40778,6 @@ { "fieldPath": "delivery_task", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41396,7 +40790,6 @@ { "fieldPath": "knowledge", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -41409,7 +40802,6 @@ { "fieldPath": "sys_updated_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -41422,7 +40814,6 @@ { "fieldPath": "calendar_duration", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -41435,7 +40826,6 @@ { "fieldPath": "closed_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41448,7 +40838,6 @@ { "fieldPath": "comments", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41461,7 +40850,6 @@ { "fieldPath": "short_description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41474,7 +40862,6 @@ { "fieldPath": "assigned_to", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41487,7 +40874,6 @@ { "fieldPath": "assignment_group", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41500,7 +40886,6 @@ { "fieldPath": "work_end", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -41513,7 +40898,6 @@ { "fieldPath": "reopen_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -41526,7 +40910,6 @@ { "fieldPath": "work_start", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -41539,7 +40922,6 @@ { "fieldPath": "made_sla", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -41552,7 +40934,6 @@ { "fieldPath": "sys_mod_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -41565,7 +40946,6 @@ { "fieldPath": "calendar_stc", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -41578,7 +40958,6 @@ { "fieldPath": "rfc", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41591,7 +40970,6 @@ { "fieldPath": "delivery_plan", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41604,7 +40982,6 @@ { "fieldPath": "close_code", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41617,7 +40994,6 @@ { "fieldPath": "close_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41630,7 +41006,6 @@ { "fieldPath": "activity_due", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -41643,7 +41018,6 @@ { "fieldPath": "sys_created_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41656,7 +41030,6 @@ { "fieldPath": "active", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -41669,7 +41042,6 @@ { "fieldPath": "business_duration", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -41682,7 +41054,6 @@ { "fieldPath": "follow_up", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -41695,7 +41066,6 @@ { "fieldPath": "comments_and_work_notes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41708,7 +41078,6 @@ { "fieldPath": "upon_approval", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41721,7 +41090,6 @@ { "fieldPath": "watch_list", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41734,7 +41102,6 @@ { "fieldPath": "sla_due", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -41819,7 +41186,6 @@ { "fieldPath": "first_discovered", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -41832,7 +41198,6 @@ { "fieldPath": "operational_status", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -41845,7 +41210,6 @@ { "fieldPath": "last_discovered", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -41858,7 +41222,6 @@ { "fieldPath": "cost_cc", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41871,7 +41234,6 @@ { "fieldPath": "checked_in", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -41884,7 +41246,6 @@ { "fieldPath": "attributes", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41897,7 +41258,6 @@ { "fieldPath": "serial_number", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41910,7 +41270,6 @@ { "fieldPath": "vendor", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41923,7 +41282,6 @@ { "fieldPath": "ip_address", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41936,7 +41294,6 @@ { "fieldPath": "support_group", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41949,7 +41306,6 @@ { "fieldPath": "sys_updated_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41962,7 +41318,6 @@ { "fieldPath": "asset", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41975,7 +41330,6 @@ { "fieldPath": "sys_domain", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -41988,7 +41342,6 @@ { "fieldPath": "supported_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42001,7 +41354,6 @@ { "fieldPath": "invoice_number", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42014,7 +41366,6 @@ { "fieldPath": "managed_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42027,7 +41378,6 @@ { "fieldPath": "fault_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -42040,7 +41390,6 @@ { "fieldPath": "due_in", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42053,7 +41402,6 @@ { "fieldPath": "cost", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42066,7 +41414,6 @@ { "fieldPath": "correlation_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42079,7 +41426,6 @@ { "fieldPath": "justification", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42092,7 +41438,6 @@ { "fieldPath": "sys_created_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -42105,7 +41450,6 @@ { "fieldPath": "assigned", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -42118,7 +41462,6 @@ { "fieldPath": "model_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42131,7 +41474,6 @@ { "fieldPath": "sys_class_name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42144,7 +41486,6 @@ { "fieldPath": "comments", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42157,7 +41498,6 @@ { "fieldPath": "sys_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42170,7 +41510,6 @@ { "fieldPath": "company", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42183,7 +41522,6 @@ { "fieldPath": "lease_id", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42196,7 +41534,6 @@ { "fieldPath": "monitor", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -42209,7 +41546,6 @@ { "fieldPath": "cost_center", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42222,7 +41558,6 @@ { "fieldPath": "subcategory", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42235,7 +41570,6 @@ { "fieldPath": "delivery_date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -42248,7 +41582,6 @@ { "fieldPath": "assignment_group", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42261,7 +41594,6 @@ { "fieldPath": "can_print", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -42274,7 +41606,6 @@ { "fieldPath": "short_description", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42287,7 +41618,6 @@ { "fieldPath": "model_number", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42300,7 +41630,6 @@ { "fieldPath": "name", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42313,7 +41642,6 @@ { "fieldPath": "start_date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -42326,7 +41654,6 @@ { "fieldPath": "discovery_source", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42339,7 +41666,6 @@ { "fieldPath": "sys_domain_path", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42352,7 +41678,6 @@ { "fieldPath": "assigned_to", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42365,7 +41690,6 @@ { "fieldPath": "category", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42378,7 +41702,6 @@ { "fieldPath": "schedule", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42391,7 +41714,6 @@ { "fieldPath": "fqdn", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42404,7 +41726,6 @@ { "fieldPath": "warranty_expiration", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.DateType": {} @@ -42417,7 +41738,6 @@ { "fieldPath": "owned_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42430,7 +41750,6 @@ { "fieldPath": "asset_tag", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42443,7 +41762,6 @@ { "fieldPath": "manufacturer", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42456,7 +41774,6 @@ { "fieldPath": "purchase_date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.DateType": {} @@ -42469,7 +41786,6 @@ { "fieldPath": "location", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42482,7 +41798,6 @@ { "fieldPath": "department", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42495,7 +41810,6 @@ { "fieldPath": "sys_updated_on", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -42508,7 +41822,6 @@ { "fieldPath": "checked_out", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -42521,7 +41834,6 @@ { "fieldPath": "unverified", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -42534,7 +41846,6 @@ { "fieldPath": "skip_sync", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.BooleanType": {} @@ -42547,7 +41858,6 @@ { "fieldPath": "po_number", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42560,7 +41870,6 @@ { "fieldPath": "order_date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -42573,7 +41882,6 @@ { "fieldPath": "gl_account", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42586,7 +41894,6 @@ { "fieldPath": "maintenance_schedule", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42599,7 +41906,6 @@ { "fieldPath": "install_date", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -42612,7 +41918,6 @@ { "fieldPath": "dns_domain", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42625,7 +41930,6 @@ { "fieldPath": "sys_created_by", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42638,7 +41942,6 @@ { "fieldPath": "mac_address", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42651,7 +41954,6 @@ { "fieldPath": "change_control", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -42664,7 +41966,6 @@ { "fieldPath": "install_status", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -42677,7 +41978,6 @@ { "fieldPath": "due", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -42690,7 +41990,6 @@ { "fieldPath": "sys_mod_count", "nullable": false, - "description": "", "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} From 99f1624ce719305e8000d903d600034c8b726e25 Mon Sep 17 00:00:00 2001 From: Harshal Sheth Date: Thu, 27 Jul 2023 04:36:04 -0700 Subject: [PATCH 03/11] docs(ingest/lookml): clarify connection map config (#8508) --- .../docs/sources/looker/lookml_pre.md | 34 ++++++++++++------- 1 file changed, 22 insertions(+), 12 deletions(-) diff --git a/metadata-ingestion/docs/sources/looker/lookml_pre.md b/metadata-ingestion/docs/sources/looker/lookml_pre.md index e6528c89cf43f..d78a30fe6ec37 100644 --- a/metadata-ingestion/docs/sources/looker/lookml_pre.md +++ b/metadata-ingestion/docs/sources/looker/lookml_pre.md @@ -7,19 +7,29 @@ To use LookML ingestion through the UI, or automate github checkout through the In a nutshell, there are three steps: 1. Generate a private-public ssh key pair. This will typically generate two files, e.g. looker_datahub_deploy_key (this is the private key) and looker_datahub_deploy_key.pub (this is the public key) -![Image](https://raw.githubusercontent.com/datahub-project/static-assets/main/imgs/gitssh/ssh-key-generation.png) + ![Image](https://raw.githubusercontent.com/datahub-project/static-assets/main/imgs/gitssh/ssh-key-generation.png) 2. Add the public key to your Looker git repo as a deploy key with read access (no need to provision write access). Follow the guide [here](https://docs.github.com/en/developers/overview/managing-deploy-keys#deploy-keys) for that. -![Image](https://raw.githubusercontent.com/datahub-project/static-assets/main/imgs/gitssh/git-deploy-key.png) + ![Image](https://raw.githubusercontent.com/datahub-project/static-assets/main/imgs/gitssh/git-deploy-key.png) 3. Make note of the private key file, you will need to paste the contents of the file into the **GitHub Deploy Key** field later while setting up [ingestion using the UI](#ui-based-ingestion-recommended-for-ease-of-use). +### Setup your connection mapping + +The connection mapping enables DataHub to accurately generate lineage to your upstream warehouse. +It maps Looker connection names to the platform and database that they're pointing to. + +There's two ways to configure this: + +1. Provide Looker **admin** API credentials, and we'll automatically map lineage correctly. Details on how to do this are below. +2. Manually populate the `connection_to_platform_map` and `project_name` configuration fields. See the starter recipe for an example of what this should look like. + #### [Optional] Create an API key with admin privileges See the [Looker authentication docs](https://docs.looker.com/reference/api-and-integration/api-auth#authentication_with_an_sdk) for the steps to create a client ID and secret. You need to ensure that the API key is attached to a user that has Admin privileges. -If that is not possible, read the configuration section and provide an offline specification of the `connection_to_platform_map` and the `project_name`. +If you don't want to provide admin API credentials, you can manually populate the `connection_to_platform_map` and `project_name` in the ingestion configuration. ### Ingestion Options @@ -80,7 +90,6 @@ on: release: types: [published, edited] workflow_dispatch: - jobs: lookml-metadata-upload: @@ -89,12 +98,13 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-python@v4 with: - python-version: '3.10' + python-version: "3.10" - name: Run LookML ingestion run: | pip install 'acryl-datahub[lookml,datahub-rest]' cat << EOF > lookml_ingestion.yml - # LookML ingestion configuration + # LookML ingestion configuration. + # This is a full ingestion recipe, and supports all config options that the LookML source supports. source: type: "lookml" config: @@ -106,8 +116,8 @@ jobs: # Options #connection_to_platform_map: # connection-name: - #platform: platform-name (e.g. snowflake) - #default_db: default-db-name (e.g. DEMO_PIPELINE) + # platform: platform-name (e.g. snowflake) + # default_db: default-db-name (e.g. DEMO_PIPELINE) api: client_id: ${LOOKER_CLIENT_ID} client_secret: ${LOOKER_CLIENT_SECRET} @@ -115,13 +125,13 @@ jobs: sink: type: datahub-rest config: - server: ${DATAHUB_GMS_HOST} - token: ${DATAHUB_TOKEN} + server: ${DATAHUB_GMS_URL} + token: ${DATAHUB_GMS_TOKEN} EOF datahub ingest -c lookml_ingestion.yml env: - DATAHUB_GMS_HOST: ${{ secrets.DATAHUB_GMS_HOST }} - DATAHUB_TOKEN: ${{ secrets.DATAHUB_TOKEN }} + DATAHUB_GMS_URL: ${{ secrets.DATAHUB_GMS_URL }} + DATAHUB_GMS_TOKEN: ${{ secrets.DATAHUB_GMS_TOKEN }} LOOKER_BASE_URL: ${{ secrets.LOOKER_BASE_URL }} LOOKER_CLIENT_ID: ${{ secrets.LOOKER_CLIENT_ID }} LOOKER_CLIENT_SECRET: ${{ secrets.LOOKER_CLIENT_SECRET }} From 3640291493872dd8d05f9399f9cddefc96543a09 Mon Sep 17 00:00:00 2001 From: david-leifker <114954101+david-leifker@users.noreply.github.com> Date: Fri, 28 Jul 2023 14:09:44 -0500 Subject: [PATCH 04/11] config(ebean): add ebean retry configuration (#8500) --- .github/workflows/docker-unified.yml | 17 +++++++++++++++++ docker/build.gradle | 2 ++ docker/docker-compose-with-cassandra.yml | 2 +- docker/docker-compose-without-neo4j.yml | 2 +- docker/docker-compose.yml | 2 +- .../docker-compose-m1.quickstart.yml | 2 +- ...ker-compose-without-neo4j-m1.quickstart.yml | 2 +- ...docker-compose-without-neo4j.quickstart.yml | 2 +- .../quickstart/docker-compose.quickstart.yml | 2 +- docs/cli.md | 1 + .../metadata/entity/EntityServiceImpl.java | 18 +++++++++++++++++- .../factory/entity/EntityServiceFactory.java | 6 +++++- .../cypress/e2e/mutations/deprecations.js | 4 ++-- .../cypress/e2e/mutations/managed_ingestion.js | 3 ++- 14 files changed, 53 insertions(+), 12 deletions(-) diff --git a/.github/workflows/docker-unified.yml b/.github/workflows/docker-unified.yml index a23e5a134d294..65028fd260807 100644 --- a/.github/workflows/docker-unified.yml +++ b/.github/workflows/docker-unified.yml @@ -490,6 +490,9 @@ jobs: if: ${{ needs.setup.outputs.publish != 'true' }} with: image: ${{ env.DATAHUB_UPGRADE_IMAGE }}:${{ needs.setup.outputs.unique_tag }} + - name: Disable datahub-actions + run: | + yq -i 'del(.services.datahub-actions)' docker/quickstart/docker-compose-without-neo4j.quickstart.yml - name: run quickstart env: DATAHUB_TELEMETRY_ENABLED: false @@ -501,6 +504,20 @@ jobs: # we are doing this because gms takes time to get ready # and we don't have a better readiness check when bootstrap is done sleep 60s + - name: Disable ES Disk Threshold + run: | + curl -XPUT "http://localhost:9200/_cluster/settings" \ + -H 'Content-Type: application/json' -d'{ + "persistent": { + "cluster": { + "routing": { + "allocation.disk.threshold_enabled": false + } + } + } + }' + - name: Remove Source Code + run: find ./*/* ! -path "./metadata-ingestion*" ! -path "./smoke-test*" ! -path "./gradle*" -delete - name: Smoke test env: RUN_QUICKSTART: false diff --git a/docker/build.gradle b/docker/build.gradle index 16f7b46467cc6..f33e06f383240 100644 --- a/docker/build.gradle +++ b/docker/build.gradle @@ -35,6 +35,8 @@ task quickstart(type: Exec, dependsOn: ':metadata-ingestion:install') { environment "DATAHUB_TELEMETRY_ENABLED", "false" environment "DOCKER_COMPOSE_BASE", "file://${rootProject.projectDir}" + environment "ACTIONS_VERSION", 'alpine3.17-slim' + environment "DATAHUB_ACTIONS_IMAGE", 'nginx' def cmd = [ 'source ../metadata-ingestion/venv/bin/activate && ', diff --git a/docker/docker-compose-with-cassandra.yml b/docker/docker-compose-with-cassandra.yml index 87cd104cd9cd5..1a5f1e208c881 100644 --- a/docker/docker-compose-with-cassandra.yml +++ b/docker/docker-compose-with-cassandra.yml @@ -24,7 +24,7 @@ services: datahub-actions: container_name: datahub-actions hostname: actions - image: acryldata/datahub-actions:${ACTIONS_VERSION:-head} + image: ${DATAHUB_ACTIONS_IMAGE:-acryldata/datahub-actions}:${ACTIONS_VERSION:-head} env_file: datahub-actions/env/docker.env depends_on: datahub-gms: diff --git a/docker/docker-compose-without-neo4j.yml b/docker/docker-compose-without-neo4j.yml index 15d327847936a..26fdee2b6410c 100644 --- a/docker/docker-compose-without-neo4j.yml +++ b/docker/docker-compose-without-neo4j.yml @@ -25,7 +25,7 @@ services: datahub-actions: container_name: datahub-actions hostname: actions - image: acryldata/datahub-actions:${ACTIONS_VERSION:-head} + image: ${DATAHUB_ACTIONS_IMAGE:-acryldata/datahub-actions}:${ACTIONS_VERSION:-head} env_file: datahub-actions/env/docker.env depends_on: datahub-gms: diff --git a/docker/docker-compose.yml b/docker/docker-compose.yml index f242cb730a68f..5115f90819ef3 100644 --- a/docker/docker-compose.yml +++ b/docker/docker-compose.yml @@ -24,7 +24,7 @@ services: datahub-actions: container_name: datahub-actions hostname: actions - image: acryldata/datahub-actions:${ACTIONS_VERSION:-head} + image: ${DATAHUB_ACTIONS_IMAGE:-acryldata/datahub-actions}:${ACTIONS_VERSION:-head} env_file: datahub-actions/env/docker.env depends_on: datahub-gms: diff --git a/docker/quickstart/docker-compose-m1.quickstart.yml b/docker/quickstart/docker-compose-m1.quickstart.yml index 5ee039b1ceb42..89569510bb001 100644 --- a/docker/quickstart/docker-compose-m1.quickstart.yml +++ b/docker/quickstart/docker-compose-m1.quickstart.yml @@ -45,7 +45,7 @@ services: - METADATA_CHANGE_LOG_VERSIONED_TOPIC_NAME=MetadataChangeLog_Versioned_v1 - SCHEMA_REGISTRY_URL=http://schema-registry:8081 hostname: actions - image: acryldata/datahub-actions:${ACTIONS_VERSION:-head} + image: ${DATAHUB_ACTIONS_IMAGE:-acryldata/datahub-actions}:${ACTIONS_VERSION:-head} datahub-frontend-react: container_name: datahub-frontend-react depends_on: diff --git a/docker/quickstart/docker-compose-without-neo4j-m1.quickstart.yml b/docker/quickstart/docker-compose-without-neo4j-m1.quickstart.yml index 2ad4f33c6dd99..102500c8f1878 100644 --- a/docker/quickstart/docker-compose-without-neo4j-m1.quickstart.yml +++ b/docker/quickstart/docker-compose-without-neo4j-m1.quickstart.yml @@ -45,7 +45,7 @@ services: - METADATA_CHANGE_LOG_VERSIONED_TOPIC_NAME=MetadataChangeLog_Versioned_v1 - SCHEMA_REGISTRY_URL=http://schema-registry:8081 hostname: actions - image: acryldata/datahub-actions:${ACTIONS_VERSION:-head} + image: ${DATAHUB_ACTIONS_IMAGE:-acryldata/datahub-actions}:${ACTIONS_VERSION:-head} datahub-frontend-react: container_name: datahub-frontend-react depends_on: diff --git a/docker/quickstart/docker-compose-without-neo4j.quickstart.yml b/docker/quickstart/docker-compose-without-neo4j.quickstart.yml index f86d9756ef855..5fa2838255d9a 100644 --- a/docker/quickstart/docker-compose-without-neo4j.quickstart.yml +++ b/docker/quickstart/docker-compose-without-neo4j.quickstart.yml @@ -45,7 +45,7 @@ services: - METADATA_CHANGE_LOG_VERSIONED_TOPIC_NAME=MetadataChangeLog_Versioned_v1 - SCHEMA_REGISTRY_URL=http://schema-registry:8081 hostname: actions - image: acryldata/datahub-actions:${ACTIONS_VERSION:-head} + image: ${DATAHUB_ACTIONS_IMAGE:-acryldata/datahub-actions}:${ACTIONS_VERSION:-head} datahub-frontend-react: container_name: datahub-frontend-react depends_on: diff --git a/docker/quickstart/docker-compose.quickstart.yml b/docker/quickstart/docker-compose.quickstart.yml index 2587a76433cdb..adee2da9276aa 100644 --- a/docker/quickstart/docker-compose.quickstart.yml +++ b/docker/quickstart/docker-compose.quickstart.yml @@ -45,7 +45,7 @@ services: - METADATA_CHANGE_LOG_VERSIONED_TOPIC_NAME=MetadataChangeLog_Versioned_v1 - SCHEMA_REGISTRY_URL=http://schema-registry:8081 hostname: actions - image: acryldata/datahub-actions:${ACTIONS_VERSION:-head} + image: ${DATAHUB_ACTIONS_IMAGE:-acryldata/datahub-actions}:${ACTIONS_VERSION:-head} datahub-frontend-react: container_name: datahub-frontend-react depends_on: diff --git a/docs/cli.md b/docs/cli.md index 0bff921ddd7e3..64b7e2d76bba2 100644 --- a/docs/cli.md +++ b/docs/cli.md @@ -121,6 +121,7 @@ The environment variables listed below take precedence over the DataHub CLI conf - `DATAHUB_DEBUG` (default `false`) - Set to `true` to enable debug logging for CLI. Can also be achieved through `--debug` option of the CLI. - `DATAHUB_VERSION` (default `head`) - Set to a specific version to run quickstart with the particular version of docker images. - `ACTIONS_VERSION` (default `head`) - Set to a specific version to run quickstart with that image tag of `datahub-actions` container. +- `DATAHUB_ACTIONS_IMAGE` (default `acryldata/datahub-actions`) - Set to `-slim` to run a slimmer actions container without pyspark/deequ features. ```shell DATAHUB_SKIP_CONFIG=false diff --git a/metadata-io/src/main/java/com/linkedin/metadata/entity/EntityServiceImpl.java b/metadata-io/src/main/java/com/linkedin/metadata/entity/EntityServiceImpl.java index 32c77b66679f9..c7a9895992d90 100644 --- a/metadata-io/src/main/java/com/linkedin/metadata/entity/EntityServiceImpl.java +++ b/metadata-io/src/main/java/com/linkedin/metadata/entity/EntityServiceImpl.java @@ -146,7 +146,7 @@ public class EntityServiceImpl implements EntityService { OBJECT_MAPPER.getFactory().setStreamReadConstraints(StreamReadConstraints.builder().maxStringLength(maxSize).build()); } - private static final int DEFAULT_MAX_TRANSACTION_RETRY = 3; + private static final int DEFAULT_MAX_TRANSACTION_RETRY = 4; protected final AspectDao _aspectDao; private final EventProducer _producer; @@ -163,6 +163,8 @@ public class EntityServiceImpl implements EntityService { // TODO(iprentic): Move this to a common utils location once used in other places private static final String DELIMITER_SEPARATOR = "␟"; + private final Integer ebeanMaxTransactionRetry; + public EntityServiceImpl( @Nonnull final AspectDao aspectDao, @Nonnull final EventProducer producer, @@ -170,6 +172,17 @@ public EntityServiceImpl( final boolean alwaysEmitChangeLog, final UpdateIndicesService updateIndicesService, final PreProcessHooks preProcessHooks) { + this(aspectDao, producer, entityRegistry, alwaysEmitChangeLog, updateIndicesService, preProcessHooks, DEFAULT_MAX_TRANSACTION_RETRY); + } + + public EntityServiceImpl( + @Nonnull final AspectDao aspectDao, + @Nonnull final EventProducer producer, + @Nonnull final EntityRegistry entityRegistry, + final boolean alwaysEmitChangeLog, + final UpdateIndicesService updateIndicesService, + final PreProcessHooks preProcessHooks, + final Integer retry) { _aspectDao = aspectDao; _producer = producer; @@ -178,8 +191,11 @@ public EntityServiceImpl( _alwaysEmitChangeLog = alwaysEmitChangeLog; _updateIndicesService = updateIndicesService; _preProcessHooks = preProcessHooks; + ebeanMaxTransactionRetry = retry != null ? retry : DEFAULT_MAX_TRANSACTION_RETRY; } + + /** * Retrieves the latest aspects corresponding to a batch of {@link Urn}s based on a provided * set of aspect names. diff --git a/metadata-service/factories/src/main/java/com/linkedin/gms/factory/entity/EntityServiceFactory.java b/metadata-service/factories/src/main/java/com/linkedin/gms/factory/entity/EntityServiceFactory.java index b8edd6918dc6c..5122be69982f0 100644 --- a/metadata-service/factories/src/main/java/com/linkedin/gms/factory/entity/EntityServiceFactory.java +++ b/metadata-service/factories/src/main/java/com/linkedin/gms/factory/entity/EntityServiceFactory.java @@ -14,6 +14,7 @@ import org.apache.avro.generic.IndexedRecord; import org.apache.kafka.clients.producer.Producer; import org.springframework.beans.factory.annotation.Qualifier; +import org.springframework.beans.factory.annotation.Value; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.context.annotation.DependsOn; @@ -24,6 +25,9 @@ @Configuration public class EntityServiceFactory { + @Value("${EBEAN_MAX_TRANSACTION_RETRY:#{null}}") + private Integer _ebeanMaxTransactionRetry; + @Bean(name = "entityService") @DependsOn({"entityAspectDao", "kafkaEventProducer", "kafkaHealthChecker", TopicConventionFactory.TOPIC_CONVENTION_BEAN, "entityRegistry"}) @@ -40,6 +44,6 @@ protected EntityService createInstance( final KafkaEventProducer eventProducer = new KafkaEventProducer(producer, convention, kafkaHealthChecker); FeatureFlags featureFlags = configurationProvider.getFeatureFlags(); return new EntityServiceImpl(aspectDao, eventProducer, entityRegistry, - featureFlags.isAlwaysEmitChangeLog(), updateIndicesService, featureFlags.getPreProcessHooks()); + featureFlags.isAlwaysEmitChangeLog(), updateIndicesService, featureFlags.getPreProcessHooks(), _ebeanMaxTransactionRetry); } } diff --git a/smoke-test/tests/cypress/cypress/e2e/mutations/deprecations.js b/smoke-test/tests/cypress/cypress/e2e/mutations/deprecations.js index de1b220922102..1d41d155440e8 100644 --- a/smoke-test/tests/cypress/cypress/e2e/mutations/deprecations.js +++ b/smoke-test/tests/cypress/cypress/e2e/mutations/deprecations.js @@ -10,10 +10,10 @@ describe("deprecation", () => { cy.addViaFormModal("test deprecation", "Add Deprecation Details"); cy.goToDataset(urn, datasetName); - cy.contains("Deprecated"); + cy.contains("DEPRECATED"); cy.openThreeDotDropdown(); cy.clickOptionWithText("Mark as un-deprecated"); - cy.ensureTextNotPresent("Deprecated"); + cy.ensureTextNotPresent("DEPRECATED"); }); }); diff --git a/smoke-test/tests/cypress/cypress/e2e/mutations/managed_ingestion.js b/smoke-test/tests/cypress/cypress/e2e/mutations/managed_ingestion.js index fd6703a7ef29e..c4d4f76698703 100644 --- a/smoke-test/tests/cypress/cypress/e2e/mutations/managed_ingestion.js +++ b/smoke-test/tests/cypress/cypress/e2e/mutations/managed_ingestion.js @@ -31,7 +31,8 @@ describe("run managed ingestion", () => { cy.waitTextVisible(testName) cy.contains(testName).parent().within(() => { - cy.contains("Succeeded", {timeout: 30000}) + // TODO: Skipping until disk size resolved + // cy.contains("Succeeded", {timeout: 30000}) cy.clickOptionWithTestId("delete-button"); }) cy.clickOptionWithText("Yes") From 9718505fc787a0d064a3d37616389648963c4462 Mon Sep 17 00:00:00 2001 From: Harshal Sheth Date: Fri, 28 Jul 2023 13:09:32 -0700 Subject: [PATCH 05/11] fix(ingest): respect max_threads for ingestion reporter (#8521) --- .../src/datahub/ingestion/graph/client.py | 5 ----- ...atahub_ingestion_checkpointing_provider.py | 4 +++- .../unit/stateful_ingestion/test_configs.py | 20 +++++++++++-------- 3 files changed, 15 insertions(+), 14 deletions(-) diff --git a/metadata-ingestion/src/datahub/ingestion/graph/client.py b/metadata-ingestion/src/datahub/ingestion/graph/client.py index de8b28d4b95a8..033fd2a68f80b 100644 --- a/metadata-ingestion/src/datahub/ingestion/graph/client.py +++ b/metadata-ingestion/src/datahub/ingestion/graph/client.py @@ -15,7 +15,6 @@ from datahub.cli.cli_utils import get_url_and_token from datahub.configuration.common import ConfigModel, GraphError, OperationalError -from datahub.configuration.validate_field_removal import pydantic_removed_field from datahub.emitter.aspect import TIMESERIES_ASPECT_MAP from datahub.emitter.mce_builder import DEFAULT_ENV, Aspect, make_data_platform_urn from datahub.emitter.mcp import MetadataChangeProposalWrapper @@ -65,10 +64,6 @@ class DatahubClientConfig(ConfigModel): ca_certificate_path: Optional[str] = None disable_ssl_verification: bool = False - _max_threads_moved_to_sink = pydantic_removed_field( - "max_threads", print_warning=False - ) - # Alias for backwards compatibility. # DEPRECATION: Remove in v0.10.2. diff --git a/metadata-ingestion/src/datahub/ingestion/source/state_provider/datahub_ingestion_checkpointing_provider.py b/metadata-ingestion/src/datahub/ingestion/source/state_provider/datahub_ingestion_checkpointing_provider.py index db9caa9706f19..874ee08cc78f9 100644 --- a/metadata-ingestion/src/datahub/ingestion/source/state_provider/datahub_ingestion_checkpointing_provider.py +++ b/metadata-ingestion/src/datahub/ingestion/source/state_provider/datahub_ingestion_checkpointing_provider.py @@ -42,7 +42,9 @@ def create( elif config_dict is None: raise ConfigurationError("Missing provider configuration.") else: - provider_config = DatahubIngestionStateProviderConfig.parse_obj(config_dict) + provider_config = ( + DatahubIngestionStateProviderConfig.parse_obj_allow_extras(config_dict) + ) if provider_config.datahub_api: graph = DataHubGraph(provider_config.datahub_api) return cls(graph, name) diff --git a/metadata-ingestion/tests/unit/stateful_ingestion/test_configs.py b/metadata-ingestion/tests/unit/stateful_ingestion/test_configs.py index 4f540f81490ac..9edfe8c4a957b 100644 --- a/metadata-ingestion/tests/unit/stateful_ingestion/test_configs.py +++ b/metadata-ingestion/tests/unit/stateful_ingestion/test_configs.py @@ -19,7 +19,7 @@ "token": "dummy_test_tok", "timeout_sec": 10, "extra_headers": {}, - "max_threads": 15, + "max_threads": 10, }, "simple": {}, "default": {}, @@ -44,11 +44,15 @@ "datahub_api": datahub_client_configs["full"], }, DatahubIngestionStateProviderConfig( - datahub_api=DatahubClientConfig( - server="http://localhost:8080", - token="dummy_test_tok", - timeout_sec=10, - extra_headers={}, + # This test verifies that the max_threads arg is ignored. + datahub_api=DatahubClientConfig.parse_obj_allow_extras( + dict( + server="http://localhost:8080", + token="dummy_test_tok", + timeout_sec=10, + extra_headers={}, + max_threads=10, + ) ), ), False, @@ -188,7 +192,7 @@ def test_state_provider_configs( if raises_exception: with pytest.raises(ValidationError): assert expected is None - config_class.parse_obj(config_dict) + config_class.parse_obj_allow_extras(config_dict) else: - config = config_class.parse_obj(config_dict) + config = config_class.parse_obj_allow_extras(config_dict) assert config == expected From 89f23d3c362ab9523a9689bf7e0390c0d3333f2e Mon Sep 17 00:00:00 2001 From: Harshal Sheth Date: Fri, 28 Jul 2023 13:10:19 -0700 Subject: [PATCH 06/11] chore(ingest): bump sqllineage and sqlparse (#8481) --- metadata-ingestion/setup.py | 9 ++++----- metadata-ingestion/tests/unit/test_usage_common.py | 2 +- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/metadata-ingestion/setup.py b/metadata-ingestion/setup.py index 04bc03a236f07..5498c96d91af6 100644 --- a/metadata-ingestion/setup.py +++ b/metadata-ingestion/setup.py @@ -126,12 +126,11 @@ def get_long_description(): } sqllineage_lib = { - "sqllineage==1.3.6", + "sqllineage==1.3.8", # We don't have a direct dependency on sqlparse but it is a dependency of sqllineage. - # As per https://github.com/reata/sqllineage/issues/361 - # and https://github.com/reata/sqllineage/pull/360 - # sqllineage has compat issues with sqlparse 0.4.4. - "sqlparse==0.4.3", + # There have previously been issues from not pinning sqlparse, so it's best to pin it. + # Related: https://github.com/reata/sqllineage/issues/361 and https://github.com/reata/sqllineage/pull/360 + "sqlparse==0.4.4", } sqlglot_lib = { diff --git a/metadata-ingestion/tests/unit/test_usage_common.py b/metadata-ingestion/tests/unit/test_usage_common.py index 1dbd5b2563cdc..8c9c25593afa8 100644 --- a/metadata-ingestion/tests/unit/test_usage_common.py +++ b/metadata-ingestion/tests/unit/test_usage_common.py @@ -199,7 +199,7 @@ def test_make_usage_workunit(): def test_query_formatting(): test_email = "test_email@test.com" test_query = "select * from foo where id in (select id from bar);" - formatted_test_query: str = "SELECT *\n FROM foo\n WHERE id in (\n SELECT id\n FROM bar\n );" + formatted_test_query: str = "SELECT *\n FROM foo\n WHERE id IN (\n SELECT id\n FROM bar\n );" event_time = datetime(2020, 1, 1) floored_ts = get_time_bucket(event_time, BucketDuration.DAY) From fa05aae959b0f56c6535150a5455f65364e1f1e7 Mon Sep 17 00:00:00 2001 From: david-leifker <114954101+david-leifker@users.noreply.github.com> Date: Fri, 28 Jul 2023 17:41:58 -0500 Subject: [PATCH 07/11] fix(search): fix lightning cache enable logic (#8522) --- .../metadata/search/LineageSearchService.java | 17 ++++--- .../metadata/search/utils/SearchUtils.java | 5 +- .../search/LineageSearchServiceTest.java | 49 ++++++++++++++----- 3 files changed, 47 insertions(+), 24 deletions(-) diff --git a/metadata-io/src/main/java/com/linkedin/metadata/search/LineageSearchService.java b/metadata-io/src/main/java/com/linkedin/metadata/search/LineageSearchService.java index 5fb1ab0889e71..930a55c56cb6e 100644 --- a/metadata-io/src/main/java/com/linkedin/metadata/search/LineageSearchService.java +++ b/metadata-io/src/main/java/com/linkedin/metadata/search/LineageSearchService.java @@ -189,11 +189,14 @@ public LineageSearchResult searchAcrossLineage(@Nonnull Urn sourceUrn, @Nonnull long numEntities = 0; String codePath = null; try { - if (canDoLightning(lineageRelationships, input, inputFilters, sortCriterion)) { + Filter reducedFilters = + SearchUtils.removeCriteria(inputFilters, criterion -> criterion.getField().equals(DEGREE_FILTER_INPUT)); + + if (canDoLightning(lineageRelationships, input, reducedFilters, sortCriterion)) { codePath = "lightning"; // use lightning approach to return lineage search results LineageSearchResult lineageSearchResult = getLightningSearchResult(lineageRelationships, - inputFilters, from, size, new HashSet<>(entities)); + reducedFilters, from, size, new HashSet<>(entities)); if (!lineageSearchResult.getEntities().isEmpty()) { log.debug("Lightning Lineage entity result: {}", lineageSearchResult.getEntities().get(0).toString()); } @@ -202,7 +205,7 @@ public LineageSearchResult searchAcrossLineage(@Nonnull Urn sourceUrn, @Nonnull } else { codePath = "tortoise"; LineageSearchResult lineageSearchResult = getSearchResultInBatches(lineageRelationships, input, - inputFilters, sortCriterion, from, size, finalFlags); + reducedFilters, sortCriterion, from, size, finalFlags); if (!lineageSearchResult.getEntities().isEmpty()) { log.debug("Lineage entity result: {}", lineageSearchResult.getEntities().get(0).toString()); } @@ -513,15 +516,13 @@ private Filter buildFilter(@Nonnull Set urns, @Nullable Filter inputFilters if (inputFilters == null) { return QueryUtils.newFilter(urnMatchCriterion); } - Filter reducedFilters = - SearchUtils.removeCriteria(inputFilters, criterion -> criterion.getField().equals(DEGREE_FILTER_INPUT)); // Add urn match criterion to each or clause - if (!CollectionUtils.isEmpty(reducedFilters.getOr())) { - for (ConjunctiveCriterion conjunctiveCriterion : reducedFilters.getOr()) { + if (!CollectionUtils.isEmpty(inputFilters.getOr())) { + for (ConjunctiveCriterion conjunctiveCriterion : inputFilters.getOr()) { conjunctiveCriterion.getAnd().add(urnMatchCriterion); } - return reducedFilters; + return inputFilters; } return QueryUtils.newFilter(urnMatchCriterion); } diff --git a/metadata-io/src/main/java/com/linkedin/metadata/search/utils/SearchUtils.java b/metadata-io/src/main/java/com/linkedin/metadata/search/utils/SearchUtils.java index 38bdef5bd3bdc..5b9ce7444ae38 100644 --- a/metadata-io/src/main/java/com/linkedin/metadata/search/utils/SearchUtils.java +++ b/metadata-io/src/main/java/com/linkedin/metadata/search/utils/SearchUtils.java @@ -120,9 +120,8 @@ public static String readResourceFile(@Nonnull Class clazz, @Nonnull String file } } - @Nonnull - public static Filter removeCriteria(@Nonnull Filter originalFilter, Predicate shouldRemove) { - if (originalFilter.getOr() != null) { + public static Filter removeCriteria(@Nullable Filter originalFilter, Predicate shouldRemove) { + if (originalFilter != null && originalFilter.getOr() != null) { return new Filter().setOr(new ConjunctiveCriterionArray(originalFilter.getOr() .stream() .map(criteria -> removeCriteria(criteria, shouldRemove)) diff --git a/metadata-io/src/test/java/com/linkedin/metadata/search/LineageSearchServiceTest.java b/metadata-io/src/test/java/com/linkedin/metadata/search/LineageSearchServiceTest.java index e8872691772de..e5396ffaebe99 100644 --- a/metadata-io/src/test/java/com/linkedin/metadata/search/LineageSearchServiceTest.java +++ b/metadata-io/src/test/java/com/linkedin/metadata/search/LineageSearchServiceTest.java @@ -132,7 +132,7 @@ private void resetService(boolean withCache, boolean withLightingCache) { searchLineageCacheConfiguration.setTtlSeconds(600L); searchLineageCacheConfiguration.setLightningThreshold(withLightingCache ? -1 : 300); - _lineageSearchService = new LineageSearchService( + _lineageSearchService = spy(new LineageSearchService( new SearchService( new EntityDocCountCache(_entityRegistry, _elasticSearchService, entityDocCountCacheConfiguration), cachingEntitySearchService, @@ -143,7 +143,7 @@ private void resetService(boolean withCache, boolean withLightingCache) { 100, true), new SimpleRanker()), - _graphService, _cacheManager.getCache("test"), withCache, searchLineageCacheConfiguration); + _graphService, _cacheManager.getCache("test"), withCache, searchLineageCacheConfiguration)); } @BeforeMethod @@ -371,16 +371,19 @@ public void testLightningSearchService() throws Exception { assertEquals(searchResult.getNumEntities().intValue(), 1); assertEquals(searchResult.getEntities().get(0).getEntity(), urn); assertEquals(searchResult.getEntities().get(0).getDegree().intValue(), 1); + verify(_lineageSearchService, times(1)).getLightningSearchResult(any(), any(), anyInt(), anyInt(), anySet()); searchResult = searchAcrossLineage(QueryUtils.newFilter("degree.keyword", "1"), testStar); assertEquals(searchResult.getNumEntities().intValue(), 1); assertEquals(searchResult.getEntities().get(0).getEntity(), urn); assertEquals(searchResult.getEntities().get(0).getDegree().intValue(), 1); + verify(_lineageSearchService, times(2)).getLightningSearchResult(any(), any(), anyInt(), anyInt(), anySet()); searchResult = searchAcrossLineage(QueryUtils.newFilter("degree.keyword", "2"), testStar); assertEquals(searchResult.getNumEntities().intValue(), 0); assertEquals(searchResult.getEntities().size(), 0); - clearCache(true); + verify(_lineageSearchService, times(3)).getLightningSearchResult(any(), any(), anyInt(), anyInt(), anySet()); + clearCache(true); // resets spy Urn urn2 = new TestEntityUrn("test2", "urn2", "VALUE_2"); ObjectNode document2 = JsonNodeFactory.instance.objectNode(); @@ -394,6 +397,7 @@ public void testLightningSearchService() throws Exception { searchResult = searchAcrossLineage(null, testStar); assertEquals(searchResult.getNumEntities().intValue(), 1); assertEquals(searchResult.getEntities().get(0).getEntity(), urn); + verify(_lineageSearchService, times(1)).getLightningSearchResult(any(), any(), anyInt(), anyInt(), anySet()); clearCache(true); when(_graphService.getLineage(eq(TEST_URN), eq(LineageDirection.DOWNSTREAM), anyInt(), anyInt(), @@ -402,10 +406,12 @@ public void testLightningSearchService() throws Exception { searchResult = searchAcrossLineage(null, testStar); assertEquals(searchResult.getNumEntities().intValue(), 1); assertEquals(searchResult.getEntities().size(), 1); + verify(_lineageSearchService, times(1)).getLightningSearchResult(any(), any(), anyInt(), anyInt(), anySet()); clearCache(true); // Test Cache Behavior - Mockito.reset(_graphService); + reset(_graphService); + reset(_lineageSearchService); // Case 1: Use the maxHops in the cache. when(_graphService.getLineage(eq(TEST_URN), eq(LineageDirection.DOWNSTREAM), anyInt(), anyInt(), @@ -421,16 +427,18 @@ public void testLightningSearchService() throws Exception { new SearchFlags().setSkipCache(false)); assertEquals(searchResult.getNumEntities().intValue(), 1); - Mockito.verify(_graphService, times(1)).getLineage(eq(TEST_URN), eq(LineageDirection.DOWNSTREAM), anyInt(), anyInt(), + verify(_graphService, times(1)).getLineage(eq(TEST_URN), eq(LineageDirection.DOWNSTREAM), anyInt(), anyInt(), eq(1000), eq(null), eq(null)); + verify(_lineageSearchService, times(1)).getLightningSearchResult(any(), any(), anyInt(), anyInt(), anySet()); // Hit the cache on second attempt searchResult = _lineageSearchService.searchAcrossLineage(TEST_URN, LineageDirection.DOWNSTREAM, ImmutableList.of(ENTITY_NAME), "*", 1000, null, null, 0, 10, null, null, new SearchFlags().setSkipCache(false)); assertEquals(searchResult.getNumEntities().intValue(), 1); - Mockito.verify(_graphService, times(1)).getLineage(eq(TEST_URN), eq(LineageDirection.DOWNSTREAM), anyInt(), anyInt(), + verify(_graphService, times(1)).getLineage(eq(TEST_URN), eq(LineageDirection.DOWNSTREAM), anyInt(), anyInt(), eq(1000), eq(null), eq(null)); + verify(_lineageSearchService, times(2)).getLightningSearchResult(any(), any(), anyInt(), anyInt(), anySet()); // Case 2: Use the start and end time in the cache. @@ -447,20 +455,24 @@ public void testLightningSearchService() throws Exception { new SearchFlags().setSkipCache(false)); assertEquals(searchResult.getNumEntities().intValue(), 1); - Mockito.verify(_graphService, times(1)).getLineage(eq(TEST_URN), eq(LineageDirection.DOWNSTREAM), anyInt(), anyInt(), + verify(_graphService, times(1)).getLineage(eq(TEST_URN), eq(LineageDirection.DOWNSTREAM), anyInt(), anyInt(), eq(1000), eq(0L), eq(1L)); + verify(_lineageSearchService, times(3)).getLightningSearchResult(any(), any(), anyInt(), anyInt(), anySet()); // Hit the cache on second attempt searchResult = _lineageSearchService.searchAcrossLineage(TEST_URN, LineageDirection.DOWNSTREAM, ImmutableList.of(ENTITY_NAME), "*", null, null, null, 0, 10, 0L, 1L, new SearchFlags().setSkipCache(false)); assertEquals(searchResult.getNumEntities().intValue(), 1); - Mockito.verify(_graphService, times(1)).getLineage(eq(TEST_URN), eq(LineageDirection.DOWNSTREAM), anyInt(), anyInt(), + verify(_graphService, times(1)).getLineage(eq(TEST_URN), eq(LineageDirection.DOWNSTREAM), anyInt(), anyInt(), eq(1000), eq(0L), eq(1L)); + verify(_lineageSearchService, times(4)).getLightningSearchResult(any(), any(), anyInt(), anyInt(), anySet()); /* * Test filtering */ + reset(_lineageSearchService); + // Entity searchResult = _lineageSearchService.searchAcrossLineage(TEST_URN, LineageDirection.DOWNSTREAM, ImmutableList.of(DATASET_ENTITY_NAME), @@ -468,6 +480,7 @@ public void testLightningSearchService() throws Exception { new SearchFlags().setSkipCache(false)); assertEquals(searchResult.getNumEntities().intValue(), 0); assertEquals(searchResult.getEntities().size(), 0); + verify(_lineageSearchService, times(1)).getLightningSearchResult(any(), any(), anyInt(), anyInt(), anySet()); // Cached searchResult = @@ -476,25 +489,35 @@ public void testLightningSearchService() throws Exception { new SearchFlags().setSkipCache(false)); Mockito.verify(_graphService, times(1)).getLineage(eq(TEST_URN), eq(LineageDirection.DOWNSTREAM), anyInt(), anyInt(), eq(1000), eq(0L), eq(1L)); + verify(_lineageSearchService, times(2)).getLightningSearchResult(any(), any(), anyInt(), anyInt(), anySet()); assertEquals(searchResult.getNumEntities().intValue(), 0); assertEquals(searchResult.getEntities().size(), 0); // Platform - Filter filter = QueryUtils.newFilter("platform", "urn:li:dataPlatform:kafka"); + ConjunctiveCriterionArray conCritArr = new ConjunctiveCriterionArray(); + Criterion platform1Crit = new Criterion().setField("platform").setValue("urn:li:dataPlatform:kafka").setCondition(Condition.EQUAL); + CriterionArray critArr = new CriterionArray(ImmutableList.of(platform1Crit)); + conCritArr.add(new ConjunctiveCriterion().setAnd(critArr)); + Criterion degreeCrit = new Criterion().setField("degree.keyword").setValue("2").setCondition(Condition.EQUAL); + conCritArr.add(new ConjunctiveCriterion().setAnd(new CriterionArray(ImmutableList.of(degreeCrit)))); + Filter filter = new Filter().setOr(conCritArr); + searchResult = _lineageSearchService.searchAcrossLineage(TEST_URN, LineageDirection.DOWNSTREAM, ImmutableList.of(ENTITY_NAME), "*", 1000, filter, null, 0, 10, null, null, new SearchFlags().setSkipCache(false)); assertEquals(searchResult.getNumEntities().intValue(), 0); assertEquals(searchResult.getEntities().size(), 0); + verify(_lineageSearchService, times(3)).getLightningSearchResult(any(), any(), anyInt(), anyInt(), anySet()); // Cached searchResult = _lineageSearchService.searchAcrossLineage(TEST_URN, LineageDirection.DOWNSTREAM, ImmutableList.of(ENTITY_NAME), "*", 1000, filter, null, 0, 10, null, null, new SearchFlags().setSkipCache(false)); - Mockito.verify(_graphService, times(1)).getLineage(eq(TEST_URN), eq(LineageDirection.DOWNSTREAM), anyInt(), anyInt(), + verify(_graphService, times(1)).getLineage(eq(TEST_URN), eq(LineageDirection.DOWNSTREAM), anyInt(), anyInt(), eq(1000), eq(0L), eq(1L)); + verify(_lineageSearchService, times(4)).getLightningSearchResult(any(), any(), anyInt(), anyInt(), anySet()); assertEquals(searchResult.getNumEntities().intValue(), 0); assertEquals(searchResult.getEntities().size(), 0); @@ -506,14 +529,16 @@ public void testLightningSearchService() throws Exception { new SearchFlags().setSkipCache(false)); assertEquals(searchResult.getNumEntities().intValue(), 0); assertEquals(searchResult.getEntities().size(), 0); + verify(_lineageSearchService, times(5)).getLightningSearchResult(any(), any(), anyInt(), anyInt(), anySet()); // Cached searchResult = _lineageSearchService.searchAcrossLineage(TEST_URN, LineageDirection.DOWNSTREAM, ImmutableList.of(ENTITY_NAME), "*", 1000, originFilter, null, 0, 10, null, null, new SearchFlags().setSkipCache(false)); - Mockito.verify(_graphService, times(1)).getLineage(eq(TEST_URN), eq(LineageDirection.DOWNSTREAM), anyInt(), anyInt(), + verify(_graphService, times(1)).getLineage(eq(TEST_URN), eq(LineageDirection.DOWNSTREAM), anyInt(), anyInt(), eq(1000), eq(0L), eq(1L)); + verify(_lineageSearchService, times(6)).getLightningSearchResult(any(), any(), anyInt(), anyInt(), anySet()); assertEquals(searchResult.getNumEntities().intValue(), 0); assertEquals(searchResult.getEntities().size(), 0); @@ -749,7 +774,5 @@ public void testCanDoLightning() throws Exception { size = 10; filter = new Filter().setOr(conCritArr); Assert.assertTrue(_lineageSearchService.canDoLightning(lineageRelationships, "*", filter, null)); - - } } From 4b32e9a9abef88cf47595770367ab571631c8633 Mon Sep 17 00:00:00 2001 From: david-leifker <114954101+david-leifker@users.noreply.github.com> Date: Fri, 28 Jul 2023 21:07:03 -0500 Subject: [PATCH 08/11] docs(docker): document docker container dependency tree (#8496) --- docs-website/sidebars.js | 1 + docs/architecture/docker-containers.md | 27 ++++++++++++++++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 docs/architecture/docker-containers.md diff --git a/docs-website/sidebars.js b/docs-website/sidebars.js index 7d651fd5d1894..2f584e2bd2e11 100644 --- a/docs-website/sidebars.js +++ b/docs-website/sidebars.js @@ -445,6 +445,7 @@ module.exports = { "docs/components", "docs/architecture/metadata-ingestion", "docs/architecture/metadata-serving", + "docs/architecture/docker-containers", ], }, { diff --git a/docs/architecture/docker-containers.md b/docs/architecture/docker-containers.md new file mode 100644 index 0000000000000..099a4fe21597a --- /dev/null +++ b/docs/architecture/docker-containers.md @@ -0,0 +1,27 @@ +--- +title: "Docker Container Architecture" +--- + +# Docker Container Architecture + +When running DataHub via docker-compose. or helm, the following is a diagram of the containers involved +with running DataHub and their relationships with each other. The helm chart uses helm hooks to determine +the proper ordering of the components whereas docker-compose relies on a series of health checks. + +```text + datahub-frontend-react datahub-actions + \ / + | datahub-upgrade (NoCodeDataMigration, helm only) + | / + datahub-gms (healthy) + | + datahub-upgrade (SystemUpdate completed) + /--------------------/ | \ \------------------------------------------------\ + / | \-------------------\ \ +mysql-setup (completed) elasticsearch-setup (completed) kafka-setup (completed) (if apply) neo4j (healthy) + | | / \ + | | / \ +mysql (healthy) elasticsearch (healthy) broker (healthy) (if not internal) schema-registry (healthy) + | + zookeeper (healthy) +``` \ No newline at end of file From e09a2e6c85460f6842b7a066963496cdf756522a Mon Sep 17 00:00:00 2001 From: Indy Prentice Date: Sat, 29 Jul 2023 04:56:49 -0300 Subject: [PATCH 09/11] feat(lineage): Apply search flags to scroll query in LineageSearchService (#8518) Co-authored-by: Indy Prentice --- .../com/linkedin/metadata/search/LineageSearchService.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/metadata-io/src/main/java/com/linkedin/metadata/search/LineageSearchService.java b/metadata-io/src/main/java/com/linkedin/metadata/search/LineageSearchService.java index 930a55c56cb6e..c561ddd38b919 100644 --- a/metadata-io/src/main/java/com/linkedin/metadata/search/LineageSearchService.java +++ b/metadata-io/src/main/java/com/linkedin/metadata/search/LineageSearchService.java @@ -606,6 +606,7 @@ public LineageScrollResult scrollAcrossLineage(@Nonnull Urn sourceUrn, @Nonnull private LineageScrollResult getScrollResultInBatches(List lineageRelationships, @Nonnull String input, @Nullable Filter inputFilters, @Nullable SortCriterion sortCriterion, @Nullable String scrollId, @Nonnull String keepAlive, int size, @Nonnull SearchFlags searchFlags) { + final SearchFlags finalFlags = applyDefaultSearchFlags(searchFlags, input, DEFAULT_SERVICE_SEARCH_FLAGS); LineageScrollResult finalResult = new LineageScrollResult().setEntities(new LineageSearchEntityArray(Collections.emptyList())) .setMetadata(new SearchResultMetadata().setAggregations(new AggregationMetadataArray())) @@ -623,7 +624,7 @@ private LineageScrollResult getScrollResultInBatches(List l LineageScrollResult resultForBatch = buildLineageScrollResult( _searchService.scrollAcrossEntities(entitiesToQuery, input, finalFilter, sortCriterion, scrollId, keepAlive, querySize, - searchFlags), urnToRelationship); + finalFlags), urnToRelationship); querySize = Math.max(0, size - resultForBatch.getEntities().size()); finalResult = mergeScrollResult(finalResult, resultForBatch); } From 55c6592575fdfa314601b1020b8e03f564321c6b Mon Sep 17 00:00:00 2001 From: Indy Prentice Date: Sat, 29 Jul 2023 04:57:10 -0300 Subject: [PATCH 10/11] feat(search): Throw exception instead of returning an empty response from scroll in an error case (#8517) Co-authored-by: Indy Prentice --- .../search/elasticsearch/query/ESSearchDAO.java | 10 ---------- .../metadata/search/utils/SearchUtils.java | 16 ---------------- 2 files changed, 26 deletions(-) diff --git a/metadata-io/src/main/java/com/linkedin/metadata/search/elasticsearch/query/ESSearchDAO.java b/metadata-io/src/main/java/com/linkedin/metadata/search/elasticsearch/query/ESSearchDAO.java index 57e8967c83985..e204cb6fd6fbe 100644 --- a/metadata-io/src/main/java/com/linkedin/metadata/search/elasticsearch/query/ESSearchDAO.java +++ b/metadata-io/src/main/java/com/linkedin/metadata/search/elasticsearch/query/ESSearchDAO.java @@ -33,7 +33,6 @@ import javax.annotation.Nullable; import lombok.RequiredArgsConstructor; import lombok.extern.slf4j.Slf4j; -import org.elasticsearch.ElasticsearchStatusException; import org.elasticsearch.action.search.SearchRequest; import org.elasticsearch.action.search.SearchResponse; import org.elasticsearch.client.Request; @@ -44,7 +43,6 @@ import static com.linkedin.metadata.Constants.*; import static com.linkedin.metadata.models.registry.template.util.TemplateUtil.*; -import static com.linkedin.metadata.search.utils.SearchUtils.*; import static com.linkedin.metadata.utils.SearchUtil.*; @@ -154,14 +152,6 @@ private ScrollResult executeAndExtract(@Nonnull List entitySpecs, @N .extractScrollResult(searchResponse, filter, scrollId, keepAlive, size, supportsPointInTime())); } catch (Exception e) { - if (e instanceof ElasticsearchStatusException) { - final ElasticsearchStatusException statusException = (ElasticsearchStatusException) e; - if (statusException.status().getStatus() == 400) { - // Malformed query -- Could indicate bad search syntax. Return empty response. - log.warn("Received 400 from Elasticsearch. Returning empty search response", e); - return EMPTY_SCROLL_RESULT; - } - } log.error("Search query failed", e); throw new ESQueryException("Search query failed:", e); } diff --git a/metadata-io/src/main/java/com/linkedin/metadata/search/utils/SearchUtils.java b/metadata-io/src/main/java/com/linkedin/metadata/search/utils/SearchUtils.java index 5b9ce7444ae38..35a322d37b2fd 100644 --- a/metadata-io/src/main/java/com/linkedin/metadata/search/utils/SearchUtils.java +++ b/metadata-io/src/main/java/com/linkedin/metadata/search/utils/SearchUtils.java @@ -12,11 +12,8 @@ import com.linkedin.metadata.query.filter.Filter; import com.linkedin.metadata.search.AggregationMetadata; import com.linkedin.metadata.search.FilterValueArray; -import com.linkedin.metadata.search.ScrollResult; import com.linkedin.metadata.search.SearchEntity; -import com.linkedin.metadata.search.SearchEntityArray; import com.linkedin.metadata.search.SearchResult; -import com.linkedin.metadata.search.SearchResultMetadata; import com.linkedin.metadata.utils.SearchUtil; import java.io.IOException; import java.io.InputStream; @@ -39,19 +36,6 @@ @Slf4j public class SearchUtils { - public static final SearchResult EMPTY_SEARCH_RESULT = - new SearchResult().setEntities(new SearchEntityArray(Collections.emptyList())) - .setMetadata(new SearchResultMetadata()) - .setFrom(0) - .setPageSize(0) - .setNumEntities(0); - - public static final ScrollResult EMPTY_SCROLL_RESULT = - new ScrollResult().setEntities(new SearchEntityArray(Collections.emptyList())) - .setMetadata(new SearchResultMetadata()) - .setPageSize(0) - .setNumEntities(0); - private SearchUtils() { } From 753b0f1acc6994694d0c6cace0499b05ef352c0d Mon Sep 17 00:00:00 2001 From: Yang Jiandan Date: Sat, 29 Jul 2023 19:28:11 +0800 Subject: [PATCH 11/11] fix(gms): GMS hang when upgrade image #8270 (#8271) Co-authored-by: yangjd33 Co-authored-by: david-leifker <114954101+david-leifker@users.noreply.github.com> --- .../metadata/boot/kafka/DataHubUpgradeKafkaListener.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/metadata-service/factories/src/main/java/com/linkedin/metadata/boot/kafka/DataHubUpgradeKafkaListener.java b/metadata-service/factories/src/main/java/com/linkedin/metadata/boot/kafka/DataHubUpgradeKafkaListener.java index e3f3a9c5b76a5..11d12072e12b7 100644 --- a/metadata-service/factories/src/main/java/com/linkedin/metadata/boot/kafka/DataHubUpgradeKafkaListener.java +++ b/metadata-service/factories/src/main/java/com/linkedin/metadata/boot/kafka/DataHubUpgradeKafkaListener.java @@ -108,6 +108,10 @@ public void checkSystemVersion(final ConsumerRecord consu } public void waitForUpdate() { + if (!_configurationProvider.getSystemUpdate().isWaitForSystemUpdate()) { + log.warn("Wait for system update is disabled. Proceeding with startup."); + IS_UPDATED.getAndSet(true); + } int maxBackOffs = Integer.parseInt(_configurationProvider.getSystemUpdate().getMaxBackOffs()); long initialBackOffMs = Long.parseLong(_configurationProvider.getSystemUpdate().getInitialBackOffMs()); int backOffFactor = Integer.parseInt(_configurationProvider.getSystemUpdate().getBackOffFactor());