diff --git a/metadata-ingestion/src/datahub/ingestion/source/tableau.py b/metadata-ingestion/src/datahub/ingestion/source/tableau.py index e6e261a8fdd465..81fcac55328ef3 100644 --- a/metadata-ingestion/src/datahub/ingestion/source/tableau.py +++ b/metadata-ingestion/src/datahub/ingestion/source/tableau.py @@ -15,7 +15,8 @@ ) import datahub.emitter.mce_builder as builder -from datahub.configuration.common import ConfigModel, ConfigurationError +from datahub.configuration.common import ConfigurationError +from datahub.configuration.source_common import DatasetLineageProviderConfigBase from datahub.emitter.mcp import MetadataChangeProposalWrapper from datahub.emitter.mcp_builder import ( PlatformKey, @@ -36,8 +37,10 @@ from datahub.ingestion.source.tableau_common import ( FIELD_TYPE_MAPPING, MetadataQueryException, + TableauLineageOverrides, clean_query, custom_sql_graphql_query, + embedded_datasource_graphql_query, get_field_value_in_sheet, get_tags_from_params, get_unique_custom_sql, @@ -89,7 +92,7 @@ REPLACE_SLASH_CHAR = "|" -class TableauConfig(ConfigModel): +class TableauConfig(DatasetLineageProviderConfigBase): connect_uri: str = Field(description="Tableau host URL.") username: Optional[str] = Field( default=None, @@ -147,6 +150,11 @@ class TableauConfig(ConfigModel): description="Environment to use in namespace when constructing URNs.", ) + lineage_overrides: Optional[TableauLineageOverrides] = Field( + default=None, + description="Mappings to change generated dataset urns. Use only if you really know what you are doing.", + ) + @validator("connect_uri") def remove_trailing_slash(cls, v): return config_clean.remove_trailing_slashes(v) @@ -210,6 +218,10 @@ def __init__( self.config = config self.report = SourceReport() self.server = None + + # This list keeps track of embedded datasources in workbooks so that we retrieve those + # when emitting embedded data sources. + self.embedded_datasource_ids_being_used: List[str] = [] # This list keeps track of datasource being actively used by workbooks so that we only retrieve those # when emitting published data sources. self.datasource_ids_being_used: List[str] = [] @@ -329,8 +341,8 @@ def emit_workbooks(self) -> Iterable[MetadataWorkUnit]: yield from self.emit_workbook_as_container(workbook) yield from self.emit_sheets_as_charts(workbook) yield from self.emit_dashboards(workbook) - yield from self.emit_embedded_datasource(workbook) - yield from self.emit_upstream_tables() + for ds in workbook.get("embeddedDatasources", []): + self.embedded_datasource_ids_being_used.append(ds["id"]) def _track_custom_sql_ids(self, field: dict) -> None: # Tableau shows custom sql datasource as a table in ColumnField. @@ -419,12 +431,15 @@ def _create_upstream_table_lineage( f"Omitting schema for upstream table {table['id']}, schema included in table name" ) schema = "" + table_urn = make_table_urn( self.config.env, upstream_db, table.get("connectionType", ""), schema, table_name, + self.config.platform_instance_map, + self.config.lineage_overrides, ) upstream_table = UpstreamClass( @@ -447,7 +462,7 @@ def _create_upstream_table_lineage( return upstream_tables def emit_custom_sql_datasources(self) -> Iterable[MetadataWorkUnit]: - count_on_query = len(self.custom_sql_ids_being_used) + count_on_query = self.config.page_size custom_sql_filter = f"idWithin: {json.dumps(self.custom_sql_ids_being_used)}" custom_sql_connection, total_count, has_next_page = self.get_connection_object( custom_sql_graphql_query, "customSQLTablesConnection", custom_sql_filter @@ -509,11 +524,14 @@ def emit_custom_sql_datasources(self) -> Iterable[MetadataWorkUnit]: and datasource.get("workbook").get("name") else None ) - yield from add_entity_to_container( + workunits = add_entity_to_container( self.gen_workbook_key(datasource["workbook"]), "dataset", dataset_snapshot.urn, ) + for wu in workunits: + self.report.report_workunit(wu) + yield wu project = self._get_project(datasource) # lineage from custom sql -> datasets/tables # @@ -555,7 +573,7 @@ def emit_custom_sql_datasources(self) -> Iterable[MetadataWorkUnit]: yield self.get_metadata_change_proposal( dataset_snapshot.urn, aspect_name="subTypes", - aspect=SubTypesClass(typeNames=["View", "Custom SQL"]), + aspect=SubTypesClass(typeNames=["view", "Custom SQL"]), ) def get_schema_metadata_for_custom_sql( @@ -818,12 +836,15 @@ def emit_datasource( ) if is_embedded_ds: - yield from add_entity_to_container( + workunits = add_entity_to_container( self.gen_workbook_key(workbook), "dataset", dataset_snapshot.urn ) + for wu in workunits: + self.report.report_workunit(wu) + yield wu def emit_published_datasources(self) -> Iterable[MetadataWorkUnit]: - count_on_query = len(self.datasource_ids_being_used) + count_on_query = self.config.page_size datasource_filter = f"idWithin: {json.dumps(self.datasource_ids_being_used)}" ( published_datasource_conn, @@ -1007,9 +1028,12 @@ def emit_sheets_as_charts(self, workbook: Dict) -> Iterable[MetadataWorkUnit]: yield self.get_metadata_change_event(chart_snapshot) - yield from add_entity_to_container( + workunits = add_entity_to_container( self.gen_workbook_key(workbook), "chart", chart_snapshot.urn ) + for wu in workunits: + self.report.report_workunit(wu) + yield wu def emit_workbook_as_container(self, workbook: Dict) -> Iterable[MetadataWorkUnit]: @@ -1115,13 +1139,51 @@ def emit_dashboards(self, workbook: Dict) -> Iterable[MetadataWorkUnit]: yield self.get_metadata_change_event(dashboard_snapshot) - yield from add_entity_to_container( + workunits = add_entity_to_container( self.gen_workbook_key(workbook), "dashboard", dashboard_snapshot.urn ) + for wu in workunits: + self.report.report_workunit(wu) + yield wu + + def emit_embedded_datasources(self) -> Iterable[MetadataWorkUnit]: + count_on_query = self.config.page_size + datasource_filter = ( + f"idWithin: {json.dumps(self.embedded_datasource_ids_being_used)}" + ) + ( + embedded_datasource_conn, + total_count, + has_next_page, + ) = self.get_connection_object( + embedded_datasource_graphql_query, + "embeddedDatasourcesConnection", + datasource_filter, + ) + current_count = 0 + while has_next_page: + count = ( + count_on_query + if current_count + count_on_query < total_count + else total_count - current_count + ) + ( + embedded_datasource_conn, + total_count, + has_next_page, + ) = self.get_connection_object( + embedded_datasource_graphql_query, + "embeddedDatasourcesConnection", + datasource_filter, + count, + current_count, + ) - def emit_embedded_datasource(self, workbook: Dict) -> Iterable[MetadataWorkUnit]: - for datasource in workbook.get("embeddedDatasources", []): - yield from self.emit_datasource(datasource, workbook, is_embedded_ds=True) + current_count += count + for datasource in embedded_datasource_conn.get("nodes", []): + yield from self.emit_datasource( + datasource, datasource.get("workbook"), is_embedded_ds=True + ) @lru_cache(maxsize=None) def _get_schema(self, schema_provided: str, database: str, fullName: str) -> str: @@ -1194,10 +1256,13 @@ def get_workunits(self) -> Iterable[MetadataWorkUnit]: return try: yield from self.emit_workbooks() + if self.embedded_datasource_ids_being_used: + yield from self.emit_embedded_datasources() if self.datasource_ids_being_used: yield from self.emit_published_datasources() if self.custom_sql_ids_being_used: yield from self.emit_custom_sql_datasources() + yield from self.emit_upstream_tables() except MetadataQueryException as md_exception: self.report.report_failure( key="tableau-metadata", diff --git a/metadata-ingestion/src/datahub/ingestion/source/tableau_common.py b/metadata-ingestion/src/datahub/ingestion/source/tableau_common.py index 6296af05d14616..d5121211e89c99 100644 --- a/metadata-ingestion/src/datahub/ingestion/source/tableau_common.py +++ b/metadata-ingestion/src/datahub/ingestion/source/tableau_common.py @@ -1,8 +1,11 @@ import html from functools import lru_cache -from typing import List +from typing import Dict, List, Optional + +from pydantic.fields import Field import datahub.emitter.mce_builder as builder +from datahub.configuration.common import ConfigModel from datahub.metadata.com.linkedin.pegasus2avro.schema import ( ArrayTypeClass, BooleanTypeClass, @@ -19,6 +22,13 @@ ) +class TableauLineageOverrides(ConfigModel): + platform_override_map: Optional[Dict[str, str]] = Field( + default=None, + description="A holder for platform -> platform mappings to generate correct dataset urns", + ) + + class MetadataQueryException(Exception): pass @@ -114,86 +124,96 @@ class MetadataQueryException(Exception): } } embeddedDatasources { - __typename id + } + upstreamDatasources { name - hasExtracts - extractLastRefreshTime - extractLastIncrementalUpdateTime - extractLastUpdateTime + id downstreamSheets { name id } - upstreamTables { - id - name - isEmbedded - database { + } + } +""" + +embedded_datasource_graphql_query = """ +{ + __typename + id + name + hasExtracts + extractLastRefreshTime + extractLastIncrementalUpdateTime + extractLastUpdateTime + downstreamSheets { + name + id + } + upstreamTables { + id + name + isEmbedded + database { name - } - schema - fullName - connectionType - description - columns { + } + schema + fullName + connectionType + description + columns { name remoteType - } } - fields { - __typename - id - name - description - isHidden - folderName - ... on ColumnField { + } + fields { + __typename + id + name + description + isHidden + folderName + ... on ColumnField { dataCategory role dataType defaultFormat aggregation columns { - table { - __typename - ... on CustomSQLTable { - id - name + table { + __typename + ... on CustomSQLTable { + id + name + } } - } } - } - ... on CalculatedField { + } + ... on CalculatedField { role dataType defaultFormat aggregation formula - } - ... on GroupField { + } + ... on GroupField { role dataType - } } - upstreamDatasources { - id - name - } - workbook { - name - projectName - } - } - upstreamDatasources { + } + upstreamDatasources { + id name + } + workbook { id - downstreamSheets { - name - id + name + projectName + owner { + username } - } } +} """ custom_sql_graphql_query = """ @@ -309,7 +329,9 @@ class MetadataQueryException(Exception): dataType } } - owner {username} + owner { + username + } description uri projectName @@ -384,16 +406,13 @@ def get_tags_from_params(params: List[str] = []) -> GlobalTagsClass: return GlobalTagsClass(tags=tags) -@lru_cache(maxsize=None) -def make_table_urn( - env: str, upstream_db: str, connection_type: str, schema: str, full_name: str -) -> str: +@lru_cache(128) +def get_platform(connection_type: str) -> str: # connection_type taken from # https://help.tableau.com/current/api/rest_api/en-us/REST/rest_api_concepts_connectiontype.htm # datahub platform mapping is found here # https://github.com/datahub-project/datahub/blob/master/metadata-service/war/src/main/resources/boot/data_platforms.json - final_name = full_name.replace("[", "").replace("]", "") if connection_type in ("textscan", "textclean", "excel-direct", "excel", "csv"): platform = "external" elif connection_type in ( @@ -414,11 +433,23 @@ def make_table_urn( platform = "mssql" elif connection_type in ("athena"): platform = "athena" - upstream_db = "" else: platform = connection_type + return platform + +@lru_cache(128) +def get_fully_qualified_table_name( + platform: str, + upstream_db: str, + schema: str, + full_name: str, +) -> str: + if platform == "athena": + upstream_db = "" database_name = f"{upstream_db}." if upstream_db else "" + final_name = full_name.replace("[", "").replace("]", "") + schema_name = f"{schema}." if schema else "" fully_qualified_table_name = f"{database_name}{schema_name}{final_name}" @@ -430,10 +461,54 @@ def make_table_urn( fully_qualified_table_name = ( fully_qualified_table_name.replace('\\"', "").replace('"', "").replace("\\", "") ) - # if there are more than 3 tokens, just take the final 3 - fully_qualified_table_name = ".".join(fully_qualified_table_name.split(".")[-3:]) - return builder.make_dataset_urn(platform, fully_qualified_table_name, env) + if platform in ("athena", "hive", "mysql"): + # it two tier database system (athena, hive, mysql), just take final 2 + fully_qualified_table_name = ".".join( + fully_qualified_table_name.split(".")[-2:] + ) + else: + # if there are more than 3 tokens, just take the final 3 + fully_qualified_table_name = ".".join( + fully_qualified_table_name.split(".")[-3:] + ) + + return fully_qualified_table_name + + +def get_platform_instance( + platform: str, platform_instance_map: Optional[Dict[str, str]] +) -> Optional[str]: + if platform_instance_map is not None and platform in platform_instance_map.keys(): + return platform_instance_map[platform] + + return None + + +def make_table_urn( + env: str, + upstream_db: Optional[str], + connection_type: str, + schema: str, + full_name: str, + platform_instance_map: Optional[Dict[str, str]], + lineage_overrides: Optional[TableauLineageOverrides] = None, +) -> str: + original_platform = platform = get_platform(connection_type) + if ( + lineage_overrides is not None + and lineage_overrides.platform_override_map is not None + and original_platform in lineage_overrides.platform_override_map.keys() + ): + platform = lineage_overrides.platform_override_map[original_platform] + + table_name = get_fully_qualified_table_name( + original_platform, upstream_db, schema, full_name + ) + platform_instance = get_platform_instance(original_platform, platform_instance_map) + return builder.make_dataset_urn_with_platform_instance( + platform, table_name, platform_instance, env + ) def make_description_from_params(description, formula): diff --git a/metadata-ingestion/tests/integration/tableau/setup/embeddedDatasourcesConnection_0.json b/metadata-ingestion/tests/integration/tableau/setup/embeddedDatasourcesConnection_0.json new file mode 100644 index 00000000000000..1510d1bc1e8110 --- /dev/null +++ b/metadata-ingestion/tests/integration/tableau/setup/embeddedDatasourcesConnection_0.json @@ -0,0 +1,12 @@ +{ + "data": { + "embeddedDatasourcesConnection": { + "nodes": [], + "pageInfo": { + "hasNextPage": true, + "endCursor": null + }, + "totalCount": 8 + } + } +} \ No newline at end of file diff --git a/metadata-ingestion/tests/integration/tableau/setup/embeddedDatasourcesConnection_all.json b/metadata-ingestion/tests/integration/tableau/setup/embeddedDatasourcesConnection_all.json new file mode 100644 index 00000000000000..a2644f60550ec9 --- /dev/null +++ b/metadata-ingestion/tests/integration/tableau/setup/embeddedDatasourcesConnection_all.json @@ -0,0 +1,17555 @@ +{ + "data": { + "embeddedDatasourcesConnection": { + "nodes": [ + { + "__typename": "EmbeddedDatasource", + "id": "801c95e3-b07e-7bfe-3789-a561c7beccd3", + "name": "Marketo", + "hasExtracts": true, + "extractLastRefreshTime": "2018-02-09T00:05:25Z", + "extractLastIncrementalUpdateTime": null, + "extractLastUpdateTime": "2018-02-09T00:05:25Z", + "upstreamDatabases": [ + { + "id": "678978a0-afab-5483-1a9a-536b77999ec1", + "name": "Marketo", + "connectionType": "webdata-direct:marketo-marketo", + "isEmbedded": true + } + ], + "upstreamTables": [ + { + "id": "1704c7c3-4bb9-e6c6-6ea0-23f76e7560db", + "name": "activity6", + "database": { + "name": "Marketo" + }, + "schema": "", + "fullName": "[activity6]", + "connectionType": "webdata-direct:marketo-marketo", + "description": "", + "columns": [ + { + "name": "Test_Variant", + "remoteType": "WDC_INT" + }, + { + "name": "Mailing_ID", + "remoteType": "WDC_INT" + }, + { + "name": "Campaign_Run_ID", + "remoteType": "WDC_INT" + }, + { + "name": "id", + "remoteType": "WDC_INT" + }, + { + "name": "Activity_Date", + "remoteType": "WDC_DATETIME" + }, + { + "name": "Choice_Number", + "remoteType": "WDC_INT" + }, + { + "name": "Step_ID", + "remoteType": "WDC_INT" + }, + { + "name": "Campaign_ID", + "remoteType": "WDC_INT" + }, + { + "name": "Lead_ID", + "remoteType": "WDC_INT" + }, + { + "name": "Has_Predictive", + "remoteType": "WDC_BOOL" + } + ] + }, + { + "id": "38f106d0-5219-2663-2647-bbbf5fca3866", + "name": "activity11", + "database": { + "name": "Marketo" + }, + "schema": "", + "fullName": "[activity11]", + "connectionType": "webdata-direct:marketo-marketo", + "description": "", + "columns": [ + { + "name": "Campaign_ID", + "remoteType": "WDC_INT" + }, + { + "name": "Campaign_Run_ID", + "remoteType": "WDC_INT" + }, + { + "name": "Link", + "remoteType": "WDC_STRING" + }, + { + "name": "Test_Variant", + "remoteType": "WDC_INT" + }, + { + "name": "Platform", + "remoteType": "WDC_STRING" + }, + { + "name": "id", + "remoteType": "WDC_INT" + }, + { + "name": "Activity_Date", + "remoteType": "WDC_DATETIME" + }, + { + "name": "Choice_Number", + "remoteType": "WDC_INT" + }, + { + "name": "Mailing_ID", + "remoteType": "WDC_INT" + }, + { + "name": "Step_ID", + "remoteType": "WDC_INT" + }, + { + "name": "Lead_ID", + "remoteType": "WDC_INT" + }, + { + "name": "Link_ID", + "remoteType": "WDC_STRING" + }, + { + "name": "Is_Predictive", + "remoteType": "WDC_BOOL" + }, + { + "name": "Device", + "remoteType": "WDC_STRING" + }, + { + "name": "Is_Mobile_Device", + "remoteType": "WDC_BOOL" + }, + { + "name": "User_Agent", + "remoteType": "WDC_STRING" + } + ] + }, + { + "id": "4aee37cd-e738-e5de-3c77-7a118964ac70", + "name": "activity10", + "database": { + "name": "Marketo" + }, + "schema": "", + "fullName": "[activity10]", + "connectionType": "webdata-direct:marketo-marketo", + "description": "", + "columns": [ + { + "name": "Platform", + "remoteType": "WDC_STRING" + }, + { + "name": "Device", + "remoteType": "WDC_STRING" + }, + { + "name": "Choice_Number", + "remoteType": "WDC_INT" + }, + { + "name": "Lead_ID", + "remoteType": "WDC_INT" + }, + { + "name": "Activity_Date", + "remoteType": "WDC_DATETIME" + }, + { + "name": "Test_Variant", + "remoteType": "WDC_INT" + }, + { + "name": "Is_Mobile_Device", + "remoteType": "WDC_BOOL" + }, + { + "name": "Has_Predictive", + "remoteType": "WDC_BOOL" + }, + { + "name": "Step_ID", + "remoteType": "WDC_INT" + }, + { + "name": "User_Agent", + "remoteType": "WDC_STRING" + }, + { + "name": "Mailing_ID", + "remoteType": "WDC_INT" + }, + { + "name": "Campaign_ID", + "remoteType": "WDC_INT" + }, + { + "name": "Campaign_Run_ID", + "remoteType": "WDC_INT" + }, + { + "name": "id", + "remoteType": "WDC_INT" + } + ] + }, + { + "id": "6a9da5b0-a1bc-ef1b-a154-59c2627f49b0", + "name": "activity7", + "database": { + "name": "Marketo" + }, + "schema": "", + "fullName": "[activity7]", + "connectionType": "webdata-direct:marketo-marketo", + "description": "", + "columns": [ + { + "name": "Test_Variant", + "remoteType": "WDC_INT" + }, + { + "name": "Campaign_Run_ID", + "remoteType": "WDC_INT" + }, + { + "name": "Activity_Date", + "remoteType": "WDC_DATETIME" + }, + { + "name": "Mailing_ID", + "remoteType": "WDC_INT" + }, + { + "name": "Has_Predictive", + "remoteType": "WDC_BOOL" + }, + { + "name": "id", + "remoteType": "WDC_INT" + }, + { + "name": "Campaign_ID", + "remoteType": "WDC_INT" + }, + { + "name": "Step_ID", + "remoteType": "WDC_INT" + }, + { + "name": "Lead_ID", + "remoteType": "WDC_INT" + }, + { + "name": "Choice_Number", + "remoteType": "WDC_INT" + } + ] + }, + { + "id": "82c42950-210b-ba3f-b2e9-53240474a8fd", + "name": "campaignsTable", + "database": { + "name": "Marketo" + }, + "schema": "", + "fullName": "[campaignsTable]", + "connectionType": "webdata-direct:marketo-marketo", + "description": "", + "columns": [ + { + "name": "programName", + "remoteType": "WDC_STRING" + }, + { + "name": "name", + "remoteType": "WDC_STRING" + }, + { + "name": "programId", + "remoteType": "WDC_INT" + }, + { + "name": "description", + "remoteType": "WDC_STRING" + }, + { + "name": "createdAt", + "remoteType": "WDC_DATETIME" + }, + { + "name": "id", + "remoteType": "WDC_INT" + }, + { + "name": "workspaceName", + "remoteType": "WDC_STRING" + }, + { + "name": "updatedAt", + "remoteType": "WDC_DATETIME" + }, + { + "name": "active", + "remoteType": "WDC_BOOL" + } + ] + } + ], + "downstreamSheets": [ + { + "id": "222d1406-de0e-cd8d-0b94-9b45a0007e59", + "name": "Timeline - Sent" + }, + { + "id": "38130558-4194-2e2a-3046-c0d887829cb4", + "name": "Campaign List" + }, + { + "id": "692a2da4-2a82-32c1-f713-63b8e4325d86", + "name": "Summary" + }, + { + "id": "f4317efd-c3e6-6ace-8fe6-e71b590bbbcc", + "name": "Mobile - Sent by Campaign" + } + ], + "fields": [ + { + "__typename": "CalculatedField", + "id": "06922989-6ee4-81bb-79d4-f9f9faf17819", + "name": "Delivery Rate", + "description": null, + "isHidden": false, + "folderName": null, + "role": "MEASURE", + "dataType": "REAL", + "defaultFormat": "p0.0%", + "aggregation": null, + "formula": "ZN([Delivered Email]/[Sent Email])" + }, + { + "__typename": "ColumnField", + "id": "0e1a7126-7f89-6bcd-d3ac-bc7a36dbe206", + "name": "Program ID", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "0e9630ee-e141-bff1-d33b-f3ea9241d4b9", + "name": "Platform (Activity - Click Email)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": "Count", + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "0fe12d2b-ad7c-3862-dbed-6cf000ada134", + "name": "Updated At", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "18b72ab1-374b-9740-47f4-57de5a14043a", + "name": "Workspace Name", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "1e38aa00-9f8c-e489-0024-2e5d3ab8a9b7", + "name": "Mailing ID (Activity - Email Delivered)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "1e9d01cd-e6e0-91e8-bd07-3690017cf233", + "name": "Campaign ID (Activity - Email Delivered)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "CalculatedField", + "id": "1fada5ed-ca53-8478-40cf-820309ca45ed", + "name": "Number of Records", + "description": null, + "isHidden": false, + "folderName": null, + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "formula": "1" + }, + { + "__typename": "ColumnField", + "id": "2026c0f6-96e1-4a84-9555-b80926aaed36", + "name": "Campaign Run ID", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "21493acc-8046-5cf8-fcb1-e3ab328bf7b4", + "name": "User Agent (Activity - Click Email)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "26c360a8-b8fc-efb8-85f0-107d2d63913a", + "name": "Choice Number (Activity - Email Delivered)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "26c37c0a-c970-3a28-c375-fd6c54113a3e", + "name": "Campaign ID", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "xxxdc8ee-30e5-644b-cf76-48a3dea79cda", + "name": null, + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "277dc8ee-30e5-644b-cf76-48a3dea79cda", + "name": "Name", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "292ebda7-49ee-589f-b8ba-6d44443158ea", + "name": "Is Predictive", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "299d8cdf-75ed-5dff-1e97-f11f7023cd2a", + "name": "Campaign ID (Activity - Click Email)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "337cbc32-3695-427f-57a8-945a9d66cb46", + "name": "Activity Date (Activity - Click Email)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "33c19e7e-c7a8-17ce-b1c5-03075d81e718", + "name": "Has Predictive (Activity - Open Email)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "3b3f6466-37a8-de90-a113-d7fc889de010", + "name": "Step ID (Activity - Open Email)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "3bd91e15-44e4-bfa9-c495-e64a481c6a99", + "name": "Id (Activity - Click Email)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "3c6caacf-8292-4a0e-a569-f01a50c48fde", + "name": "Step ID (Activity - Click Email)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "42bf8d99-1c09-1ffa-14b8-f99f20940b4d", + "name": "Activity Date", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "CalculatedField", + "id": "43a93841-c04b-8a60-57b5-82de870cc156", + "name": "Clickthrough Rate", + "description": null, + "isHidden": false, + "folderName": null, + "role": "MEASURE", + "dataType": "REAL", + "defaultFormat": "p0.0%", + "aggregation": null, + "formula": "[Clickthrough Emails]/[Delivered Email]" + }, + { + "__typename": "CalculatedField", + "id": "497f7a5a-7c57-2073-4b2e-a780ed0777f3", + "name": "Open Rate", + "description": null, + "isHidden": false, + "folderName": null, + "role": "MEASURE", + "dataType": "REAL", + "defaultFormat": "p0.0%", + "aggregation": null, + "formula": "ZN([Opened Email]/[Delivered Email])" + }, + { + "__typename": "ColumnField", + "id": "4d2e3b25-336d-e842-ac42-f947f6e65eb3", + "name": "Measure Names", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [] + }, + { + "__typename": "CalculatedField", + "id": "4dd95bc1-8c08-92e5-09ae-cac7d0736c38", + "name": "Sent Email", + "description": null, + "isHidden": false, + "folderName": null, + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "formula": "COUNTD([Id])" + }, + { + "__typename": "CalculatedField", + "id": "4ea37317-863a-b8f7-3451-2ff1dcd43d5c", + "name": "Delivered Email", + "description": null, + "isHidden": false, + "folderName": null, + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "formula": "COUNTD([Id (Activity - Email Delivered)])" + }, + { + "__typename": "ColumnField", + "id": "51b4731a-f7ef-70ec-2db0-b39182d54542", + "name": "Lead ID (Activity - Click Email)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "53de4a7f-9930-b05f-ead3-6d628495c5bd", + "name": "Choice Number", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "58d3a137-aada-cb54-0782-c3f8cf0c30bb", + "name": "Is Mobile Device", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "5ca9f540-c492-7e3b-744b-a78a5a977719", + "name": "Platform", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": "Count", + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "5cf0d0ab-fc2d-a46a-b9ad-5128b441158c", + "name": "Mailing ID (Activity - Open Email)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "5d21c9b0-ac28-8d20-4307-9c342c0f238d", + "name": "Lead ID (Activity - Open Email)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "5f513df7-b73b-2d6b-6b67-74a50e3f1e56", + "name": "Test Variant (Activity - Email Delivered)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "602064a0-c2db-e057-6b72-ff40f5e6ffdf", + "name": "ID", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "64f96cfa-91d2-55b7-62ea-ca05175a7a1b", + "name": "Campaign Run ID (Activity - Email Delivered)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "66d4994a-6a37-e8cb-1ced-37926f73b765", + "name": "Id (Activity - Open Email)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "67d4ac88-0fab-6f51-edd2-9e3cd6f681e8", + "name": "Activity Date (Activity - Open Email)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "716fddff-5012-3c14-8105-be4625a0c02d", + "name": "Description", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "722ecf66-c49b-5ad2-bc88-cd59b26d6fab", + "name": "Campaign Run ID (Activity - Click Email)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "7693149f-424a-371b-0b7a-723a80ef12ef", + "name": "Created At", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "CalculatedField", + "id": "7bc8c737-3ca5-956e-c23f-0fb878748b5e", + "name": "Clickthrough Emails", + "description": null, + "isHidden": false, + "folderName": null, + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "formula": "COUNTD([Id (Activity - Click Email)])" + }, + { + "__typename": "ColumnField", + "id": "7c875ed5-6106-1eec-4a1e-103673cde0ef", + "name": "Is Mobile Device (Activity - Click Email)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "7fd1eac6-cf7f-2480-6e91-05a31d47aa5b", + "name": "Mailing ID", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "856fd651-a544-2429-4bf8-bc4c8eee3046", + "name": "Device (Activity - Click Email)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": "Count", + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "86c8aef9-f3af-3a82-49a8-453b3fc69057", + "name": "Mailing ID (Activity - Click Email)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "8711ae44-5b7c-b5c4-0c63-9bbb6f8d55d3", + "name": "Choice Number (Activity - Click Email)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "8b9b1f51-9485-afcf-b323-ba3cb8953183", + "name": "Test Variant", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "8c4140cf-c6cc-b43d-9621-3ffa8d3dae26", + "name": "Link ID", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "CalculatedField", + "id": "908fa927-f78d-0314-4fa4-88307c21e73c", + "name": "Click-to-Open", + "description": null, + "isHidden": false, + "folderName": null, + "role": "MEASURE", + "dataType": "REAL", + "defaultFormat": "p0.0%", + "aggregation": null, + "formula": "ZN([Clickthrough Emails]\r\n/ \r\n[Opened Email])" + }, + { + "__typename": "CalculatedField", + "id": "91a0b832-5abf-95df-e292-be9e58e91404", + "name": "Opened Email", + "description": null, + "isHidden": false, + "folderName": null, + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "formula": "COUNTD([Id (Activity - Open Email)])" + }, + { + "__typename": "ColumnField", + "id": "9720c532-6085-7d96-82ff-f30b14ca391e", + "name": "Link", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": "Count", + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "984bcf14-8a6b-2579-51ae-816d5db9821a", + "name": "Lead ID", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "9af0b32d-9e82-419e-c522-c4ac4a0e40d0", + "name": "Campaign Run ID (Activity - Open Email)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "CalculatedField", + "id": "a4d2164a-2ef5-4d76-62e1-468bb135b4c2", + "name": "Opened Non Clicked Emails", + "description": null, + "isHidden": false, + "folderName": null, + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "formula": "[Opened Email]-[Clickthrough Emails]" + }, + { + "__typename": "ColumnField", + "id": "a68a43a9-03f4-bad3-74f1-7ce668c536bc", + "name": "Test Variant (Activity - Open Email)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "a8fbfef2-2ffd-77a9-0f63-a1d5e6944f24", + "name": "Step ID (Activity - Email Delivered)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "CalculatedField", + "id": "abf83860-1adf-8a92-a4ea-9ce9d3945ad7", + "name": "Non Clickthrough Email", + "description": null, + "isHidden": false, + "folderName": null, + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "formula": "[Delivered Email]-[Clickthrough Emails]" + }, + { + "__typename": "ColumnField", + "id": "acd62e88-e4e9-e0e5-bd00-da2d20e74dd1", + "name": "Device", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": "Count", + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "ae7d7692-b175-447a-a74b-c4f85f236be8", + "name": "Lead ID (Activity - Email Delivered)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "af24ee3e-18ae-b2d0-7371-9dd596145f38", + "name": "Id (Activity - Email Delivered)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "b143e310-f7e1-7f49-82f5-141ae733c043", + "name": "Program Name", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "b4bf1bbe-a8b8-b363-e4fd-0b8cd82871a1", + "name": "Campaign ID (Activity - Open Email)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "b6b7479a-ce63-9308-d0e3-70d8af828f36", + "name": "Activity Date (Activity - Email Delivered)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "be574861-0e55-a0be-1143-2e10ea611e9f", + "name": "Test Variant (Activity - Click Email)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "bfcf48dd-e42a-8693-72c2-9b84efc53172", + "name": "Has Predictive", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "CalculatedField", + "id": "c4998733-5988-3cb6-444c-674059fddfd9", + "name": "Non Opened Email", + "description": null, + "isHidden": false, + "folderName": null, + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "formula": "[Delivered Email]-[Opened Email]" + }, + { + "__typename": "ColumnField", + "id": "e84f0fe4-882b-772f-a8c4-4ea89b97bff3", + "name": "Measure Values", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "REAL", + "defaultFormat": null, + "aggregation": null, + "columns": [] + }, + { + "__typename": "ColumnField", + "id": "e915db4c-d33b-9f5d-a5bd-6022ae85118d", + "name": "Has Predictive (Activity - Email Delivered)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "eb18ef87-d48d-fefa-1fd7-98834a304ece", + "name": "User Agent", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "f06b3901-4f28-acd5-a724-9a3b18198528", + "name": "Active", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "f509397e-7e11-4f86-4ae8-2e861df69d46", + "name": "Step ID", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "CalculatedField", + "id": "f6dffbe7-aa6f-5acb-25a7-fdf0bf3ab507", + "name": "Bounceback", + "description": null, + "isHidden": false, + "folderName": null, + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "formula": "[Sent Email] - [Delivered Email]" + }, + { + "__typename": "ColumnField", + "id": "fe556978-d213-2f6c-2950-ec6ce30a63b1", + "name": "Choice Number (Activity - Open Email)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "ffd5c589-6741-450b-bbe6-b21f6a31670e", + "name": "Id", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + } + ], + "upstreamDatasources": [], + "workbook": { + "id": "1f15d897-7f0c-7c59-037a-afa6a9b7c9a9", + "name": "Email Performance by Campaign", + "projectName": "default", + "owner": { + "username": "jawadqu@gmail.com" + } + } + }, + { + "__typename": "EmbeddedDatasource", + "id": "4644ccb1-2adc-cf26-c654-04ed1dcc7090", + "name": "Customer Payment Query", + "hasExtracts": false, + "extractLastRefreshTime": null, + "extractLastIncrementalUpdateTime": null, + "extractLastUpdateTime": null, + "upstreamDatabases": [ + { + "id": "a7825692-7de9-113d-5377-ae113331a9ec", + "name": "dvdrental", + "connectionType": "postgres", + "isEmbedded": false + } + ], + "upstreamTables": [ + { + "id": "39657832-0769-6372-60c3-687a51e2a772", + "name": "customer", + "database": { + "name": "dvdrental" + }, + "schema": "", + "fullName": "customer", + "connectionType": "postgres", + "description": "", + "columns": [] + }, + { + "id": "3cdd0522-44ef-62eb-ba52-71545c258344", + "name": "payment", + "database": { + "name": "dvdrental" + }, + "schema": "", + "fullName": "payment", + "connectionType": "postgres", + "description": "", + "columns": [] + } + ], + "downstreamSheets": [ + { + "id": "8a6a269a-d6de-fae4-5050-513255b40ffc", + "name": "Sheet 1" + }, + { + "id": "c57a5574-db47-46df-677f-0b708dab14db", + "name": "Sheet 2" + } + ], + "fields": [ + { + "__typename": "ColumnField", + "id": "08feb4a3-ecd2-8e6e-d3d0-fb27970b4898", + "name": "payment_date", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": "Year", + "columns": [ + { + "table": { + "id": "22b0b4c3-6b85-713d-a161-5a87fdd78f40", + "name": "Custom SQL Query" + } + } + ] + }, + { + "__typename": "ColumnField", + "id": "85ce12c3-12b1-fbfc-659f-a0670b193bab", + "name": "amount", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "REAL", + "defaultFormat": null, + "aggregation": "Sum", + "columns": [ + { + "table": { + "id": "22b0b4c3-6b85-713d-a161-5a87fdd78f40", + "name": "Custom SQL Query" + } + } + ] + }, + { + "__typename": "ColumnField", + "id": "afb789df-a7d6-0fd8-1c20-4d7725636f32", + "name": "Custom SQL Query", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "TABLE", + "defaultFormat": null, + "aggregation": null, + "columns": [] + }, + { + "__typename": "ColumnField", + "id": "ba250011-4873-54ad-5b64-c689996216f2", + "name": "First Name", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": { + "id": "22b0b4c3-6b85-713d-a161-5a87fdd78f40", + "name": "Custom SQL Query" + } + } + ] + }, + { + "__typename": "ColumnField", + "id": "c04914c4-0a78-1bd1-acb7-ebf0d704c609", + "name": "customer_id", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": "Sum", + "columns": [ + { + "table": { + "id": "22b0b4c3-6b85-713d-a161-5a87fdd78f40", + "name": "Custom SQL Query" + } + } + ] + }, + { + "__typename": "ColumnField", + "id": "c68badd9-86d7-c554-d287-9f21d1ac113b", + "name": "rental_id", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": "Sum", + "columns": [ + { + "table": { + "id": "22b0b4c3-6b85-713d-a161-5a87fdd78f40", + "name": "Custom SQL Query" + } + } + ] + }, + { + "__typename": "ColumnField", + "id": "eb9b61e1-5209-4586-7af0-b69cd0df25c9", + "name": "Last Name", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": { + "id": "22b0b4c3-6b85-713d-a161-5a87fdd78f40", + "name": "Custom SQL Query" + } + } + ] + } + ], + "upstreamDatasources": [], + "workbook": { + "id": "661fabd0-bed6-8610-e066-0694a81a6cea", + "name": "Dvdrental Workbook", + "projectName": "default", + "owner": { + "username": "jawadqu@gmail.com" + } + } + }, + { + "__typename": "EmbeddedDatasource", + "id": "618c87db-5959-338b-bcc7-6f5f4cc0b6c6", + "name": "actor+ (dvdrental)", + "hasExtracts": false, + "extractLastRefreshTime": null, + "extractLastIncrementalUpdateTime": null, + "extractLastUpdateTime": null, + "upstreamDatabases": [ + { + "id": "a7825692-7de9-113d-5377-ae113331a9ec", + "name": "dvdrental", + "connectionType": "postgres", + "isEmbedded": false + } + ], + "upstreamTables": [ + { + "id": "5acb3a52-00b1-0e5c-b8b2-040445db9824", + "name": "address", + "database": { + "name": "dvdrental" + }, + "schema": "public", + "fullName": "[public].[address]", + "connectionType": "postgres", + "description": "", + "columns": [ + { + "name": "postal_code", + "remoteType": "STR" + }, + { + "name": "last_update", + "remoteType": "DBTIMESTAMP" + }, + { + "name": "phone", + "remoteType": "STR" + }, + { + "name": "address2", + "remoteType": "STR" + }, + { + "name": "address", + "remoteType": "STR" + }, + { + "name": "city_id", + "remoteType": "I2" + }, + { + "name": "district", + "remoteType": "STR" + }, + { + "name": "address_id", + "remoteType": "I4" + } + ] + }, + { + "id": "985d7629-535b-9326-79bc-748e29e97949", + "name": "actor", + "database": { + "name": "dvdrental" + }, + "schema": "public1", + "fullName": "[public].[actor]", + "connectionType": "postgres", + "description": "", + "columns": [ + { + "name": "last_update", + "remoteType": "DBTIMESTAMP" + }, + { + "name": "last_name", + "remoteType": "STR" + }, + { + "name": "first_name", + "remoteType": "STR" + }, + { + "name": "actor_id", + "remoteType": "I4" + } + ] + } + ], + "fields": [ + { + "__typename": "ColumnField", + "id": "04151303-bd09-aff5-b9ee-e4948c2cb4f0", + "name": "Address2", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "0a0bd261-effc-6d14-3e7a-bc0b214455d4", + "name": "Last Update", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "27a9fbc1-1290-d570-d88b-149d83d4b113", + "name": "address", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "TABLE", + "defaultFormat": null, + "aggregation": null, + "columns": [] + }, + { + "__typename": "ColumnField", + "id": "2dd4db27-740f-7cc7-b36e-09564d556cb3", + "name": "District", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "3146b9b4-eb1f-ae91-804f-e5b157cf0eb7", + "name": "First Name", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "31811e0f-9fd3-dad5-6093-aab2de26e470", + "name": "Address", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "3c8d999a-85c2-9f62-17e0-e7e3b4fc59c1", + "name": "Postal Code", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "HierarchyField", + "id": "4ad28d4f-8e39-429d-5b42-8bdd5ae90734", + "name": "country, city", + "description": null, + "isHidden": false, + "folderName": null + }, + { + "__typename": "ColumnField", + "id": "67a5460e-d59a-1aa5-d999-7a945c3ac781", + "name": "Phone", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "7cbb7bd2-85d6-1a27-b21a-b93104c5fbf7", + "name": "Last Update (Address)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "917735d1-6fd5-536e-cc19-52eb04b6e954", + "name": "Address Id", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "aee7feaf-f094-7601-e798-ba92e414a964", + "name": "Actor Id", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "dde631d5-9f2b-5413-e3d7-74b6494c1d75", + "name": "actor", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "TABLE", + "defaultFormat": null, + "aggregation": null, + "columns": [] + }, + { + "__typename": "ColumnField", + "id": "e2da5ba0-5e55-013a-3c2d-fbd975331a3c", + "name": "Last Name", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "fb549c29-1158-1073-98e3-040086d127e8", + "name": "City Id", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": "Sum", + "columns": [ + { + "table": {} + } + ] + } + ], + "upstreamDatasources": [], + "workbook": { + "id": "661fabd0-bed6-8610-e066-0694a81a6cea", + "name": "Dvdrental Workbook", + "projectName": "default", + "owner": { + "username": "jawadqu@gmail.com" + } + } + }, + { + "__typename": "EmbeddedDatasource", + "id": "d00f4ba6-707e-4684-20af-69eb47587cc2", + "name": "Superstore Datasource", + "hasExtracts": false, + "extractLastRefreshTime": null, + "extractLastIncrementalUpdateTime": null, + "extractLastUpdateTime": null, + "upstreamDatabases": [ + { + "id": "1ade1d51-bbc3-ed8d-25d2-c51f44b8b31b", + "name": "Sample - Superstore.xls", + "connectionType": "excel-direct", + "isEmbedded": true + } + ], + "upstreamTables": [ + { + "id": "15714253-8e46-a209-63cc-700705b66de9", + "name": "People", + "database": { + "name": "Sample - Superstore.xls" + }, + "schema": "", + "fullName": "[People$]", + "connectionType": "excel-direct", + "description": "", + "columns": [ + { + "name": "Person", + "remoteType": "WSTR" + }, + { + "name": "Region", + "remoteType": "WSTR" + } + ] + }, + { + "id": "19be3c28-8e4d-ebac-b44d-8f0851d9f206", + "name": "Returns", + "database": { + "name": "Sample - Superstore.xls" + }, + "schema": "", + "fullName": "[Returns$]", + "connectionType": "excel-direct", + "description": "", + "columns": [ + { + "name": "Returned", + "remoteType": "WSTR" + }, + { + "name": "Order ID", + "remoteType": "WSTR" + } + ] + }, + { + "id": "b0e0c3eb-6e53-e0f5-ded1-478d5d9f7281", + "name": "Orders", + "database": { + "name": "Sample - Superstore.xls" + }, + "schema": "", + "fullName": "[Orders$]", + "connectionType": "excel-direct", + "description": "", + "columns": [ + { + "name": "Product ID", + "remoteType": "WSTR" + }, + { + "name": "Category", + "remoteType": "WSTR" + }, + { + "name": "Postal Code", + "remoteType": "I8" + }, + { + "name": "City", + "remoteType": "WSTR" + }, + { + "name": "Quantity", + "remoteType": "I8" + }, + { + "name": "State", + "remoteType": "WSTR" + }, + { + "name": "Order Date", + "remoteType": "DATE" + }, + { + "name": "Customer Name", + "remoteType": "WSTR" + }, + { + "name": "Country/Region", + "remoteType": "WSTR" + }, + { + "name": "Sales", + "remoteType": "R8" + }, + { + "name": "Segment", + "remoteType": "WSTR" + }, + { + "name": "Sub-Category", + "remoteType": "WSTR" + }, + { + "name": "Profit", + "remoteType": "R8" + }, + { + "name": "Product Name", + "remoteType": "WSTR" + }, + { + "name": "Customer ID", + "remoteType": "WSTR" + }, + { + "name": "Order ID", + "remoteType": "WSTR" + }, + { + "name": "Row ID", + "remoteType": "I8" + }, + { + "name": "Discount", + "remoteType": "R8" + }, + { + "name": "Ship Date", + "remoteType": "DATE" + }, + { + "name": "Ship Mode", + "remoteType": "WSTR" + }, + { + "name": "Region", + "remoteType": "WSTR" + } + ] + } + ], + "downstreamSheets": [ + { + "id": "e604255e-0573-3951-6db7-05bee48116c1", + "name": "Sheet 3" + } + ], + "fields": [ + { + "__typename": "DatasourceField", + "id": "05e878c2-3b10-7944-446a-09c3c958df39", + "name": "Region (People)", + "description": null, + "isHidden": true, + "folderName": null + }, + { + "__typename": "DatasourceField", + "id": "092029cd-706b-93c5-f2ea-68b020adb647", + "name": "Product ID", + "description": null, + "isHidden": true, + "folderName": null + }, + { + "__typename": "DatasourceField", + "id": "10d720d9-d4dc-f0dd-6f6d-f2078a808aed", + "name": "Profit", + "description": null, + "isHidden": false, + "folderName": null + }, + { + "__typename": "DatasourceField", + "id": "1b83e377-52f1-24f3-992b-2559e8b6ca70", + "name": "Product", + "description": null, + "isHidden": false, + "folderName": null + }, + { + "__typename": "DatasourceField", + "id": "1e420a77-19a5-c303-abbc-de977b5f4ef9", + "name": "Sub-Category", + "description": null, + "isHidden": false, + "folderName": null + }, + { + "__typename": "DatasourceField", + "id": "28ec64fc-8a21-65dd-6125-2f73fc625f26", + "name": "Row ID", + "description": null, + "isHidden": true, + "folderName": null + }, + { + "__typename": "DatasourceField", + "id": "32c2bd6f-cc3e-62e0-1e6a-f5ae480ac329", + "name": "Order ID", + "description": null, + "isHidden": false, + "folderName": null + }, + { + "__typename": "DatasourceField", + "id": "3934cbed-ff3d-de73-aefa-8bccc8bc9797", + "name": "Customer ID", + "description": null, + "isHidden": true, + "folderName": null + }, + { + "__typename": "DatasourceField", + "id": "4de34be4-76ea-7080-f0d4-7f108466015b", + "name": "Ship Mode", + "description": null, + "isHidden": false, + "folderName": null + }, + { + "__typename": "DatasourceField", + "id": "54e48e4f-5519-15c1-4a1b-97dc909899a1", + "name": "People", + "description": null, + "isHidden": false, + "folderName": null + }, + { + "__typename": "DatasourceField", + "id": "5a03c6b4-b21c-27b0-65f9-2d5ae81b5ed0", + "name": "Order ID (Returns)", + "description": null, + "isHidden": true, + "folderName": null + }, + { + "__typename": "DatasourceField", + "id": "5baa65db-612b-a18e-957f-8685b6b85571", + "name": "City", + "description": null, + "isHidden": false, + "folderName": null + }, + { + "__typename": "DatasourceField", + "id": "61b4d0d2-3b7c-a61f-e4bd-a95b6fde8478", + "name": "Sales", + "description": null, + "isHidden": false, + "folderName": null + }, + { + "__typename": "DatasourceField", + "id": "6966d863-35e8-9c0a-6094-c6d27a1fd787", + "name": "Region", + "description": null, + "isHidden": false, + "folderName": null + }, + { + "__typename": "DatasourceField", + "id": "6a7b2e6d-3484-0df3-d98e-328a111691df", + "name": "Quantity", + "description": null, + "isHidden": false, + "folderName": null + }, + { + "__typename": "DatasourceField", + "id": "7d3bd4e3-1683-7450-d55d-592e1a47a817", + "name": "Ship Date", + "description": null, + "isHidden": false, + "folderName": null + }, + { + "__typename": "DatasourceField", + "id": "839c51f8-344f-b1c0-4e3a-9d53bd2dd6bd", + "name": "Orders", + "description": null, + "isHidden": false, + "folderName": null + }, + { + "__typename": "DatasourceField", + "id": "8bd692d0-3d64-3678-8deb-a6c9469f7475", + "name": "Profit Ratio", + "description": null, + "isHidden": false, + "folderName": null + }, + { + "__typename": "DatasourceField", + "id": "9722bc5a-16be-4f16-91db-708598db866e", + "name": "Returns", + "description": null, + "isHidden": false, + "folderName": null + }, + { + "__typename": "DatasourceField", + "id": "983ea4b7-3690-1805-4a7a-a8bea49f920c", + "name": "Manufacturer", + "description": null, + "isHidden": false, + "folderName": null + }, + { + "__typename": "DatasourceField", + "id": "997587cb-024f-1a56-e37c-2fb7277642e6", + "name": "Location", + "description": null, + "isHidden": false, + "folderName": null + }, + { + "__typename": "DatasourceField", + "id": "a4c088c6-03e9-8dc3-3e69-764ab8610bf5", + "name": "Returned", + "description": null, + "isHidden": false, + "folderName": null + }, + { + "__typename": "DatasourceField", + "id": "a69ba55b-4434-6988-e276-06183ba7ee63", + "name": "Category", + "description": null, + "isHidden": false, + "folderName": null + }, + { + "__typename": "DatasourceField", + "id": "b4d8bf7b-74aa-3b34-ba07-a5947aceae44", + "name": "Regional Manager", + "description": null, + "isHidden": false, + "folderName": null + }, + { + "__typename": "DatasourceField", + "id": "bb4583d3-90db-6272-b939-22537dac2de4", + "name": "Postal Code", + "description": null, + "isHidden": false, + "folderName": null + }, + { + "__typename": "DatasourceField", + "id": "c9fdaec1-d715-bab0-a5e6-7cb2a4096d0c", + "name": "Profit (bin)", + "description": null, + "isHidden": false, + "folderName": null + }, + { + "__typename": "DatasourceField", + "id": "cbf261c1-b86b-2f51-7aa7-9ec601acdadf", + "name": "Segment", + "description": null, + "isHidden": false, + "folderName": null + }, + { + "__typename": "DatasourceField", + "id": "cc311fea-3737-9f07-b1bf-f4811309668d", + "name": "Top Customers by Profit", + "description": null, + "isHidden": false, + "folderName": null + }, + { + "__typename": "DatasourceField", + "id": "d90ed70b-2846-f23d-360c-7a72e3a8d62d", + "name": "Country/Region", + "description": null, + "isHidden": false, + "folderName": null + }, + { + "__typename": "DatasourceField", + "id": "e1906cb6-1a86-90ee-512c-c2ecf5069d96", + "name": "Discount", + "description": null, + "isHidden": false, + "folderName": null + }, + { + "__typename": "DatasourceField", + "id": "e502bf72-d0a6-80ed-eefb-47e10608a21d", + "name": "Order Date", + "description": null, + "isHidden": false, + "folderName": null + }, + { + "__typename": "DatasourceField", + "id": "ea384863-64ca-b5fa-7e15-d3273b5026e6", + "name": "Product Name", + "description": null, + "isHidden": false, + "folderName": null + }, + { + "__typename": "DatasourceField", + "id": "eaad917f-9a67-d25b-2f18-7c740e9064a7", + "name": "Customer Name", + "description": null, + "isHidden": false, + "folderName": null + }, + { + "__typename": "DatasourceField", + "id": "fd71baa7-0996-a23f-7029-3df44e89fff0", + "name": "State", + "description": null, + "isHidden": false, + "folderName": null + } + ], + "upstreamDatasources": [ + { + "id": "6cbbeeb2-9f3a-00f6-2342-17139d6e97ae", + "name": "Superstore Datasource" + } + ], + "workbook": { + "id": "661fabd0-bed6-8610-e066-0694a81a6cea", + "name": "Dvdrental Workbook", + "projectName": "default", + "owner": { + "username": "jawadqu@gmail.com" + } + } + }, + { + "__typename": "EmbeddedDatasource", + "id": "06c3e060-8133-4b58-9b53-a0fced25e056", + "name": "Requests", + "hasExtracts": true, + "extractLastRefreshTime": "2018-01-18T19:35:39Z", + "extractLastIncrementalUpdateTime": null, + "extractLastUpdateTime": "2018-01-18T19:35:39Z", + "upstreamDatabases": [ + { + "id": "2cb8691d-2ad3-500b-4454-1a6a4ee53d34", + "name": "ven01911", + "connectionType": "webdata-direct:servicenowitsm-servicenowitsm", + "isEmbedded": true + } + ], + "upstreamTables": [ + { + "id": "57135afa-7602-93fe-0f9f-c7fe7c36dd5d", + "name": "task", + "database": { + "name": "ven01911" + }, + "schema": "", + "fullName": "[task]", + "connectionType": "webdata-direct:servicenowitsm-servicenowitsm", + "description": "", + "columns": [ + { + "name": "contact_type", + "remoteType": "WDC_STRING" + }, + { + "name": "sys_id", + "remoteType": "WDC_STRING" + }, + { + "name": "user_input", + "remoteType": "WDC_STRING" + }, + { + "name": "opened_at", + "remoteType": "WDC_DATETIME" + }, + { + "name": "expected_start", + "remoteType": "WDC_DATETIME" + }, + { + "name": "delivery_plan", + "remoteType": "WDC_STRING" + }, + { + "name": "opened_by", + "remoteType": "WDC_STRING" + }, + { + "name": "delivery_task", + "remoteType": "WDC_STRING" + }, + { + "name": "approval_set", + "remoteType": "WDC_DATETIME" + }, + { + "name": "urgency", + "remoteType": "WDC_INT" + }, + { + "name": "comments", + "remoteType": "WDC_STRING" + }, + { + "name": "active", + "remoteType": "WDC_BOOL" + }, + { + "name": "priority", + "remoteType": "WDC_INT" + }, + { + "name": "knowledge", + "remoteType": "WDC_BOOL" + }, + { + "name": "closed_by", + "remoteType": "WDC_STRING" + }, + { + "name": "activity_due", + "remoteType": "WDC_DATETIME" + }, + { + "name": "assignment_group", + "remoteType": "WDC_STRING" + }, + { + "name": "correlation_display", + "remoteType": "WDC_STRING" + }, + { + "name": "state", + "remoteType": "WDC_INT" + }, + { + "name": "work_end", + "remoteType": "WDC_DATETIME" + }, + { + "name": "description", + "remoteType": "WDC_STRING" + }, + { + "name": "business_service", + "remoteType": "WDC_STRING" + }, + { + "name": "approval_history", + "remoteType": "WDC_STRING" + }, + { + "name": "upon_reject", + "remoteType": "WDC_STRING" + }, + { + "name": "sys_created_on", + "remoteType": "WDC_DATETIME" + }, + { + "name": "parent", + "remoteType": "WDC_STRING" + }, + { + "name": "order", + "remoteType": "WDC_INT" + }, + { + "name": "work_notes", + "remoteType": "WDC_STRING" + }, + { + "name": "work_notes_list", + "remoteType": "WDC_STRING" + }, + { + "name": "sys_created_by", + "remoteType": "WDC_STRING" + }, + { + "name": "sys_updated_by", + "remoteType": "WDC_STRING" + }, + { + "name": "work_start", + "remoteType": "WDC_DATETIME" + }, + { + "name": "group_list", + "remoteType": "WDC_STRING" + }, + { + "name": "sys_mod_count", + "remoteType": "WDC_INT" + }, + { + "name": "location", + "remoteType": "WDC_STRING" + }, + { + "name": "correlation_id", + "remoteType": "WDC_STRING" + }, + { + "name": "sys_updated_on", + "remoteType": "WDC_DATETIME" + }, + { + "name": "sla_due", + "remoteType": "WDC_DATETIME" + }, + { + "name": "number", + "remoteType": "WDC_STRING" + }, + { + "name": "business_duration", + "remoteType": "WDC_DATETIME" + }, + { + "name": "follow_up", + "remoteType": "WDC_DATETIME" + }, + { + "name": "additional_assignee_list", + "remoteType": "WDC_STRING" + }, + { + "name": "escalation", + "remoteType": "WDC_INT" + }, + { + "name": "due_date", + "remoteType": "WDC_DATETIME" + }, + { + "name": "approval", + "remoteType": "WDC_STRING" + }, + { + "name": "made_sla", + "remoteType": "WDC_BOOL" + }, + { + "name": "assigned_to", + "remoteType": "WDC_STRING" + }, + { + "name": "calendar_duration", + "remoteType": "WDC_DATETIME" + }, + { + "name": "closed_at", + "remoteType": "WDC_DATETIME" + }, + { + "name": "sys_domain", + "remoteType": "WDC_STRING" + }, + { + "name": "cmdb_ci", + "remoteType": "WDC_STRING" + }, + { + "name": "comments_and_work_notes", + "remoteType": "WDC_STRING" + }, + { + "name": "impact", + "remoteType": "WDC_INT" + }, + { + "name": "close_notes", + "remoteType": "WDC_STRING" + }, + { + "name": "reassignment_count", + "remoteType": "WDC_INT" + }, + { + "name": "company", + "remoteType": "WDC_STRING" + }, + { + "name": "sys_domain_path", + "remoteType": "WDC_STRING" + }, + { + "name": "short_description", + "remoteType": "WDC_STRING" + }, + { + "name": "upon_approval", + "remoteType": "WDC_STRING" + }, + { + "name": "watch_list", + "remoteType": "WDC_STRING" + }, + { + "name": "time_worked", + "remoteType": "WDC_STRING" + }, + { + "name": "sys_class_name", + "remoteType": "WDC_STRING" + } + ] + }, + { + "id": "66f2e5af-c0f9-94b4-13d6-5fd53f6e02b7", + "name": "sc_request", + "database": { + "name": "ven01911" + }, + "schema": "", + "fullName": "[sc_request]", + "connectionType": "webdata-direct:servicenowitsm-servicenowitsm", + "description": "", + "columns": [ + { + "name": "work_notes_list", + "remoteType": "WDC_STRING" + }, + { + "name": "closed_at", + "remoteType": "WDC_DATETIME" + }, + { + "name": "user_input", + "remoteType": "WDC_STRING" + }, + { + "name": "requested_for", + "remoteType": "WDC_STRING" + }, + { + "name": "opened_at", + "remoteType": "WDC_DATETIME" + }, + { + "name": "price", + "remoteType": "WDC_STRING" + }, + { + "name": "assigned_to", + "remoteType": "WDC_STRING" + }, + { + "name": "number", + "remoteType": "WDC_STRING" + }, + { + "name": "delivery_plan", + "remoteType": "WDC_STRING" + }, + { + "name": "delivery_address", + "remoteType": "WDC_STRING" + }, + { + "name": "business_duration", + "remoteType": "WDC_DATETIME" + }, + { + "name": "urgency", + "remoteType": "WDC_INT" + }, + { + "name": "work_end", + "remoteType": "WDC_DATETIME" + }, + { + "name": "due_date", + "remoteType": "WDC_DATETIME" + }, + { + "name": "parent", + "remoteType": "WDC_STRING" + }, + { + "name": "made_sla", + "remoteType": "WDC_BOOL" + }, + { + "name": "assignment_group", + "remoteType": "WDC_STRING" + }, + { + "name": "sys_class_name", + "remoteType": "WDC_STRING" + }, + { + "name": "additional_assignee_list", + "remoteType": "WDC_STRING" + }, + { + "name": "work_start", + "remoteType": "WDC_DATETIME" + }, + { + "name": "sys_domain_path", + "remoteType": "WDC_STRING" + }, + { + "name": "time_worked", + "remoteType": "WDC_STRING" + }, + { + "name": "comments_and_work_notes", + "remoteType": "WDC_STRING" + }, + { + "name": "group_list", + "remoteType": "WDC_STRING" + }, + { + "name": "business_service", + "remoteType": "WDC_STRING" + }, + { + "name": "correlation_id", + "remoteType": "WDC_STRING" + }, + { + "name": "cmdb_ci", + "remoteType": "WDC_STRING" + }, + { + "name": "requested_date", + "remoteType": "WDC_DATE" + }, + { + "name": "follow_up", + "remoteType": "WDC_DATETIME" + }, + { + "name": "sys_updated_on", + "remoteType": "WDC_DATETIME" + }, + { + "name": "state", + "remoteType": "WDC_INT" + }, + { + "name": "comments", + "remoteType": "WDC_STRING" + }, + { + "name": "approval_set", + "remoteType": "WDC_DATETIME" + }, + { + "name": "close_notes", + "remoteType": "WDC_STRING" + }, + { + "name": "upon_approval", + "remoteType": "WDC_STRING" + }, + { + "name": "company", + "remoteType": "WDC_STRING" + }, + { + "name": "activity_due", + "remoteType": "WDC_DATETIME" + }, + { + "name": "contact_type", + "remoteType": "WDC_STRING" + }, + { + "name": "approval", + "remoteType": "WDC_STRING" + }, + { + "name": "calendar_duration", + "remoteType": "WDC_DATETIME" + }, + { + "name": "reassignment_count", + "remoteType": "WDC_INT" + }, + { + "name": "delivery_task", + "remoteType": "WDC_STRING" + }, + { + "name": "approval_history", + "remoteType": "WDC_STRING" + }, + { + "name": "sys_created_on", + "remoteType": "WDC_DATETIME" + }, + { + "name": "request_state", + "remoteType": "WDC_STRING" + }, + { + "name": "watch_list", + "remoteType": "WDC_STRING" + }, + { + "name": "upon_reject", + "remoteType": "WDC_STRING" + }, + { + "name": "expected_start", + "remoteType": "WDC_DATETIME" + }, + { + "name": "active", + "remoteType": "WDC_BOOL" + }, + { + "name": "opened_by", + "remoteType": "WDC_STRING" + }, + { + "name": "work_notes", + "remoteType": "WDC_STRING" + }, + { + "name": "impact", + "remoteType": "WDC_INT" + }, + { + "name": "description", + "remoteType": "WDC_STRING" + }, + { + "name": "sla_due", + "remoteType": "WDC_DATETIME" + }, + { + "name": "correlation_display", + "remoteType": "WDC_STRING" + }, + { + "name": "priority", + "remoteType": "WDC_INT" + }, + { + "name": "stage", + "remoteType": "WDC_STRING" + }, + { + "name": "sys_created_by", + "remoteType": "WDC_STRING" + }, + { + "name": "sys_id", + "remoteType": "WDC_STRING" + }, + { + "name": "escalation", + "remoteType": "WDC_INT" + }, + { + "name": "closed_by", + "remoteType": "WDC_STRING" + }, + { + "name": "short_description", + "remoteType": "WDC_STRING" + }, + { + "name": "location", + "remoteType": "WDC_STRING" + }, + { + "name": "special_instructions", + "remoteType": "WDC_STRING" + }, + { + "name": "order", + "remoteType": "WDC_INT" + }, + { + "name": "sys_updated_by", + "remoteType": "WDC_STRING" + }, + { + "name": "sys_mod_count", + "remoteType": "WDC_INT" + }, + { + "name": "knowledge", + "remoteType": "WDC_BOOL" + }, + { + "name": "sys_domain", + "remoteType": "WDC_STRING" + }, + { + "name": "calendar_stc", + "remoteType": "WDC_INT" + } + ] + }, + { + "id": "6d3b8726-1f0b-312a-6013-43aec9ccba69", + "name": "sc_req_item", + "database": { + "name": "ven01911" + }, + "schema": "", + "fullName": "[sc_req_item]", + "connectionType": "webdata-direct:servicenowitsm-servicenowitsm", + "description": "", + "columns": [ + { + "name": "watch_list", + "remoteType": "WDC_STRING" + }, + { + "name": "due_date", + "remoteType": "WDC_DATETIME" + }, + { + "name": "made_sla", + "remoteType": "WDC_BOOL" + }, + { + "name": "parent", + "remoteType": "WDC_STRING" + }, + { + "name": "assigned_to", + "remoteType": "WDC_STRING" + }, + { + "name": "sys_mod_count", + "remoteType": "WDC_INT" + }, + { + "name": "cmdb_ci", + "remoteType": "WDC_STRING" + }, + { + "name": "sys_domain", + "remoteType": "WDC_STRING" + }, + { + "name": "configuration_item", + "remoteType": "WDC_STRING" + }, + { + "name": "closed_by", + "remoteType": "WDC_STRING" + }, + { + "name": "active", + "remoteType": "WDC_BOOL" + }, + { + "name": "expected_start", + "remoteType": "WDC_DATETIME" + }, + { + "name": "recurring_price", + "remoteType": "WDC_STRING" + }, + { + "name": "work_end", + "remoteType": "WDC_DATETIME" + }, + { + "name": "short_description", + "remoteType": "WDC_STRING" + }, + { + "name": "approval", + "remoteType": "WDC_STRING" + }, + { + "name": "opened_at", + "remoteType": "WDC_DATETIME" + }, + { + "name": "order", + "remoteType": "WDC_INT" + }, + { + "name": "assignment_group", + "remoteType": "WDC_STRING" + }, + { + "name": "sc_catalog", + "remoteType": "WDC_STRING" + }, + { + "name": "knowledge", + "remoteType": "WDC_BOOL" + }, + { + "name": "stage", + "remoteType": "WDC_STRING" + }, + { + "name": "correlation_display", + "remoteType": "WDC_STRING" + }, + { + "name": "reassignment_count", + "remoteType": "WDC_INT" + }, + { + "name": "delivery_plan", + "remoteType": "WDC_STRING" + }, + { + "name": "sys_class_name", + "remoteType": "WDC_STRING" + }, + { + "name": "user_input", + "remoteType": "WDC_STRING" + }, + { + "name": "description", + "remoteType": "WDC_STRING" + }, + { + "name": "activity_due", + "remoteType": "WDC_DATETIME" + }, + { + "name": "price", + "remoteType": "WDC_STRING" + }, + { + "name": "work_notes_list", + "remoteType": "WDC_STRING" + }, + { + "name": "estimated_delivery", + "remoteType": "WDC_DATETIME" + }, + { + "name": "additional_assignee_list", + "remoteType": "WDC_STRING" + }, + { + "name": "context", + "remoteType": "WDC_STRING" + }, + { + "name": "business_duration", + "remoteType": "WDC_DATETIME" + }, + { + "name": "approval_set", + "remoteType": "WDC_DATETIME" + }, + { + "name": "priority", + "remoteType": "WDC_INT" + }, + { + "name": "sys_updated_on", + "remoteType": "WDC_DATETIME" + }, + { + "name": "sys_id", + "remoteType": "WDC_STRING" + }, + { + "name": "state", + "remoteType": "WDC_INT" + }, + { + "name": "business_service", + "remoteType": "WDC_STRING" + }, + { + "name": "billable", + "remoteType": "WDC_BOOL" + }, + { + "name": "approval_history", + "remoteType": "WDC_STRING" + }, + { + "name": "recurring_frequency", + "remoteType": "WDC_STRING" + }, + { + "name": "contact_type", + "remoteType": "WDC_STRING" + }, + { + "name": "cat_item", + "remoteType": "WDC_STRING" + }, + { + "name": "sys_updated_by", + "remoteType": "WDC_STRING" + }, + { + "name": "sys_domain_path", + "remoteType": "WDC_STRING" + }, + { + "name": "comments", + "remoteType": "WDC_STRING" + }, + { + "name": "impact", + "remoteType": "WDC_INT" + }, + { + "name": "order_guide", + "remoteType": "WDC_STRING" + }, + { + "name": "sla_due", + "remoteType": "WDC_DATETIME" + }, + { + "name": "sys_created_by", + "remoteType": "WDC_STRING" + }, + { + "name": "comments_and_work_notes", + "remoteType": "WDC_STRING" + }, + { + "name": "opened_by", + "remoteType": "WDC_STRING" + }, + { + "name": "backordered", + "remoteType": "WDC_BOOL" + }, + { + "name": "correlation_id", + "remoteType": "WDC_STRING" + }, + { + "name": "group_list", + "remoteType": "WDC_STRING" + }, + { + "name": "delivery_task", + "remoteType": "WDC_STRING" + }, + { + "name": "number", + "remoteType": "WDC_STRING" + }, + { + "name": "sys_created_on", + "remoteType": "WDC_DATETIME" + }, + { + "name": "company", + "remoteType": "WDC_STRING" + }, + { + "name": "work_start", + "remoteType": "WDC_DATETIME" + }, + { + "name": "request", + "remoteType": "WDC_STRING" + }, + { + "name": "close_notes", + "remoteType": "WDC_STRING" + }, + { + "name": "work_notes", + "remoteType": "WDC_STRING" + }, + { + "name": "calendar_duration", + "remoteType": "WDC_DATETIME" + }, + { + "name": "quantity", + "remoteType": "WDC_INT" + }, + { + "name": "follow_up", + "remoteType": "WDC_DATETIME" + }, + { + "name": "location", + "remoteType": "WDC_STRING" + }, + { + "name": "upon_reject", + "remoteType": "WDC_STRING" + }, + { + "name": "closed_at", + "remoteType": "WDC_DATETIME" + }, + { + "name": "time_worked", + "remoteType": "WDC_STRING" + }, + { + "name": "escalation", + "remoteType": "WDC_INT" + }, + { + "name": "urgency", + "remoteType": "WDC_INT" + }, + { + "name": "upon_approval", + "remoteType": "WDC_STRING" + } + ] + }, + { + "id": "ce005441-3761-f8d4-fa42-60f14c7002c8", + "name": "sc_cat_item", + "database": { + "name": "ven01911" + }, + "schema": "", + "fullName": "[sc_cat_item]", + "connectionType": "webdata-direct:servicenowitsm-servicenowitsm", + "description": "", + "columns": [ + { + "name": "sc_catalogs", + "remoteType": "WDC_STRING" + }, + { + "name": "sys_updated_by", + "remoteType": "WDC_STRING" + }, + { + "name": "type", + "remoteType": "WDC_STRING" + }, + { + "name": "mobile_picture_type", + "remoteType": "WDC_STRING" + }, + { + "name": "workflow", + "remoteType": "WDC_STRING" + }, + { + "name": "sys_customer_update", + "remoteType": "WDC_BOOL" + }, + { + "name": "sys_class_name", + "remoteType": "WDC_STRING" + }, + { + "name": "visible_standalone", + "remoteType": "WDC_BOOL" + }, + { + "name": "no_quantity", + "remoteType": "WDC_BOOL" + }, + { + "name": "order", + "remoteType": "WDC_INT" + }, + { + "name": "sys_updated_on", + "remoteType": "WDC_DATETIME" + }, + { + "name": "sys_scope", + "remoteType": "WDC_STRING" + }, + { + "name": "template", + "remoteType": "WDC_STRING" + }, + { + "name": "no_proceed_checkout", + "remoteType": "WDC_BOOL" + }, + { + "name": "billable", + "remoteType": "WDC_BOOL" + }, + { + "name": "name", + "remoteType": "WDC_STRING" + }, + { + "name": "delivery_plan", + "remoteType": "WDC_STRING" + }, + { + "name": "description", + "remoteType": "WDC_STRING" + }, + { + "name": "meta", + "remoteType": "WDC_STRING" + }, + { + "name": "ordered_item_link", + "remoteType": "WDC_STRING" + }, + { + "name": "sys_mod_count", + "remoteType": "WDC_INT" + }, + { + "name": "sc_ic_version", + "remoteType": "WDC_INT" + }, + { + "name": "image", + "remoteType": "WDC_STRING" + }, + { + "name": "sys_id", + "remoteType": "WDC_STRING" + }, + { + "name": "short_description", + "remoteType": "WDC_STRING" + }, + { + "name": "sys_policy", + "remoteType": "WDC_STRING" + }, + { + "name": "roles", + "remoteType": "WDC_STRING" + }, + { + "name": "picture", + "remoteType": "WDC_STRING" + }, + { + "name": "list_price", + "remoteType": "WDC_STRING" + }, + { + "name": "no_order_now", + "remoteType": "WDC_BOOL" + }, + { + "name": "vendor", + "remoteType": "WDC_STRING" + }, + { + "name": "sc_ic_item_staging", + "remoteType": "WDC_STRING" + }, + { + "name": "no_order", + "remoteType": "WDC_BOOL" + }, + { + "name": "entitlement_script", + "remoteType": "WDC_STRING" + }, + { + "name": "active", + "remoteType": "WDC_BOOL" + }, + { + "name": "icon", + "remoteType": "WDC_STRING" + }, + { + "name": "ignore_price", + "remoteType": "WDC_BOOL" + }, + { + "name": "start_closed", + "remoteType": "WDC_BOOL" + }, + { + "name": "sys_package", + "remoteType": "WDC_STRING" + }, + { + "name": "group", + "remoteType": "WDC_STRING" + }, + { + "name": "sys_replace_on_upgrade", + "remoteType": "WDC_BOOL" + }, + { + "name": "cost", + "remoteType": "WDC_FLOAT" + }, + { + "name": "use_sc_layout", + "remoteType": "WDC_BOOL" + }, + { + "name": "location", + "remoteType": "WDC_STRING" + }, + { + "name": "availability", + "remoteType": "WDC_STRING" + }, + { + "name": "model", + "remoteType": "WDC_STRING" + }, + { + "name": "custom_cart", + "remoteType": "WDC_STRING" + }, + { + "name": "mobile_picture", + "remoteType": "WDC_STRING" + }, + { + "name": "category", + "remoteType": "WDC_STRING" + }, + { + "name": "no_cart", + "remoteType": "WDC_BOOL" + }, + { + "name": "mobile_hide_price", + "remoteType": "WDC_BOOL" + }, + { + "name": "sys_created_by", + "remoteType": "WDC_STRING" + }, + { + "name": "price", + "remoteType": "WDC_STRING" + }, + { + "name": "delivery_time", + "remoteType": "WDC_DATETIME" + }, + { + "name": "no_search", + "remoteType": "WDC_BOOL" + }, + { + "name": "sys_created_on", + "remoteType": "WDC_DATETIME" + }, + { + "name": "recurring_frequency", + "remoteType": "WDC_STRING" + }, + { + "name": "recurring_price", + "remoteType": "WDC_STRING" + }, + { + "name": "delivery_plan_script", + "remoteType": "WDC_STRING" + }, + { + "name": "visible_bundle", + "remoteType": "WDC_BOOL" + }, + { + "name": "sys_update_name", + "remoteType": "WDC_STRING" + }, + { + "name": "sys_name", + "remoteType": "WDC_STRING" + }, + { + "name": "visible_guide", + "remoteType": "WDC_BOOL" + }, + { + "name": "preview", + "remoteType": "WDC_STRING" + }, + { + "name": "omit_price", + "remoteType": "WDC_BOOL" + } + ] + } + ], + "downstreamSheets": [ + { + "id": "7fbc77ba-0ab6-3727-0db3-d8402a804da5", + "name": "Made SLA?" + }, + { + "id": "20fc5eb7-81eb-aa18-8c39-af501c62d085", + "name": "Opened Requests" + }, + { + "id": "2b5351c1-535d-4a4a-1339-c51ddd6abf8a", + "name": "Top 10 Items by Requests and YoY Change" + }, + { + "id": "721c3c41-7a2b-16a8-3281-6f948a44be96", + "name": "Overdue Requests" + }, + { + "id": "c14973c2-e1c3-563a-a9c1-8a408396d22a", + "name": "Tooltip - Request Breakdown by Priority" + } + ], + "fields": [ + { + "__typename": "ColumnField", + "id": "008efba8-a319-a2d1-017c-ac8b716464a1", + "name": "Closed by (Request)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "02290a78-a75c-49c9-e9f8-4010d0949eac", + "name": "Location", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "04dc385d-8417-aa5f-3f4c-27c4333fdb5e", + "name": "Opened", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "05e3ac4d-2a2f-43f4-095c-e735768bad55", + "name": "Mobile Picture", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "0a0d2eaa-a912-2e18-6c15-df4c31b2fda2", + "name": "Delivery task", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "CalculatedField", + "id": "0a972b7c-d9f9-9f60-4777-73d4c2edce73", + "name": "% made SLA", + "description": null, + "isHidden": false, + "folderName": null, + "role": "MEASURE", + "dataType": "REAL", + "defaultFormat": "p0%", + "aggregation": null, + "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])" + }, + { + "__typename": "ColumnField", + "id": "0c34bf50-f6c4-ffd5-820b-aa4d39b17145", + "name": "Meta", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "0c3589ad-af62-c35d-8e8f-878754bef4eb", + "name": "Correlation ID (Request)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "0ce0525d-249d-0583-da6f-1a8fe2c35be5", + "name": "Domain Path (Requested Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "0d2d74c7-251c-fccb-a10c-356eb18ce381", + "name": "Work notes (Requested Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "0d51375a-79a7-32db-5b69-7604d2440487", + "name": "Domain", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "0dbbf6a9-12f0-ab05-3a47-5cde0385d100", + "name": "Short description", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "0efd4d21-41ff-c601-b317-52134176c0a6", + "name": "Domain Path (Request)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "122a6170-8375-6ea3-67d1-9f1282bd3395", + "name": "Updated by (Requested Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "12bc3d05-58ca-b026-29f1-ab26e294c44f", + "name": "Additional comments (Requested Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "132c92e6-5670-b1c2-ba4e-04dd949b88c8", + "name": "Recurring price", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "135564cf-1b6a-e773-0434-aa221fbd2f6b", + "name": "Duration (Request)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "13788d86-4bc3-2f8c-7c81-22441862abe4", + "name": "Contact type", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "CalculatedField", + "id": "13b03dc6-0c35-2d6c-309b-4e38cf5f9ec0", + "name": "Total # Request", + "description": null, + "isHidden": false, + "folderName": null, + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": "Attribute", + "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])}" + }, + { + "__typename": "ColumnField", + "id": "13f2b909-b0be-cdf7-a0f6-f51f9ebfa575", + "name": "Requested for date", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATE", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "1532b8d8-95da-574f-5790-b80e3869ac60", + "name": "Upon approval", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "15920ddf-c025-a048-a71d-7b500535f323", + "name": "Ordered item link", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "15c932ba-aafa-4fb2-e616-5192aee65ab4", + "name": "Visible elsewhere", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "BOOLEAN", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "15cf1367-7a9d-7628-fa27-08fb49cc287d", + "name": "Price", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "15dbd6e4-a561-8760-6b6f-d0a3dffc2207", + "name": "Updated (Requested Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "1734af47-5c4c-9627-b8b0-9971a8a80b22", + "name": "Recurring Price Frequency (Catalog Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "174d81eb-c5e3-722b-993b-ec2c6423dd49", + "name": "Correlation display (Requested Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "175f2ede-eb52-2f9a-cb9c-fa88c1111dc0", + "name": "Order (Request)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "17c2014d-2507-6a9f-ad1e-2de49d4d42fe", + "name": "Group list", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "181b3cc8-66f2-764e-a3ed-dcd634ed165e", + "name": "Update name", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "18d38346-0679-cc25-ceac-7c3d44187292", + "name": "Special instructions", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "19ea2ef0-ca24-3b1d-5e57-2fd045efd0a2", + "name": "Execution Plan", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "1a16620c-c2e7-1c76-15bc-d2c177b1d070", + "name": "Visible on Bundles", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "BOOLEAN", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "1c06f71e-5a76-e28e-6cdc-897d0b4557dd", + "name": "Approval set (Requested Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "1cb5b877-0c99-f95c-bf72-59a514da4373", + "name": "No search", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "BOOLEAN", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "20f1306b-4773-0662-4253-02fd76e901a1", + "name": "Active (Request)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "BOOLEAN", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "22cbb922-13e7-d035-8265-31773e23bd2a", + "name": "Configuration item (Requested Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "23e08774-36b9-497e-3d14-df6cb90499d9", + "name": "Due date", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "241346ea-bd7a-5f61-4a48-c5d555d8c687", + "name": "List Price", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "2470d761-eb96-34ed-e9e8-93a85cee999b", + "name": "Company (Requested Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "24acc42c-935e-c9e6-604e-4d16a84cc0c7", + "name": "Additional assignee list", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "258f1373-9799-56d2-b92d-d91d71ea7e1b", + "name": "Expected start (Requested Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "25f757d1-a30b-3fe0-05d2-b924c9a25903", + "name": "Task type (Requested Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "26dbc4e1-7f24-1805-aaa2-430434a45e12", + "name": "Description (Catalog Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "26e8468a-eb18-e101-ca05-c3a973788f41", + "name": "Escalation (Requested Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "26eb4032-4bbf-f9fd-1a23-3156f038b811", + "name": "Customer update", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "BOOLEAN", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "26fac0b0-9c32-8b6c-4750-1af13c8aa0ec", + "name": "Time worked", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "274183a9-b33a-7d99-53ee-03010803a777", + "name": "Price (Catalog Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "276c386f-864d-e6a1-d9d6-4f0e52a1247d", + "name": "Approval (Requested Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "2ab8f665-e11e-6370-d100-6c204b83c436", + "name": "Due date (Request)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "2ba3fefa-ec86-2d62-513c-7eb93975277c", + "name": "Order Guide", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "2c742cd3-4300-8880-6db0-26bca6d67162", + "name": "Package", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "3024c8e3-bf18-c4ed-a65b-6483523f7112", + "name": "Watch list (Request)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "32479c99-87cf-4b10-f77c-65623e197323", + "name": "Delivery plan (Request)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "32952e69-cd24-fac4-9b40-6639d668e6f1", + "name": "Parent (Request)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "32fa8a47-f7e8-627d-83c7-26b967486b5d", + "name": "Urgency", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "3359b5b0-4947-afa1-b610-e90f51b21368", + "name": "Delivery address", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "368833f1-86ec-d717-d7c4-17460462696d", + "name": "Domain (Requested Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "37cbff94-4fcf-de28-3d7f-577148e25de5", + "name": "Work notes list (Request)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "38435c95-3578-5f91-b918-db4ca155348c", + "name": "Estimated Delivery", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "388f8f1e-59ea-9061-132d-b4395f36f3ad", + "name": "Activity due (Requested Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "39bf48ba-57b2-67a9-dc04-128658bb7c95", + "name": "Model", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "3a2833f2-44fc-19fb-9d35-0a89b36c56e0", + "name": "Billable", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "BOOLEAN", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "3bdf4fb2-6442-7243-be14-8e743a3c749a", + "name": "Created (Requested Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "3c0b9be1-6c0b-9b59-7a74-011173a4f6ac", + "name": "Opened by (Requested Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "3c172c79-58c8-887d-c057-8c79ab04a826", + "name": "Recurring Price Frequency", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "3ee4dbb7-1172-04b2-c5e8-05cada9b50aa", + "name": "Recurring Price", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "418ae8b3-ec94-9c2e-75d8-052576a242e0", + "name": "Fulfillment group", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "4255ae77-005b-f589-9ccd-19665baa8e58", + "name": "Name", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "4282472f-2d7a-8cd7-92c7-9b8b762242ea", + "name": "Additional comments (Request)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "441c2514-af72-5391-9777-9fcfaddc6741", + "name": "Created (Request)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "467161aa-e739-41ff-389b-793d49f47359", + "name": "Work notes (Request)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "467ddc9e-f3c0-1976-dcd4-18e0e0513c60", + "name": "Parent", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "46a60f30-fe47-1be7-97d9-e2fce6bebdc3", + "name": "Opened by (Request)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "46c15306-b653-1cef-bf53-f272c7e0771e", + "name": "Backordered", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "BOOLEAN", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "4769810f-04b7-6ea9-d279-6ba912159368", + "name": "No cart", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "BOOLEAN", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "4a18e53d-9f58-8115-363c-d8899262525f", + "name": "Ignore price", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "BOOLEAN", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "4b782f0a-af66-f996-6eb3-0eed7138db78", + "name": "Follow up (Request)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "4e8f122f-5f4d-77be-e716-b6434851bc79", + "name": "Number (Requested Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "4f2e8b54-8bb2-d5ee-764f-2cf037056728", + "name": "Approval set (Request)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "4f4cb0a0-d290-f269-6306-ffbda0b59bb9", + "name": "Priority", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": "Sum", + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "4f63ee1c-1ce8-5c28-3f38-19706fcb28f8", + "name": "Opened (Request)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "50a5f06d-6281-6cb0-5fa1-acacafc73035", + "name": "Correlation ID (Requested Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "51198995-f955-99c0-76dd-b65af948b3ab", + "name": "Created by", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "515b0be8-2b01-81e1-b5f4-d38c6028f450", + "name": "Short description (Requested Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "52562198-6ff7-8ab5-827c-d647ebdcc012", + "name": "Close notes (Request)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "537a920a-7f17-eba0-0b32-d597edc44483", + "name": "Duration (Requested Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "CalculatedField", + "id": "53de3015-a2ef-299d-a778-77b2669cee6f", + "name": "Overdue", + "description": null, + "isHidden": false, + "folderName": null, + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "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" + }, + { + "__typename": "ColumnField", + "id": "5498cd4e-affa-faee-8ede-3c3a271626b4", + "name": "Task type", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "5525b243-fc68-551f-c2fa-5336d846d162", + "name": "Location (Catalog Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "575b861c-2fd8-fbd5-e9b2-56554458ae26", + "name": "Measure Names", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [] + }, + { + "__typename": "ColumnField", + "id": "58ab3115-ed3a-e547-456f-19546d8ed7e6", + "name": "Upon approval (Requested Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "58ae7942-799d-2c8c-09f9-160e26f55499", + "name": "Cart", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "58b286a8-ca37-8bc3-9526-6b6ce5ec31f9", + "name": "Contact type (Request)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "58eb2a4c-9bf3-ae9c-3025-e74424ebf774", + "name": "Assigned to (Request)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "599e517c-0ee3-b31d-ec77-6c7d09585d32", + "name": "Replace on upgrade", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "BOOLEAN", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "5a54045b-981f-38c9-f858-440a1821d9ef", + "name": "Impact (Requested Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "5d63bd75-3187-f45f-619a-f01d8ecc8284", + "name": "Additional assignee list (Request)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "5dc0a505-e6ca-fa13-b183-045eb170c2ac", + "name": "Context", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "5e3fed63-8bc3-0beb-248e-94c11bdc594f", + "name": "Order (Catalog Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "5fc5cc14-7db8-4e62-dd6f-8f6728e7be93", + "name": "Priority (Request)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "60085593-4c40-45d0-cac9-710cb1b396ac", + "name": "Correlation display (Request)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "611e5630-f981-5cf2-e927-266bedcb86bc", + "name": "Requested for", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "6218e598-81e7-1b5b-ad84-5ce064025bc2", + "name": "Configuration item (Request)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "63c7744a-0948-b1ef-52a4-6a489e54e53a", + "name": "No order", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "BOOLEAN", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "63e5bd33-24cc-b6dd-4a6d-7c8c363f5450", + "name": "Billable (Catalog Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "BOOLEAN", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "643a8709-e5ea-9915-e06a-efad2d933ac0", + "name": "Created (Catalog Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "65a525c1-cd94-d4b8-ac37-7eebbb3c409f", + "name": "Upon reject", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "66f180f0-37a7-7693-72b0-f950666cc30b", + "name": "Assignment group (Requested Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "67020cc1-aae1-0682-36bd-23c5e608a1ff", + "name": "Sys ID (Catalog Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "691e556a-5091-64ce-6055-f6e831197143", + "name": "Updated", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "693cce97-337d-6650-3b28-a7715ab24d26", + "name": "No quantity", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "BOOLEAN", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "6a08f79f-2577-fa62-275a-2ec15857bc04", + "name": "Mobile Picture Type", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "6ab03c38-6eb6-b117-ce27-4c9534854b63", + "name": "Quantity", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "6b4727b4-9080-cc79-06a9-678404955895", + "name": "Delivery plan", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "6b6e72ec-e66e-ad8d-56e1-e9b684e82066", + "name": "Business duration (Request)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "6bf2227b-af9f-23df-d337-b19ea40031f5", + "name": "Protection policy", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "6c00ced2-cdb4-7abf-82bc-351e9949edea", + "name": "Follow up", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "6c8e9a78-a11e-6d92-b4d3-a1ef7d60aa27", + "name": "Location (Requested Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "6cdd6e20-5dfc-3c2a-72b7-15cc778665c8", + "name": "Omit price in cart", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "BOOLEAN", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "6dce7c6f-bebb-e5fe-f0ed-221a724b806a", + "name": "Catalogs", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "6ede002b-b1c1-39fa-b92e-fb6e652c4da3", + "name": "Urgency (Requested Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "6ff1a184-f3e1-a2ce-349e-ae5d76859d76", + "name": "User input (Requested Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "728a1525-246e-f30b-1d6e-6e3ef90739c3", + "name": "Updates (Catalog Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "72922b48-ca61-7998-c7fe-aa1e1ac13cdd", + "name": "Work notes", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "7548db00-2a35-387c-9d93-ecb4bd3eb691", + "name": "Entitlement script", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "75c9c62f-7158-3086-9443-ec06063631a9", + "name": "Follow up (Requested Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "7633c080-f332-a84d-d369-3fb8176a0f02", + "name": "Company", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "764aa481-ac4b-ba2c-d8d3-68b4e21fc54a", + "name": "Work start (Requested Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "784c3e44-b99d-9b52-7ebb-9e4ec6f0be9d", + "name": "Published version", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "789ea4f0-9d93-ca84-91db-a91c0c4e0b56", + "name": "Preview link", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "79c14db1-3507-37d7-b428-9820adfd4df5", + "name": "Updates (Requested Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "7b4f0f0d-91b1-8037-2ed6-99cbdf50ec09", + "name": "Updates", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "7ce2f502-a54b-41ad-cb89-ba72d78362bc", + "name": "Closed (Request)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "7f8b5ff1-8612-1c62-d3a1-b8f96c9a8fd7", + "name": "Assignment group (Request)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "810b150f-36d6-73cf-39a0-fa0b5afb89e6", + "name": "Comments and Work notes", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "82a612f8-5371-316e-624b-8e51f50583ac", + "name": "Price (Requested Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "833697a0-088e-de13-af21-1db93e07e1e6", + "name": "Active (Catalog Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "BOOLEAN", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "838264bf-b544-80df-d7d8-4ceb820e4307", + "name": "Stage (Requested Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "83ec93af-9405-34a9-bdd9-29955f5a73d6", + "name": "Visible on Guides", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "BOOLEAN", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "848b5022-e769-97ac-34ab-4855920f60f6", + "name": "Active", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "BOOLEAN", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "856cffc0-3019-b83d-7490-ddbe13b16d18", + "name": "Configuration item (Requested Item) 1", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "85b72af5-e44d-605a-4057-fd588a76ddb1", + "name": "Due date (Requested Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "88023bbb-07aa-5dda-a16e-782622c24d7c", + "name": "Assigned to", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "8874a6de-f4af-75c3-bf20-0b2baabb6f75", + "name": "Escalation (Request)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "89d6ce04-07f4-2963-ae3a-f297127905da", + "name": "Updated (Catalog Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "89faa1fd-6f36-a112-cc5a-b6d0519cb169", + "name": "Created", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "8ce117c7-74c3-224b-03e5-39594cf42106", + "name": "Type", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "8efa84c1-cd61-5372-d0cc-8ae1f02e6de0", + "name": "Category", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "9063d7de-4033-6d76-e49c-dd02e915d19b", + "name": "Delivery time", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "92fa607c-c8e4-839c-0d08-abe93725da96", + "name": "Item", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "937a4589-d8fa-9e04-256f-73c1f16f2607", + "name": "Expected start (Request)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "94392467-1a32-887a-1651-538af23ffe37", + "name": "Expected start", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "94b52aaa-3b07-fc08-a782-ae74e5677867", + "name": "Updated (Request)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "9625aa4e-fb89-7570-c346-306b70d32da1", + "name": "Stage", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "9653d847-7071-1216-cf9e-144575b95582", + "name": "Delivery task (Requested Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "96c48bb9-89ae-d542-0645-fe8b73f72dfe", + "name": "Request", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "989d24ed-df40-4769-0a2b-8ec1846c58ce", + "name": "Description (Requested Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "99300f69-6da1-1e15-80b6-92888e970fce", + "name": "Created by (Request)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "9958fe2e-6292-7768-b8a0-304ac36dc936", + "name": "Active (Requested Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "BOOLEAN", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "9ac5654f-df62-bb13-b7f5-41012b5e19e7", + "name": "Short description (Request)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "9b7f962e-6a86-e17e-4afd-44001f729df3", + "name": "Correlation display", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "9fdce669-4eed-3ecc-fa22-1a09b7f4a6db", + "name": "Reassignment count (Requested Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "a0c579b3-7423-144a-0f1d-ec8da1bcccba", + "name": "Work end", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "CalculatedField", + "id": "a322b8b0-c401-86a0-a5d8-2aea35da11d1", + "name": "Current Year Total Cases", + "description": null, + "isHidden": false, + "folderName": null, + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": "Attribute", + "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}" + }, + { + "__typename": "ColumnField", + "id": "a43fed62-a037-a6f3-6db4-11135d8b11db", + "name": "Approval", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "a455f93d-b035-918a-08b6-4f96a12ca24d", + "name": "Close notes", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "a54fcec0-97c3-72ab-cc19-23123070f7a3", + "name": "Updates (Request)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "a58db715-2016-b971-055c-de1d8bfb8f80", + "name": "Closed by", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "a62941e4-9f9f-93ed-f307-5e6dbfb728ad", + "name": "Delivery plan (Requested Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "a7058558-d759-9e23-ab6a-a656ee2f317d", + "name": "Resolve Time", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "a7c8d21d-db4e-debb-bfef-4994beba809d", + "name": "Business duration", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "CalculatedField", + "id": "a88003b6-66c0-f362-a977-2d5d9c6dd3db", + "name": "Max Year?", + "description": null, + "isHidden": false, + "folderName": null, + "role": "DIMENSION", + "dataType": "BOOLEAN", + "defaultFormat": null, + "aggregation": null, + "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])})" + }, + { + "__typename": "ColumnField", + "id": "ab41f607-d2c0-4db1-b744-d10914d8a6d5", + "name": "Updated by (Catalog Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "ac179862-0ef8-afd7-9801-0f2e0f385175", + "name": "Task type (Request)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "ac37a380-359c-e478-b642-e31a64c5f0d9", + "name": "Time worked (Request)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "aca50e11-a5b5-f063-8a78-656f47f29ec5", + "name": "Comments and Work notes (Request)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "acf6fb05-2503-f424-b15e-d603aaa0c223", + "name": "Time worked (Requested Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "adee9155-2a4b-ca21-7af8-0f42c17b7b45", + "name": "Contact type (Requested Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "ae692271-daf4-7453-e36b-b68d2c33f36f", + "name": "Additional assignee list (Requested Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "af29c272-905b-ef8b-47ed-be289fa4b858", + "name": "Approval history", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "afcdfd6b-02d3-1952-c6e9-3dce86cd9da4", + "name": "State", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "b0486a68-1e13-6dbb-76a4-edc7a1c856bf", + "name": "Group list (Request)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "b0590acf-db66-2aaf-1138-e6d56c9e2a97", + "name": "Made SLA", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "BOOLEAN", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "b05e2f82-9cd4-7b30-2932-e88632cb2a55", + "name": "Knowledge (Requested Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "BOOLEAN", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "b1247620-5f00-3f3e-fef3-4eef89c749d6", + "name": "Icon", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "b265ac9c-0287-b59b-27bd-d330a9fcdf79", + "name": "User input (Request)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "b2fab7e4-75ce-500f-40e9-a67e28c20272", + "name": "Display name", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "b3f50843-0f17-9c89-9579-58f317f65620", + "name": "Business service (Requested Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "b42c0a76-7906-498b-2049-681677b93421", + "name": "Reassignment count", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "b472e985-a322-905d-a2f8-699652137607", + "name": "Number (Request)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "b4dee84e-ef33-7e1e-ad52-02a84eb14dd0", + "name": "Duration", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "b6961a0e-b2ee-fb47-ffbe-a5e778092615", + "name": "Escalation", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "b6cc2e55-a89b-310e-557e-fe9ab2f297b0", + "name": "Comments and Work notes (Requested Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "CalculatedField", + "id": "b7a02779-5bcf-9fb6-c303-1dd5fdeacd49", + "name": "Number of Records", + "description": null, + "isHidden": true, + "folderName": null, + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "formula": "1" + }, + { + "__typename": "ColumnField", + "id": "b7c973cb-2fcd-38d4-ec5c-3252e0c61946", + "name": "Work start (Request)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "b7ea244e-0957-b32e-1c82-2c7d6c0c77e8", + "name": "Close notes (Requested Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "b8021235-a9c3-d250-6bb6-acd2742549b3", + "name": "State (Request)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "b8336140-37e9-bc30-246e-2e84d7d776de", + "name": "Description (Request)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "b887e02d-9fb3-e1b2-fce9-e2d9e1864247", + "name": "State (Requested Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "b94dd2fe-50fe-59a7-5dbe-b8c8a224ac90", + "name": "No proceed checkout", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "BOOLEAN", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "b9abd974-460e-1a62-58e8-3da85bd2b27a", + "name": "Measure Values", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "REAL", + "defaultFormat": null, + "aggregation": null, + "columns": [] + }, + { + "__typename": "ColumnField", + "id": "b9fc7e1e-469b-1182-f05f-44c55e5a7dbb", + "name": "Watch list (Requested Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "baa30890-390b-01ae-2463-3d41ad6af87d", + "name": "SLA due (Requested Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "bb02c81e-5779-e29e-c839-891f6ca7c4fd", + "name": "Impact (Request)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "bbb1056d-69e3-97a5-398a-42500522ecac", + "name": "Updated by", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "bcfd29ee-8e1f-fcac-df18-926bf5e4cd4f", + "name": "Sys ID (Request)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "bd26196b-38a8-ecd4-761c-f2f8597db4ea", + "name": "Closed (Requested Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "bd61f261-1255-c145-c113-390625309968", + "name": "Activity due (Request)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "bed11b20-9063-82d9-5a53-ef8bb75619bb", + "name": "Use cart layout", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "BOOLEAN", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "c0c11123-d69b-0e06-69a5-04267ffd5d26", + "name": "No order now", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "BOOLEAN", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "c0c66aca-3a2a-f391-01cf-03df31ea7794", + "name": "SLA due (Request)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "c1c3585e-d839-80ff-51c3-3de8ca6bfd61", + "name": "Application", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "c2bac94d-07df-2670-c669-d72b13d8d29f", + "name": "User input", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "c34e0dd8-b2ba-1998-d418-b0868844b0d7", + "name": "Additional comments", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "c3d35a2b-5ef1-63d7-f220-f89f522d8897", + "name": "Approval (Request)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "c3e5bbe9-319e-73bb-7036-c547ceb51ad8", + "name": "Reassignment count (Request)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "c40c1cbb-92ec-cf6d-2a06-08358d05582a", + "name": "Template", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "c447bddc-cd0a-bd6b-f46a-d2c822c16738", + "name": "Urgency (Request)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "c5b10ad6-d4d8-2d35-d924-db924be17994", + "name": "Catalog", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "c5dfe431-73c7-546b-e03a-515dfe988f6a", + "name": "Image", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "c616d5a0-20bb-e3ba-9ab5-43570a2718a8", + "name": "Knowledge", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "BOOLEAN", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "c821a872-624f-0044-69a9-3c6208f413d6", + "name": "Impact", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "c84e3892-d96e-1de0-0d68-05ec16205f3e", + "name": "Created by (Requested Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "c95e3006-8dfb-c213-b2da-d46a6955ddf6", + "name": "Priority (Requested Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "c96e0f19-d3a7-3a3d-6926-d69946eb2de6", + "name": "Updated by (Request)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "c9bc3709-4cb0-6c4d-088d-3ae66f74aa06", + "name": "Approval history (Request)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "cab3646c-724a-e8d9-9ae4-d423914c8482", + "name": "Made SLA (Requested Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "BOOLEAN", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "CalculatedField", + "id": "cbbdf8b2-2491-2228-b0ec-cf1bfe6ec52c", + "name": "% of Overdue", + "description": null, + "isHidden": false, + "folderName": null, + "role": "MEASURE", + "dataType": "REAL", + "defaultFormat": "p0%", + "aggregation": null, + "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])})" + }, + { + "__typename": "ColumnField", + "id": "cbfb76b9-d958-bf73-91d5-2abe9f57ec6a", + "name": "Workflow", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "cdb98a84-b6b5-d630-b929-871bb56f4054", + "name": "Location (Request)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "cf2aa6cd-3c9c-69ff-819e-53a8d720e7a0", + "name": "Class", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "d0f3198a-9ead-4d49-e911-0da4f2ff89e5", + "name": "Created from item design", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "d1b741a8-6514-9d72-764c-f16ae538e2c8", + "name": "Business service", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "d3570da1-02ed-806a-19f6-36d4d7c5d3ae", + "name": "Upon approval (Request)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "d36671a9-e069-e42b-37dd-deac9e6c84f1", + "name": "Knowledge (Request)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "BOOLEAN", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "d3ab05cd-fcb7-c5cf-a63b-f8caf9417dab", + "name": "Migrated Data", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "TABLE", + "defaultFormat": null, + "aggregation": null, + "columns": [] + }, + { + "__typename": "ColumnField", + "id": "d4311978-3ead-9d0a-df44-3b46b0ba9575", + "name": "Parent (Requested Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "d4567175-b4df-d6b5-f68c-6ea7fbd2445c", + "name": "Company (Request)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "d55a7e9d-f059-e5eb-e9ec-eb98d97e7097", + "name": "Assigned to (Requested Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "d5881216-e42f-c1a0-b255-c08dbc7c0092", + "name": "Closed by (Requested Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "d66ae755-c173-7e1d-3a7d-9a3c0cffe05c", + "name": "Roles", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "d6712752-0e66-2497-b404-16204fcaf0d0", + "name": "SLA due", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "d753ea95-e162-42f6-def6-6cfeaa7d7dd3", + "name": "Short description (Catalog Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "d7be6a1a-1224-27b1-7b69-34e47dc9ce76", + "name": "Hide price (mobile listings)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "BOOLEAN", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "d7e4cd8a-5110-0285-0a87-e54a29f5d4d4", + "name": "Work start", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "d8a0d4a8-a64b-b8f2-ae8c-154dce73618d", + "name": "Business duration (Requested Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "d9aedf00-942d-88dc-f69e-0a1e2a762459", + "name": "Assignment group", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "d9bc04ba-76e9-3602-d215-0056f1b0a7ce", + "name": "Upon reject (Requested Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "da538d8c-c121-07e9-d6c7-922ca9c97c0a", + "name": "Availability", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "dbc0a381-fcad-8096-6ba1-b15d1288a290", + "name": "Vendor", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "dd65ef75-a294-91d9-69e7-fa0aaf00d283", + "name": "Work notes list", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "df2d4778-d646-2106-e647-c6bbba843272", + "name": "Picture", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "dfafbea8-91ed-d99d-9b33-c907310eebcd", + "name": "Group list (Requested Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "e00c27d8-4ffd-25a2-906e-edeebd37e49f", + "name": "Work notes list (Requested Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "e1aca33d-7570-e580-ed64-fa5360f313cd", + "name": "Opened by", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "e3068773-d950-e10b-a65b-b850ed70c6ca", + "name": "Watch list", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "e452781c-07b5-05b5-bf67-540832d58064", + "name": "Upon reject (Request)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "e4b1070f-09eb-7ec8-1658-1555a7db8550", + "name": "Delivery plan script", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "e64f9c26-5717-052e-a0fc-db41d5f8911e", + "name": "Order (Requested Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "e7578bfd-8620-bd9f-f6ee-934bae3c1d3a", + "name": "Work end (Requested Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "e7c96d5a-dd68-4f96-310c-66b7fa3c4bab", + "name": "Sys ID", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "e8da99f0-8f5d-2614-7551-0490660dbed3", + "name": "Opened (Requested Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "e9134c81-82dd-4042-4444-57b4a47a72cc", + "name": "Made SLA (Request)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "BOOLEAN", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "eb38fd46-add4-2b2a-ea8b-8089a6ae5067", + "name": "Approval set", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "ed845856-3909-fe72-2dd9-1a9404050bfa", + "name": "Approval history (Requested Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "edb7b2e8-c5a1-819a-b423-125134d0c557", + "name": "Sys ID (Requested Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "ee1f261c-bd68-a110-186a-da823d37b1c3", + "name": "Work end (Request)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "CalculatedField", + "id": "ef6b51a9-6347-ed97-5baf-c6c53baa4751", + "name": "Total Active Requests", + "description": null, + "isHidden": false, + "folderName": null, + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": "Attribute", + "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}" + }, + { + "__typename": "ColumnField", + "id": "f157463f-0e40-e589-c1fc-d85587fd89b8", + "name": "Delivery task (Request)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "f18c30e5-41c7-8c28-3ad6-9b3474b0810b", + "name": "Start closed", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "BOOLEAN", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "f1f56c79-6d45-31ae-663f-4e529ec1f3cf", + "name": "Domain (Request)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "f38cfc69-e333-72d7-7bc5-e16957df3dec", + "name": "Correlation ID", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "f3d4aefe-efef-0eef-f741-12b236720626", + "name": "Number", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "f4555797-f26b-ec4c-1234-3c46a142fb30", + "name": "Closed", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "f628cef0-e94c-eada-07d1-36fb881b2a63", + "name": "Request state", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "f6f4e8a1-209b-7202-0e9b-907d87a994b5", + "name": "Business service (Request)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "f7a6d35d-6360-a237-86c3-57f11bbc7a2e", + "name": "Configuration item", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "f7cb4ce9-1805-1a51-3363-b910e97117d8", + "name": "Description", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "f7f588fc-0c6d-aed3-9819-e3f9b9c926dd", + "name": "Activity due", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "f852966b-add1-7857-3eb0-5b395f533b0d", + "name": "Cost", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "REAL", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "f9bc6be4-b6e7-c03b-c43b-b8bdff7ef356", + "name": "Domain Path", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "fdfa2354-b648-706a-2dc4-8bf2fac9bf15", + "name": "Order", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "fe164caf-ec76-8eab-9a65-8e910f130ed9", + "name": "Created by (Catalog Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + } + ], + "upstreamDatasources": [], + "workbook": { + "id": "6ffa5a7f-d852-78f1-6c6d-20ac23610ebf", + "name": "Executive Dashboard", + "projectName": "default", + "owner": { + "username": "jawadqu@gmail.com" + } + } + }, + { + "__typename": "EmbeddedDatasource", + "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", + "name": "Problems", + "hasExtracts": true, + "extractLastRefreshTime": "2018-01-18T20:21:33Z", + "extractLastIncrementalUpdateTime": null, + "extractLastUpdateTime": "2018-01-18T20:21:33Z", + "upstreamDatabases": [ + { + "id": "8b658fa9-59fc-c9cf-0830-a228200ce456", + "name": "ven01911", + "connectionType": "webdata-direct:servicenowitsm-servicenowitsm", + "isEmbedded": true + } + ], + "upstreamTables": [ + { + "id": "f306c458-6b1d-ed1d-a52c-6d72ea27d21a", + "database": { + "name": "ven01911" + }, + "name": "task", + "schema": "", + "fullName": "[task]", + "connectionType": "webdata-direct:servicenowitsm-servicenowitsm", + "description": "", + "columns": [ + { + "name": "upon_reject", + "remoteType": "WDC_STRING" + }, + { + "name": "description", + "remoteType": "WDC_STRING" + }, + { + "name": "additional_assignee_list", + "remoteType": "WDC_STRING" + }, + { + "name": "sys_id", + "remoteType": "WDC_STRING" + }, + { + "name": "due_date", + "remoteType": "WDC_DATETIME" + }, + { + "name": "sys_updated_on", + "remoteType": "WDC_DATETIME" + }, + { + "name": "urgency", + "remoteType": "WDC_INT" + }, + { + "name": "comments", + "remoteType": "WDC_STRING" + }, + { + "name": "cmdb_ci", + "remoteType": "WDC_STRING" + }, + { + "name": "approval_set", + "remoteType": "WDC_DATETIME" + }, + { + "name": "parent", + "remoteType": "WDC_STRING" + }, + { + "name": "number", + "remoteType": "WDC_STRING" + }, + { + "name": "state", + "remoteType": "WDC_INT" + }, + { + "name": "time_worked", + "remoteType": "WDC_STRING" + }, + { + "name": "location", + "remoteType": "WDC_STRING" + }, + { + "name": "order", + "remoteType": "WDC_INT" + }, + { + "name": "calendar_duration", + "remoteType": "WDC_DATETIME" + }, + { + "name": "business_duration", + "remoteType": "WDC_DATETIME" + }, + { + "name": "reassignment_count", + "remoteType": "WDC_INT" + }, + { + "name": "closed_by", + "remoteType": "WDC_STRING" + }, + { + "name": "priority", + "remoteType": "WDC_INT" + }, + { + "name": "sys_created_on", + "remoteType": "WDC_DATETIME" + }, + { + "name": "impact", + "remoteType": "WDC_INT" + }, + { + "name": "comments_and_work_notes", + "remoteType": "WDC_STRING" + }, + { + "name": "work_end", + "remoteType": "WDC_DATETIME" + }, + { + "name": "sys_class_name", + "remoteType": "WDC_STRING" + }, + { + "name": "sys_domain", + "remoteType": "WDC_STRING" + }, + { + "name": "delivery_plan", + "remoteType": "WDC_STRING" + }, + { + "name": "user_input", + "remoteType": "WDC_STRING" + }, + { + "name": "sys_domain_path", + "remoteType": "WDC_STRING" + }, + { + "name": "approval_history", + "remoteType": "WDC_STRING" + }, + { + "name": "work_start", + "remoteType": "WDC_DATETIME" + }, + { + "name": "made_sla", + "remoteType": "WDC_BOOL" + }, + { + "name": "closed_at", + "remoteType": "WDC_DATETIME" + }, + { + "name": "activity_due", + "remoteType": "WDC_DATETIME" + }, + { + "name": "watch_list", + "remoteType": "WDC_STRING" + }, + { + "name": "approval", + "remoteType": "WDC_STRING" + }, + { + "name": "opened_by", + "remoteType": "WDC_STRING" + }, + { + "name": "escalation", + "remoteType": "WDC_INT" + }, + { + "name": "sys_mod_count", + "remoteType": "WDC_INT" + }, + { + "name": "short_description", + "remoteType": "WDC_STRING" + }, + { + "name": "group_list", + "remoteType": "WDC_STRING" + }, + { + "name": "assignment_group", + "remoteType": "WDC_STRING" + }, + { + "name": "opened_at", + "remoteType": "WDC_DATETIME" + }, + { + "name": "sys_updated_by", + "remoteType": "WDC_STRING" + }, + { + "name": "assigned_to", + "remoteType": "WDC_STRING" + }, + { + "name": "contact_type", + "remoteType": "WDC_STRING" + }, + { + "name": "work_notes_list", + "remoteType": "WDC_STRING" + }, + { + "name": "upon_approval", + "remoteType": "WDC_STRING" + }, + { + "name": "expected_start", + "remoteType": "WDC_DATETIME" + }, + { + "name": "knowledge", + "remoteType": "WDC_BOOL" + }, + { + "name": "delivery_task", + "remoteType": "WDC_STRING" + }, + { + "name": "work_notes", + "remoteType": "WDC_STRING" + }, + { + "name": "company", + "remoteType": "WDC_STRING" + }, + { + "name": "business_service", + "remoteType": "WDC_STRING" + }, + { + "name": "close_notes", + "remoteType": "WDC_STRING" + }, + { + "name": "sys_created_by", + "remoteType": "WDC_STRING" + }, + { + "name": "correlation_id", + "remoteType": "WDC_STRING" + }, + { + "name": "sla_due", + "remoteType": "WDC_DATETIME" + }, + { + "name": "active", + "remoteType": "WDC_BOOL" + }, + { + "name": "correlation_display", + "remoteType": "WDC_STRING" + }, + { + "name": "follow_up", + "remoteType": "WDC_DATETIME" + } + ] + }, + { + "id": "f9588215-a80d-42e8-0bd3-c3b110a19e22", + "name": "sys_user_group", + "database": { + "name": "ven01911" + }, + "schema": "", + "fullName": "[sys_user_group]", + "connectionType": "webdata-direct:servicenowitsm-servicenowitsm", + "description": "", + "columns": [ + { + "name": "u_u", + "remoteType": "WDC_STRING" + }, + { + "name": "sys_updated_by", + "remoteType": "WDC_STRING" + }, + { + "name": "source", + "remoteType": "WDC_STRING" + }, + { + "name": "exclude_manager", + "remoteType": "WDC_BOOL" + }, + { + "name": "description", + "remoteType": "WDC_STRING" + }, + { + "name": "cost_center", + "remoteType": "WDC_STRING" + }, + { + "name": "sys_created_by", + "remoteType": "WDC_STRING" + }, + { + "name": "parent", + "remoteType": "WDC_STRING" + }, + { + "name": "sys_mod_count", + "remoteType": "WDC_INT" + }, + { + "name": "sys_updated_on", + "remoteType": "WDC_DATETIME" + }, + { + "name": "u_lucha", + "remoteType": "WDC_STRING" + }, + { + "name": "sys_id", + "remoteType": "WDC_STRING" + }, + { + "name": "u_lu2", + "remoteType": "WDC_STRING" + }, + { + "name": "type", + "remoteType": "WDC_STRING" + }, + { + "name": "roles", + "remoteType": "WDC_STRING" + }, + { + "name": "sys_created_on", + "remoteType": "WDC_DATETIME" + }, + { + "name": "default_assignee", + "remoteType": "WDC_STRING" + }, + { + "name": "email", + "remoteType": "WDC_STRING" + }, + { + "name": "manager", + "remoteType": "WDC_STRING" + }, + { + "name": "name", + "remoteType": "WDC_STRING" + }, + { + "name": "active", + "remoteType": "WDC_BOOL" + }, + { + "name": "include_members", + "remoteType": "WDC_BOOL" + } + ] + }, + { + "id": "fffba843-b0c6-c083-0f6f-5c2ea5075d50", + "name": "problem", + "database": { + "name": "ven01911" + }, + "schema": "", + "fullName": "[problem]", + "connectionType": "webdata-direct:servicenowitsm-servicenowitsm", + "description": "", + "columns": [ + { + "name": "opened_by", + "remoteType": "WDC_STRING" + }, + { + "name": "sys_class_name", + "remoteType": "WDC_STRING" + }, + { + "name": "sys_created_by", + "remoteType": "WDC_STRING" + }, + { + "name": "sys_updated_on", + "remoteType": "WDC_DATETIME" + }, + { + "name": "closed_by", + "remoteType": "WDC_STRING" + }, + { + "name": "close_notes", + "remoteType": "WDC_STRING" + }, + { + "name": "made_sla", + "remoteType": "WDC_BOOL" + }, + { + "name": "state", + "remoteType": "WDC_INT" + }, + { + "name": "related_incidents", + "remoteType": "WDC_INT" + }, + { + "name": "business_duration", + "remoteType": "WDC_DATETIME" + }, + { + "name": "sys_domain", + "remoteType": "WDC_STRING" + }, + { + "name": "delivery_task", + "remoteType": "WDC_STRING" + }, + { + "name": "priority", + "remoteType": "WDC_INT" + }, + { + "name": "sys_created_on", + "remoteType": "WDC_DATETIME" + }, + { + "name": "sys_id", + "remoteType": "WDC_STRING" + }, + { + "name": "escalation", + "remoteType": "WDC_INT" + }, + { + "name": "business_service", + "remoteType": "WDC_STRING" + }, + { + "name": "comments_and_work_notes", + "remoteType": "WDC_STRING" + }, + { + "name": "rfc", + "remoteType": "WDC_STRING" + }, + { + "name": "sys_domain_path", + "remoteType": "WDC_STRING" + }, + { + "name": "cmdb_ci", + "remoteType": "WDC_STRING" + }, + { + "name": "problem_state", + "remoteType": "WDC_INT" + }, + { + "name": "delivery_plan", + "remoteType": "WDC_STRING" + }, + { + "name": "user_input", + "remoteType": "WDC_STRING" + }, + { + "name": "active", + "remoteType": "WDC_BOOL" + }, + { + "name": "location", + "remoteType": "WDC_STRING" + }, + { + "name": "expected_start", + "remoteType": "WDC_DATETIME" + }, + { + "name": "calendar_duration", + "remoteType": "WDC_DATETIME" + }, + { + "name": "number", + "remoteType": "WDC_STRING" + }, + { + "name": "sla_due", + "remoteType": "WDC_DATETIME" + }, + { + "name": "work_notes_list", + "remoteType": "WDC_STRING" + }, + { + "name": "knowledge", + "remoteType": "WDC_BOOL" + }, + { + "name": "sys_updated_by", + "remoteType": "WDC_STRING" + }, + { + "name": "time_worked", + "remoteType": "WDC_STRING" + }, + { + "name": "order", + "remoteType": "WDC_INT" + }, + { + "name": "assignment_group", + "remoteType": "WDC_STRING" + }, + { + "name": "upon_approval", + "remoteType": "WDC_STRING" + }, + { + "name": "company", + "remoteType": "WDC_STRING" + }, + { + "name": "opened_at", + "remoteType": "WDC_DATETIME" + }, + { + "name": "group_list", + "remoteType": "WDC_STRING" + }, + { + "name": "work_around", + "remoteType": "WDC_STRING" + }, + { + "name": "description", + "remoteType": "WDC_STRING" + }, + { + "name": "work_end", + "remoteType": "WDC_DATETIME" + }, + { + "name": "correlation_id", + "remoteType": "WDC_STRING" + }, + { + "name": "approval_set", + "remoteType": "WDC_DATETIME" + }, + { + "name": "urgency", + "remoteType": "WDC_INT" + }, + { + "name": "impact", + "remoteType": "WDC_INT" + }, + { + "name": "short_description", + "remoteType": "WDC_STRING" + }, + { + "name": "approval", + "remoteType": "WDC_STRING" + }, + { + "name": "closed_at", + "remoteType": "WDC_DATETIME" + }, + { + "name": "known_error", + "remoteType": "WDC_BOOL" + }, + { + "name": "due_date", + "remoteType": "WDC_DATETIME" + }, + { + "name": "work_start", + "remoteType": "WDC_DATETIME" + }, + { + "name": "activity_due", + "remoteType": "WDC_DATETIME" + }, + { + "name": "sys_mod_count", + "remoteType": "WDC_INT" + }, + { + "name": "correlation_display", + "remoteType": "WDC_STRING" + }, + { + "name": "contact_type", + "remoteType": "WDC_STRING" + }, + { + "name": "additional_assignee_list", + "remoteType": "WDC_STRING" + }, + { + "name": "approval_history", + "remoteType": "WDC_STRING" + }, + { + "name": "reassignment_count", + "remoteType": "WDC_INT" + }, + { + "name": "follow_up", + "remoteType": "WDC_DATETIME" + }, + { + "name": "comments", + "remoteType": "WDC_STRING" + }, + { + "name": "work_notes", + "remoteType": "WDC_STRING" + }, + { + "name": "parent", + "remoteType": "WDC_STRING" + }, + { + "name": "assigned_to", + "remoteType": "WDC_STRING" + }, + { + "name": "watch_list", + "remoteType": "WDC_STRING" + }, + { + "name": "upon_reject", + "remoteType": "WDC_STRING" + } + ] + } + ], + "downstreamSheets": [ + { + "id": "e70a540d-55ed-b9cc-5a3c-01ebe81a1274", + "name": "Age of Active Problems" + }, + { + "id": "b679da5e-7d03-f01e-b2ea-01fb3c1926dc", + "name": "Tooltip - Problem Breakdown by Priority" + }, + { + "id": "b207c2f2-b675-32e3-2663-17bb836a018b", + "name": "Overdue Problems" + }, + { + "id": "2b73b9dd-4ec7-75ca-f2e9-fa1984ca8b72", + "name": "Opened Problems" + }, + { + "id": "53b8dc2f-8ada-51f7-7422-fe82e9b803cc", + "name": "High and Critical Priority Problems" + }, + { + "id": "618b3e76-75c1-cb31-0c61-3f4890b72c31", + "name": "Known Errors" + } + ], + "fields": [ + { + "__typename": "ColumnField", + "id": "00063251-7439-42d0-92ed-ef1e4780f535", + "name": "SLA due (Problem)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "01e9bb1a-4104-6015-c523-a8ced60c0141", + "name": "Reassignment count", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "082a9196-5708-f04c-fea5-4b41017364a4", + "name": "Active (Group)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "BOOLEAN", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "0a750e32-3a43-ba4b-8965-414be6582d71", + "name": "Expected start", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "0d28c5bd-5a38-b27a-ab29-dd463cb88781", + "name": "Expected start (Problem)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "0d469bda-c335-56e9-5a99-e5ff72fc3eb5", + "name": "Description", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "0e6317db-3c7e-6108-142f-b135c7c5446e", + "name": "Impact", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "102561e9-3e82-6fb0-8cf0-5358554ced64", + "name": "Location (Problem)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "107ea9de-0cb0-68d4-7fa0-88cb302111f9", + "name": "Created by (Group)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "1273ded0-48d6-124a-6478-c890e710d77b", + "name": "Time worked", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "15497da4-f39e-eee6-ff86-a62a21ab018e", + "name": "Active (Problem)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "BOOLEAN", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "1708b90c-543c-1187-12e4-5fb2efc4398d", + "name": "Duration", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "17737de3-7edf-6e9f-98f9-4babf6c1ec52", + "name": "Default assignee", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "1810002a-23d7-fb93-88ba-8929d7ae6626", + "name": "Updates", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "1a6643b1-0d5e-10b1-ce9e-8e899f5bb74d", + "name": "Workaround", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "CalculatedField", + "id": "1b0ade5c-b27a-37c9-3777-5f1b10db972e", + "name": "Overdue", + "description": null, + "isHidden": false, + "folderName": null, + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "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}" + }, + { + "__typename": "ColumnField", + "id": "1cc3d024-5f16-0c4b-2a11-f25e74a529f7", + "name": "Domain Path", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "204940b8-ad53-93bc-7f4e-0c49a1ced7c8", + "name": "Number", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "20a816a9-cd49-1c22-c174-68cabbdfb5d6", + "name": "Approval", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "20ca442a-ce32-096c-1930-631070435f6a", + "name": "Created by (Problem)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "221c3b38-b379-ca91-033c-12e1c3bdc2a6", + "name": "Closed by (Problem)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "2434f7f7-34cc-38bf-1a6d-b38cda03767d", + "name": "Approval set", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "2636292d-03af-c4bf-1d23-125e93817c46", + "name": "Short description (Problem)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "275cd5a0-27af-24b5-dceb-7b949069c5b1", + "name": "Updated by (Problem)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "27b9efb6-3bf8-554c-6483-90302baea5a4", + "name": "Sys ID (Problem)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "286f168e-6791-76ec-a3fd-5869e249a90d", + "name": "Work notes (Problem)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "29bf12fc-c7cb-2646-0018-d1ad17df380e", + "name": "Escalation", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "2a16d7b7-664b-e4fb-5992-9e46656be0f6", + "name": "Migrated Data", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "TABLE", + "defaultFormat": null, + "aggregation": null, + "columns": [] + }, + { + "__typename": "ColumnField", + "id": "2b288274-2ad4-46e5-e3a4-083d40c27ca5", + "name": "Correlation display", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "2c072517-9087-302b-45d2-f1784dbabadb", + "name": "Business service", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "2dcbb622-7def-1148-f71d-7e684889280c", + "name": "Knowledge", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "BOOLEAN", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "2ddcc070-6825-e04c-0f86-71b41a108592", + "name": "Comments and Work notes (Problem)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "2e6f4141-1ff0-23f8-ca7b-7e2f725e429c", + "name": "Delivery task (Problem)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "2edd6e6a-0441-a361-3c1c-787fee02887b", + "name": "Delivery task", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "2eddd399-9dd8-6077-b068-6170fe145c9a", + "name": "Work notes list (Problem)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "314b11a4-eb95-e74a-485b-b9e701ba63ca", + "name": "Work notes list", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "31bb1233-4c26-8c2b-b01d-e3257257b20a", + "name": "Opened by (Problem)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "37ff2384-09ee-37a0-68de-50fcf93dad5e", + "name": "Parent (Problem)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "3983e917-c97c-2ef3-3646-c8b7ed6b7cde", + "name": "Escalation (Problem)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "39cb645a-f49b-46ba-e105-0d4e5a557a50", + "name": "u", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "3a946020-200f-ef9c-3ffb-dc3d1d7f8d83", + "name": "Due date", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "CalculatedField", + "id": "3ca79cbf-1f11-1c6b-8cff-8809fb78847d", + "name": "Time Span Breakdown", + "description": null, + "isHidden": false, + "folderName": null, + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "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" + }, + { + "__typename": "ColumnField", + "id": "3d079b7f-055a-9e32-a556-06b5ba88b724", + "name": "Activity due", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "3d9a1e8a-dece-0426-1de3-ce1b17f280bc", + "name": "Made SLA (Problem)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "BOOLEAN", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "3e307351-7b04-b559-f1b1-ae2e7540399b", + "name": "Business duration", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "4385ee61-4737-cf60-8a23-98e27ce055c5", + "name": "u_", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "463b329f-3168-d7ba-51c2-9fc559c59e74", + "name": "Change request", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "474dbfe8-d6ab-6ce9-615f-2b8c7cd72c1f", + "name": "Close notes (Problem)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "47a4c0ce-80ed-c19f-318e-a939a71e23b8", + "name": "Correlation display (Problem)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "4898fa27-e5c9-e339-83c0-95afb40a6f3c", + "name": "Approval set (Problem)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "4b2193e9-48cf-e370-2354-08960ecb2669", + "name": "Upon approval (Problem)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "4bc64791-96fa-d9bf-46bc-3fb125979a8b", + "name": "Follow up (Problem)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "4e71e5aa-56fe-adf9-1c4c-9172d06d7bd0", + "name": "Updates (Problem)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "51b313dc-a42c-fee6-bf29-b00afd3afeeb", + "name": "Assigned to (Problem)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "CalculatedField", + "id": "545b9d43-eae2-8cbc-99d0-27058e192e95", + "name": "% of Overdue", + "description": null, + "isHidden": false, + "folderName": null, + "role": "MEASURE", + "dataType": "REAL", + "defaultFormat": "p0%", + "aggregation": null, + "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])})" + }, + { + "__typename": "ColumnField", + "id": "5563d48f-36df-74c8-400a-d167d6026e8c", + "name": "Sys ID (Group)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "56c61068-74ae-1683-4285-ab67e479b2b1", + "name": "Updated (Problem)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "57b8ab3a-2a5e-8762-a1a6-7f4619af8f45", + "name": "Approval (Problem)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "597b6c72-023a-971a-ab51-d8a0175f3980", + "name": "Time worked (Problem)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "59ac55b4-449a-a192-52d0-89fd0311c100", + "name": "Assignment group", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "5a1b706a-7d10-2971-26e7-16e2dc023fbd", + "name": "SLA due", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "5ae351de-6951-d9bb-6084-905aaf36acc7", + "name": "Created", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "5ae89446-3361-5c2b-aff0-96fe2133779f", + "name": "Created by", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "5e86cadb-a132-14db-8a23-c8e2d7cbebd5", + "name": "Cost center", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "5ea7e018-fcdd-e7f0-12c2-5059b8a95631", + "name": "Delivery plan (Problem)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "637edfdf-a02f-d4b2-695d-58f86520a466", + "name": "Domain (Problem)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "639e97db-56cb-5c83-c39f-f79a3acc7a0a", + "name": "Activity due (Problem)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "644f210f-5b10-ac75-d6f4-c0b1d364af30", + "name": "Group list", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "64591d51-9d4a-2759-7852-87aa2bcb0438", + "name": "Roles", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "CalculatedField", + "id": "6815a7f2-82b4-4b5f-7212-20c3894eeb0e", + "name": "Total # Problems", + "description": null, + "isHidden": false, + "folderName": null, + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": "Attribute", + "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])}" + }, + { + "__typename": "ColumnField", + "id": "6e395433-83a6-cfa2-a243-195b96674a7f", + "name": "Additional comments", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "6fb1d4f0-f0ba-0f95-2f7c-20bba021df32", + "name": "Duration (Problem)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "70078cf3-13bd-863d-594c-bd8e9e4680cc", + "name": "Updated by", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "730d411d-1a9e-391f-6749-cb86f81fd10c", + "name": "Domain Path (Problem)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "73d0ea57-a4b1-a2d7-41dd-06c010809086", + "name": "Parent (Group)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "761ab98a-f63e-9487-9164-4e67ff5847e8", + "name": "Watch list", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "76552343-464f-748f-8fd5-8466ad906420", + "name": "Due date (Problem)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "78c21e64-d43e-5b59-22cc-647b77ecf64e", + "name": "Business duration (Problem)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "7ab7701e-d395-2505-c768-2f9d6e2903f5", + "name": "Urgency (Problem)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "7bdbc329-3b53-ddc9-451a-62e95d19406b", + "name": "Correlation ID", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "7cc637cf-bb98-8073-bc08-cd06bd457ae2", + "name": "Work start (Problem)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "7de3a818-2d72-9b14-320c-321fd1879aaf", + "name": "Contact type", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "7defb5b3-27c6-3039-d2bd-2a9f1f272752", + "name": "Urgency", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "CalculatedField", + "id": "800b5b29-6e5a-7c6f-af58-1da43992b340", + "name": "Number of Records", + "description": null, + "isHidden": true, + "folderName": null, + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "formula": "1" + }, + { + "__typename": "ColumnField", + "id": "80648b09-43b9-511c-767c-773a1c79ee4e", + "name": "Opened (Problem)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "825a07ec-113e-cb1b-5659-bdfcd18f6ea9", + "name": "Sys ID", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "82ae3f36-177c-7979-3b5e-9ee6b16341c7", + "name": "Manager", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "82fe5c00-66b0-38bd-6d12-fce5418c2110", + "name": "Exclude manager", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "BOOLEAN", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "832b6e6d-3a12-3d68-ffda-e17819eae225", + "name": "Lucha", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "858f09a3-a80b-b76b-4815-8310678912fe", + "name": "Task type", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "868fffe2-1903-0353-cf1a-c32043339e5e", + "name": "Made SLA", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "BOOLEAN", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "87c90db6-cf07-0b3e-229b-8cd23147bb86", + "name": "Priority (Problem)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "88d4c61c-dc52-28ca-1a67-5bcb0aef88e5", + "name": "Description (Group)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "89d75169-9239-7079-0412-68b71f6442ba", + "name": "Created (Problem)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "8b607f1a-3a69-256d-b3ca-9a2b6bc9654a", + "name": "Order (Problem)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "8e72964b-8ffc-f855-62f9-cff5536f7153", + "name": "Company", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "CalculatedField", + "id": "90ef2358-7bd1-5aaa-0df1-76dabec7a66a", + "name": "Problems with Related Incidents", + "description": null, + "isHidden": false, + "folderName": null, + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "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)" + }, + { + "__typename": "ColumnField", + "id": "9197aa16-fb9b-9da7-dd36-57c441dd7f45", + "name": "Follow up", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "923b2b13-ea7d-a516-9b38-dae12dbd867e", + "name": "User input (Problem)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "931f2ad1-5ec9-144a-bf79-c355831fb5eb", + "name": "Name", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "940b4d67-33e7-882b-577f-f144f2b01da1", + "name": "Parent", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "94caead7-f1f1-ddd5-0887-42812ab147a2", + "name": "Related Incidents", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "95a0d3c4-4186-cfa8-6327-8d4c98125945", + "name": "Watch list (Problem)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "981b7ffe-d4bf-532d-2b8e-a0010f08e9ea", + "name": "Updated", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "98dbe828-7c43-eb7e-c46f-00d3f398dfdb", + "name": "State (Problem)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "9998c2e0-3141-5e59-f0fe-119e568774af", + "name": "Closed by", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "9a6c26c4-84ba-fe54-9cdc-6cac2c443096", + "name": "Task type (Problem)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "a7e005c8-34bb-bc7f-eb1f-a35898e083cf", + "name": "Group list (Problem)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "ab2aa63d-c73a-9cf9-9a54-9d469d47e890", + "name": "Opened", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "ab6b575a-355a-a33e-f5dd-758009a5d727", + "name": "User input", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "ad860ae9-1f1e-190b-774c-9e30d3666e8f", + "name": "Source", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "ae576f09-897e-d919-b991-216abbbb676f", + "name": "Closed (Problem)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "b02e54fa-0cd0-d28d-c391-b5a0b89fc1c6", + "name": "Opened by", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "b0fdc0c9-bf62-8b24-8582-17c8685ec9c1", + "name": "Work start", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "b10a9c7b-377b-3b0d-d172-487a7ca329ba", + "name": "Additional assignee list (Problem)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "CalculatedField", + "id": "b34308cc-f30c-a5bb-52b9-78c00f2f461c", + "name": "% of known error", + "description": null, + "isHidden": false, + "folderName": null, + "role": "MEASURE", + "dataType": "REAL", + "defaultFormat": "p0.0%", + "aggregation": null, + "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])" + }, + { + "__typename": "ColumnField", + "id": "b3641005-3974-868f-2a61-0dce2e083ef9", + "name": "Work end", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "baa48968-d807-7a6f-e46e-a60f97216aae", + "name": "Problem state", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "c09ee363-0a77-cf4b-bc0b-58cd5ed9b623", + "name": "Upon approval", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "c1cae107-4e52-e8e6-286b-28ac285128d7", + "name": "Domain", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "c1ef3114-424a-b7d7-3559-989b2bbc4f48", + "name": "Reassignment count (Problem)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "c53ead8c-9d9c-4c32-8fdb-841e30b0a532", + "name": "Contact type (Problem)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "c5aba5a9-0447-90c7-bfa0-064ee2a5c809", + "name": "Upon reject (Problem)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "c5c20844-5802-c8a9-ef9d-a62e1972f94a", + "name": "Close notes", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "CalculatedField", + "id": "c64607f1-c00a-88b8-b4ea-4018f7dff6f0", + "name": "Max Year?", + "description": null, + "isHidden": false, + "folderName": null, + "role": "DIMENSION", + "dataType": "BOOLEAN", + "defaultFormat": null, + "aggregation": null, + "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])})" + }, + { + "__typename": "ColumnField", + "id": "c790ee85-ee15-0cbb-9782-98312c7903c5", + "name": "Configuration item (Problem)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "c7cd50dd-1459-4d24-fe94-96611ccd7a6e", + "name": "Short description", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "c8a9edb7-a929-3eeb-f005-4ff46ef1a6ac", + "name": "Company (Problem)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "c8c90936-8146-8283-8b27-66104b99ebe6", + "name": "Work notes", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "c973b995-ccca-201f-0ea3-5b8ac1625d99", + "name": "Delivery plan", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "ca6e50f9-4097-4aaf-ead3-ec6cce910e20", + "name": "Additional comments (Problem)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "ced911f2-2ff8-60e3-e522-36f7c8f7a28d", + "name": "Knowledge (Problem)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "BOOLEAN", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "cf7efd6f-3e9d-0bf4-b96d-4404194690e6", + "name": "Known error", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "BOOLEAN", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "cfafc137-c841-f1a8-42a7-c976624ec73d", + "name": "Group email", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "CalculatedField", + "id": "cff99350-e836-7226-8050-3163d587b479", + "name": "Age of Problems", + "description": null, + "isHidden": false, + "folderName": null, + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "formula": "//Calculates the age of active problems since opened until now\r\n\r\nDATEDIFF('second', [Opened], NOW())" + }, + { + "__typename": "ColumnField", + "id": "cffb2549-3525-3117-9d65-855e28d41fdd", + "name": "Priority", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": "Sum", + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "d1233d09-863c-94bc-ea08-a962f932462e", + "name": "Comments and Work notes", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "d347b9a8-e7ad-d29c-c65e-bf0794aae411", + "name": "Measure Values", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "REAL", + "defaultFormat": null, + "aggregation": null, + "columns": [] + }, + { + "__typename": "ColumnField", + "id": "d4120dbf-7a9a-8dcc-b04d-46d252167368", + "name": "Approval history", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "d8f9b0fd-70f2-8a37-b5d2-42659cbb4bef", + "name": "Assigned to", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "da47cb47-8e2e-9a86-a3de-30b06bb627a4", + "name": "Impact (Problem)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "dd85d612-daca-60b3-433b-83508d004b1f", + "name": "Updated (Group)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "CalculatedField", + "id": "de196a57-20e2-9501-3d72-f8e2681266c8", + "name": "% of critical and high priority", + "description": null, + "isHidden": false, + "folderName": null, + "role": "MEASURE", + "dataType": "REAL", + "defaultFormat": "p0%", + "aggregation": null, + "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])" + }, + { + "__typename": "ColumnField", + "id": "de60a6dd-ae9a-3b7c-edf8-d24f5f53fa89", + "name": "Closed", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "e0101592-4d04-fca2-69ee-4716d890b478", + "name": "Configuration item", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "e3250a75-40d1-430a-8e8d-91ccb4cdbd06", + "name": "Business service (Problem)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "e5311592-2aff-4c2b-6e39-394467561292", + "name": "Additional assignee list", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "e557ac82-16de-15b8-05b6-5ab147b282da", + "name": "Include members", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "BOOLEAN", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "e99ce6f7-1be9-1631-5ac1-5c9a7fa1843e", + "name": "Order", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "ea90347e-f01d-6dc2-0676-215bd646281a", + "name": "Measure Names", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [] + }, + { + "__typename": "ColumnField", + "id": "eae5703d-877a-a98b-e050-73333ab7ea7f", + "name": "Location", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "ec7efb26-fd01-82de-28dd-194ebd3da3f5", + "name": "Description (Problem)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "CalculatedField", + "id": "ec9379d0-f48b-577e-2314-6288c3f4a3a0", + "name": "Current Year Total Cases", + "description": null, + "isHidden": false, + "folderName": null, + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": "Attribute", + "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}" + }, + { + "__typename": "ColumnField", + "id": "f0476fba-cb04-884e-9b6d-1de64a00c645", + "name": "Created (Group)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "f432316d-59f3-0369-3ce6-867f880c671b", + "name": "Updated by (Group)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "f593d9e0-cb42-a787-c4b1-61aab31ba3be", + "name": "Number (Problem)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "f6583bf8-59b8-9722-3b91-86b33f998413", + "name": "State", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "f67c0bb4-2ec3-aa3a-6b92-bd697c6bbe80", + "name": "Approval history (Problem)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "f7b024b2-3ea3-4fbc-199c-b501cddaa7d5", + "name": "Type", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "f8d5647e-11f4-0fc7-d121-92a980617707", + "name": "Work end (Problem)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "f971325f-534e-80c6-7cfe-197273a02aaa", + "name": "Upon reject", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "fa53bc38-b45e-4bfa-7ae4-5ae249ef6751", + "name": "Correlation ID (Problem)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "fd8d3177-df25-99c8-707d-76aff8975567", + "name": "Assignment group (Problem)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "CalculatedField", + "id": "fed69289-f04f-e280-fdd5-719cf043ff35", + "name": "Total Active Problems", + "description": null, + "isHidden": false, + "folderName": null, + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": "Attribute", + "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}" + }, + { + "__typename": "ColumnField", + "id": "ff4371e0-3575-3686-23d1-4d035db44f33", + "name": "Active", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "BOOLEAN", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "ffd340a0-8e6c-b2a7-2649-66f7c86f468b", + "name": "Updates (Group)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + } + ], + "upstreamDatasources": [], + "workbook": { + "id": "6ffa5a7f-d852-78f1-6c6d-20ac23610ebf", + "name": "Executive Dashboard", + "projectName": "default", + "owner": { + "username": "jawadqu@gmail.com" + } + } + }, + { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents", + "hasExtracts": true, + "extractLastRefreshTime": "2018-01-18T20:13:08Z", + "extractLastIncrementalUpdateTime": null, + "extractLastUpdateTime": "2018-01-18T20:13:08Z", + "upstreamDatabases": [ + { + "id": "a6fd0ece-d66a-f490-31a0-5563c2fc4ad0", + "name": "ven01911", + "connectionType": "webdata-direct:servicenowitsm-servicenowitsm", + "isEmbedded": true + } + ], + "upstreamTables": [ + { + "id": "0646bea5-97f9-d806-ac63-9b63500d07e9", + "name": "incident", + "database": { + "name": "ven01911" + }, + "schema": "", + "fullName": "[incident]", + "connectionType": "webdata-direct:servicenowitsm-servicenowitsm", + "description": "", + "columns": [ + { + "name": "sys_id", + "remoteType": "WDC_STRING" + }, + { + "name": "correlation_id", + "remoteType": "WDC_STRING" + }, + { + "name": "urgency", + "remoteType": "WDC_INT" + }, + { + "name": "severity", + "remoteType": "WDC_INT" + }, + { + "name": "business_service", + "remoteType": "WDC_STRING" + }, + { + "name": "location", + "remoteType": "WDC_STRING" + }, + { + "name": "approval_set", + "remoteType": "WDC_DATETIME" + }, + { + "name": "closed_at", + "remoteType": "WDC_DATETIME" + }, + { + "name": "parent_incident", + "remoteType": "WDC_STRING" + }, + { + "name": "subcategory", + "remoteType": "WDC_STRING" + }, + { + "name": "company", + "remoteType": "WDC_STRING" + }, + { + "name": "caller_id", + "remoteType": "WDC_STRING" + }, + { + "name": "resolved_at", + "remoteType": "WDC_DATETIME" + }, + { + "name": "group_list", + "remoteType": "WDC_STRING" + }, + { + "name": "correlation_display", + "remoteType": "WDC_STRING" + }, + { + "name": "resolved_by", + "remoteType": "WDC_STRING" + }, + { + "name": "sys_created_on", + "remoteType": "WDC_DATETIME" + }, + { + "name": "business_stc", + "remoteType": "WDC_INT" + }, + { + "name": "sys_domain_path", + "remoteType": "WDC_STRING" + }, + { + "name": "parent", + "remoteType": "WDC_STRING" + }, + { + "name": "category", + "remoteType": "WDC_STRING" + }, + { + "name": "user_input", + "remoteType": "WDC_STRING" + }, + { + "name": "number", + "remoteType": "WDC_STRING" + }, + { + "name": "escalation", + "remoteType": "WDC_INT" + }, + { + "name": "state", + "remoteType": "WDC_INT" + }, + { + "name": "approval_history", + "remoteType": "WDC_STRING" + }, + { + "name": "impact", + "remoteType": "WDC_INT" + }, + { + "name": "expected_start", + "remoteType": "WDC_DATETIME" + }, + { + "name": "additional_assignee_list", + "remoteType": "WDC_STRING" + }, + { + "name": "child_incidents", + "remoteType": "WDC_INT" + }, + { + "name": "cmdb_ci", + "remoteType": "WDC_STRING" + }, + { + "name": "incident_state", + "remoteType": "WDC_INT" + }, + { + "name": "notify", + "remoteType": "WDC_INT" + }, + { + "name": "work_notes", + "remoteType": "WDC_STRING" + }, + { + "name": "reassignment_count", + "remoteType": "WDC_INT" + }, + { + "name": "contact_type", + "remoteType": "WDC_STRING" + }, + { + "name": "opened_by", + "remoteType": "WDC_STRING" + }, + { + "name": "sys_class_name", + "remoteType": "WDC_STRING" + }, + { + "name": "problem_id", + "remoteType": "WDC_STRING" + }, + { + "name": "due_date", + "remoteType": "WDC_DATETIME" + }, + { + "name": "approval", + "remoteType": "WDC_STRING" + }, + { + "name": "description", + "remoteType": "WDC_STRING" + }, + { + "name": "order", + "remoteType": "WDC_INT" + }, + { + "name": "opened_at", + "remoteType": "WDC_DATETIME" + }, + { + "name": "work_notes_list", + "remoteType": "WDC_STRING" + }, + { + "name": "priority", + "remoteType": "WDC_INT" + }, + { + "name": "time_worked", + "remoteType": "WDC_STRING" + }, + { + "name": "sys_domain", + "remoteType": "WDC_STRING" + }, + { + "name": "caused_by", + "remoteType": "WDC_STRING" + }, + { + "name": "sys_updated_by", + "remoteType": "WDC_STRING" + }, + { + "name": "upon_reject", + "remoteType": "WDC_STRING" + }, + { + "name": "delivery_task", + "remoteType": "WDC_STRING" + }, + { + "name": "knowledge", + "remoteType": "WDC_BOOL" + }, + { + "name": "sys_updated_on", + "remoteType": "WDC_DATETIME" + }, + { + "name": "calendar_duration", + "remoteType": "WDC_DATETIME" + }, + { + "name": "closed_by", + "remoteType": "WDC_STRING" + }, + { + "name": "comments", + "remoteType": "WDC_STRING" + }, + { + "name": "short_description", + "remoteType": "WDC_STRING" + }, + { + "name": "assigned_to", + "remoteType": "WDC_STRING" + }, + { + "name": "assignment_group", + "remoteType": "WDC_STRING" + }, + { + "name": "work_end", + "remoteType": "WDC_DATETIME" + }, + { + "name": "reopen_count", + "remoteType": "WDC_INT" + }, + { + "name": "work_start", + "remoteType": "WDC_DATETIME" + }, + { + "name": "made_sla", + "remoteType": "WDC_BOOL" + }, + { + "name": "sys_mod_count", + "remoteType": "WDC_INT" + }, + { + "name": "calendar_stc", + "remoteType": "WDC_INT" + }, + { + "name": "rfc", + "remoteType": "WDC_STRING" + }, + { + "name": "delivery_plan", + "remoteType": "WDC_STRING" + }, + { + "name": "close_code", + "remoteType": "WDC_STRING" + }, + { + "name": "close_notes", + "remoteType": "WDC_STRING" + }, + { + "name": "activity_due", + "remoteType": "WDC_DATETIME" + }, + { + "name": "sys_created_by", + "remoteType": "WDC_STRING" + }, + { + "name": "active", + "remoteType": "WDC_BOOL" + }, + { + "name": "business_duration", + "remoteType": "WDC_DATETIME" + }, + { + "name": "follow_up", + "remoteType": "WDC_DATETIME" + }, + { + "name": "comments_and_work_notes", + "remoteType": "WDC_STRING" + }, + { + "name": "upon_approval", + "remoteType": "WDC_STRING" + }, + { + "name": "watch_list", + "remoteType": "WDC_STRING" + }, + { + "name": "sla_due", + "remoteType": "WDC_DATETIME" + } + ] + }, + { + "id": "22a4144f-6b0d-8fe2-d42e-d0101e38b3b8", + "name": "task", + "schema": "", + "database": { + "name": "ven01911" + }, + "fullName": "[task]", + "connectionType": "webdata-direct:servicenowitsm-servicenowitsm", + "description": "", + "columns": [ + { + "name": "time_worked", + "remoteType": "WDC_STRING" + }, + { + "name": "work_notes_list", + "remoteType": "WDC_STRING" + }, + { + "name": "group_list", + "remoteType": "WDC_STRING" + }, + { + "name": "parent", + "remoteType": "WDC_STRING" + }, + { + "name": "expected_start", + "remoteType": "WDC_DATETIME" + }, + { + "name": "due_date", + "remoteType": "WDC_DATETIME" + }, + { + "name": "work_end", + "remoteType": "WDC_DATETIME" + }, + { + "name": "cmdb_ci", + "remoteType": "WDC_STRING" + }, + { + "name": "business_duration", + "remoteType": "WDC_DATETIME" + }, + { + "name": "work_start", + "remoteType": "WDC_DATETIME" + }, + { + "name": "closed_at", + "remoteType": "WDC_DATETIME" + }, + { + "name": "user_input", + "remoteType": "WDC_STRING" + }, + { + "name": "reassignment_count", + "remoteType": "WDC_INT" + }, + { + "name": "approval", + "remoteType": "WDC_STRING" + }, + { + "name": "short_description", + "remoteType": "WDC_STRING" + }, + { + "name": "impact", + "remoteType": "WDC_INT" + }, + { + "name": "knowledge", + "remoteType": "WDC_BOOL" + }, + { + "name": "closed_by", + "remoteType": "WDC_STRING" + }, + { + "name": "calendar_duration", + "remoteType": "WDC_DATETIME" + }, + { + "name": "delivery_task", + "remoteType": "WDC_STRING" + }, + { + "name": "sla_due", + "remoteType": "WDC_DATETIME" + }, + { + "name": "sys_class_name", + "remoteType": "WDC_STRING" + }, + { + "name": "comments", + "remoteType": "WDC_STRING" + }, + { + "name": "upon_reject", + "remoteType": "WDC_STRING" + }, + { + "name": "upon_approval", + "remoteType": "WDC_STRING" + }, + { + "name": "approval_history", + "remoteType": "WDC_STRING" + }, + { + "name": "sys_created_on", + "remoteType": "WDC_DATETIME" + }, + { + "name": "correlation_id", + "remoteType": "WDC_STRING" + }, + { + "name": "opened_at", + "remoteType": "WDC_DATETIME" + }, + { + "name": "approval_set", + "remoteType": "WDC_DATETIME" + }, + { + "name": "escalation", + "remoteType": "WDC_INT" + }, + { + "name": "sys_id", + "remoteType": "WDC_STRING" + }, + { + "name": "delivery_plan", + "remoteType": "WDC_STRING" + }, + { + "name": "comments_and_work_notes", + "remoteType": "WDC_STRING" + }, + { + "name": "close_notes", + "remoteType": "WDC_STRING" + }, + { + "name": "watch_list", + "remoteType": "WDC_STRING" + }, + { + "name": "description", + "remoteType": "WDC_STRING" + }, + { + "name": "opened_by", + "remoteType": "WDC_STRING" + }, + { + "name": "activity_due", + "remoteType": "WDC_DATETIME" + }, + { + "name": "sys_updated_on", + "remoteType": "WDC_DATETIME" + }, + { + "name": "work_notes", + "remoteType": "WDC_STRING" + }, + { + "name": "sys_updated_by", + "remoteType": "WDC_STRING" + }, + { + "name": "assigned_to", + "remoteType": "WDC_STRING" + }, + { + "name": "assignment_group", + "remoteType": "WDC_STRING" + }, + { + "name": "order", + "remoteType": "WDC_INT" + }, + { + "name": "sys_domain_path", + "remoteType": "WDC_STRING" + }, + { + "name": "sys_mod_count", + "remoteType": "WDC_INT" + }, + { + "name": "business_service", + "remoteType": "WDC_STRING" + }, + { + "name": "priority", + "remoteType": "WDC_INT" + }, + { + "name": "correlation_display", + "remoteType": "WDC_STRING" + }, + { + "name": "active", + "remoteType": "WDC_BOOL" + }, + { + "name": "sys_domain", + "remoteType": "WDC_STRING" + }, + { + "name": "company", + "remoteType": "WDC_STRING" + }, + { + "name": "urgency", + "remoteType": "WDC_INT" + }, + { + "name": "number", + "remoteType": "WDC_STRING" + }, + { + "name": "state", + "remoteType": "WDC_INT" + }, + { + "name": "made_sla", + "remoteType": "WDC_BOOL" + }, + { + "name": "sys_created_by", + "remoteType": "WDC_STRING" + }, + { + "name": "additional_assignee_list", + "remoteType": "WDC_STRING" + }, + { + "name": "contact_type", + "remoteType": "WDC_STRING" + }, + { + "name": "location", + "remoteType": "WDC_STRING" + }, + { + "name": "follow_up", + "remoteType": "WDC_DATETIME" + } + ] + }, + { + "id": "d0c8ed66-15df-e9b5-a86a-227f4d604922", + "name": "cmdb_ci", + "database": { + "name": "ven01911" + }, + "schema": "", + "fullName": "[cmdb_ci]", + "connectionType": "webdata-direct:servicenowitsm-servicenowitsm", + "description": "", + "columns": [ + { + "name": "first_discovered", + "remoteType": "WDC_DATETIME" + }, + { + "name": "operational_status", + "remoteType": "WDC_INT" + }, + { + "name": "last_discovered", + "remoteType": "WDC_DATETIME" + }, + { + "name": "cost_cc", + "remoteType": "WDC_STRING" + }, + { + "name": "checked_in", + "remoteType": "WDC_DATETIME" + }, + { + "name": "attributes", + "remoteType": "WDC_STRING" + }, + { + "name": "serial_number", + "remoteType": "WDC_STRING" + }, + { + "name": "vendor", + "remoteType": "WDC_STRING" + }, + { + "name": "ip_address", + "remoteType": "WDC_STRING" + }, + { + "name": "support_group", + "remoteType": "WDC_STRING" + }, + { + "name": "sys_updated_by", + "remoteType": "WDC_STRING" + }, + { + "name": "asset", + "remoteType": "WDC_STRING" + }, + { + "name": "sys_domain", + "remoteType": "WDC_STRING" + }, + { + "name": "supported_by", + "remoteType": "WDC_STRING" + }, + { + "name": "invoice_number", + "remoteType": "WDC_STRING" + }, + { + "name": "managed_by", + "remoteType": "WDC_STRING" + }, + { + "name": "fault_count", + "remoteType": "WDC_INT" + }, + { + "name": "due_in", + "remoteType": "WDC_STRING" + }, + { + "name": "cost", + "remoteType": "WDC_STRING" + }, + { + "name": "correlation_id", + "remoteType": "WDC_STRING" + }, + { + "name": "justification", + "remoteType": "WDC_STRING" + }, + { + "name": "sys_created_on", + "remoteType": "WDC_DATETIME" + }, + { + "name": "assigned", + "remoteType": "WDC_DATETIME" + }, + { + "name": "model_id", + "remoteType": "WDC_STRING" + }, + { + "name": "sys_class_name", + "remoteType": "WDC_STRING" + }, + { + "name": "comments", + "remoteType": "WDC_STRING" + }, + { + "name": "sys_id", + "remoteType": "WDC_STRING" + }, + { + "name": "company", + "remoteType": "WDC_STRING" + }, + { + "name": "lease_id", + "remoteType": "WDC_STRING" + }, + { + "name": "monitor", + "remoteType": "WDC_BOOL" + }, + { + "name": "cost_center", + "remoteType": "WDC_STRING" + }, + { + "name": "subcategory", + "remoteType": "WDC_STRING" + }, + { + "name": "delivery_date", + "remoteType": "WDC_DATETIME" + }, + { + "name": "assignment_group", + "remoteType": "WDC_STRING" + }, + { + "name": "can_print", + "remoteType": "WDC_BOOL" + }, + { + "name": "short_description", + "remoteType": "WDC_STRING" + }, + { + "name": "model_number", + "remoteType": "WDC_STRING" + }, + { + "name": "name", + "remoteType": "WDC_STRING" + }, + { + "name": "start_date", + "remoteType": "WDC_DATETIME" + }, + { + "name": "discovery_source", + "remoteType": "WDC_STRING" + }, + { + "name": "sys_domain_path", + "remoteType": "WDC_STRING" + }, + { + "name": "assigned_to", + "remoteType": "WDC_STRING" + }, + { + "name": "category", + "remoteType": "WDC_STRING" + }, + { + "name": "schedule", + "remoteType": "WDC_STRING" + }, + { + "name": "fqdn", + "remoteType": "WDC_STRING" + }, + { + "name": "warranty_expiration", + "remoteType": "WDC_DATE" + }, + { + "name": "owned_by", + "remoteType": "WDC_STRING" + }, + { + "name": "asset_tag", + "remoteType": "WDC_STRING" + }, + { + "name": "manufacturer", + "remoteType": "WDC_STRING" + }, + { + "name": "purchase_date", + "remoteType": "WDC_DATE" + }, + { + "name": "location", + "remoteType": "WDC_STRING" + }, + { + "name": "department", + "remoteType": "WDC_STRING" + }, + { + "name": "sys_updated_on", + "remoteType": "WDC_DATETIME" + }, + { + "name": "checked_out", + "remoteType": "WDC_DATETIME" + }, + { + "name": "unverified", + "remoteType": "WDC_BOOL" + }, + { + "name": "skip_sync", + "remoteType": "WDC_BOOL" + }, + { + "name": "po_number", + "remoteType": "WDC_STRING" + }, + { + "name": "order_date", + "remoteType": "WDC_DATETIME" + }, + { + "name": "gl_account", + "remoteType": "WDC_STRING" + }, + { + "name": "maintenance_schedule", + "remoteType": "WDC_STRING" + }, + { + "name": "install_date", + "remoteType": "WDC_DATETIME" + }, + { + "name": "dns_domain", + "remoteType": "WDC_STRING" + }, + { + "name": "sys_created_by", + "remoteType": "WDC_STRING" + }, + { + "name": "mac_address", + "remoteType": "WDC_STRING" + }, + { + "name": "change_control", + "remoteType": "WDC_STRING" + }, + { + "name": "install_status", + "remoteType": "WDC_INT" + }, + { + "name": "due", + "remoteType": "WDC_DATETIME" + }, + { + "name": "sys_mod_count", + "remoteType": "WDC_INT" + } + ] + } + ], + "downstreamSheets": [ + { + "id": "f76d3570-23b8-f74b-d85c-cc5484c2079c", + "name": "Opened Incidents" + }, + { + "id": "e70a540d-55ed-b9cc-5a3c-01ebe81a1274", + "name": "Age of Active Problems" + }, + { + "id": "c14973c2-e1c3-563a-a9c1-8a408396d22a", + "name": "Tooltip - Request Breakdown by Priority" + }, + { + "id": "b679da5e-7d03-f01e-b2ea-01fb3c1926dc", + "name": "Tooltip - Problem Breakdown by Priority" + }, + { + "id": "b207c2f2-b675-32e3-2663-17bb836a018b", + "name": "Overdue Problems" + }, + { + "id": "8385ea9a-0749-754f-7ad9-824433de2120", + "name": "Tooltip - Incident Breakdown by Priority" + }, + { + "id": "7fbc77ba-0ab6-3727-0db3-d8402a804da5", + "name": "Made SLA?" + }, + { + "id": "20fc5eb7-81eb-aa18-8c39-af501c62d085", + "name": "Opened Requests" + }, + { + "id": "2b5351c1-535d-4a4a-1339-c51ddd6abf8a", + "name": "Top 10 Items by Requests and YoY Change" + }, + { + "id": "2b73b9dd-4ec7-75ca-f2e9-fa1984ca8b72", + "name": "Opened Problems" + }, + { + "id": "373c6466-bb0c-b319-8752-632456349261", + "name": "Overdue" + }, + { + "id": "53b8dc2f-8ada-51f7-7422-fe82e9b803cc", + "name": "High and Critical Priority Problems" + }, + { + "id": "58af9ecf-b839-da50-65e1-2e1fa20e3362", + "name": "Total Incidents by Category and YoY Change" + }, + { + "id": "618b3e76-75c1-cb31-0c61-3f4890b72c31", + "name": "Known Errors" + }, + { + "id": "721c3c41-7a2b-16a8-3281-6f948a44be96", + "name": "Overdue Requests" + }, + { + "id": "7ef184c1-5a41-5ec8-723e-ae44c20aa335", + "name": "AVG Time to Solve an Incident" + } + ], + "fields": [ + { + "__typename": "ColumnField", + "id": "00ec352d-e443-5ba2-c389-c2265d6166c2", + "name": "Assignment group", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "02c33011-048b-1afe-fd20-783e5c3c57a9", + "name": "Closed (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "02c7edfc-f259-6a56-c229-ce6467a3ebe1", + "name": "Updates (Configuration Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "042d4a79-fc1f-4e33-f87d-bc06e3272d36", + "name": "Attributes", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "04fa52d7-3481-c524-7de1-1e73a2620f3a", + "name": "User input", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "05db0bae-0d20-bbf9-b5c4-4a2272ffb839", + "name": "User input (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "06372073-9eee-a7a0-280e-772b0545be7d", + "name": "Short description (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "071f5c53-eb36-7ac6-a9b0-a13ca4987175", + "name": "Close notes", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "0746f3ae-e85a-78cf-1b29-4bc3b97e323b", + "name": "Escalation (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "0a1dbe03-c079-6fe9-7411-fd600af432ae", + "name": "Impact", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "0bc80520-3393-c8ae-3afb-37d0b52b8cf9", + "name": "Close code (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "0bea60c0-2c3f-0113-4030-b914da11166d", + "name": "Migrated Data", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "TABLE", + "defaultFormat": null, + "aggregation": null, + "columns": [] + }, + { + "__typename": "ColumnField", + "id": "0c29691d-07aa-e454-e5e1-ae074a812e40", + "name": "Delivery task (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "0eb84a88-4d6a-ebf5-a959-b67091ea6c1e", + "name": "Created by", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "0fa74f05-78a2-2b3e-e3d3-2028f7988a08", + "name": "Updated by (Configuration Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "10321d43-f20c-d562-b821-77f761ae5cc5", + "name": "Expected start", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "1094b642-9e96-4285-89a3-d85b59e557bc", + "name": "Status", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "10b2216d-6d19-984d-e60f-11d2751f9ec5", + "name": "Notify (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "113364a6-2476-07a2-e25d-81bc137daf4d", + "name": "Due", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "116efdf5-d57d-a3f8-6fb5-334d6fbdab87", + "name": "Closed by", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "11be7d6b-d6dd-27ac-2975-00c2bd0ff051", + "name": "Upon approval", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "12e4157c-3d2c-4e4e-373b-b204dad0ee61", + "name": "Requires verification", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "BOOLEAN", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "17a9f961-0d61-c619-0959-bf4a2415fe4d", + "name": "Maintenance schedule", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "17efeb93-035c-5671-2d6e-eb7256fdc1aa", + "name": "Escalation", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "1aa6af8e-0f29-d3bf-b81b-35b214d1e59d", + "name": "Updates (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "1af25d71-cdea-286d-4bac-402a54342d5c", + "name": "Parent", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "1c558792-0edc-0e33-4077-4ce995aa27ff", + "name": "Domain Path (Configuration Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "1cbdb3ed-aec2-9f14-b5b2-eb3c83f49cd9", + "name": "Location (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "1d2f0e36-1814-07e0-506e-4f52682c58c5", + "name": "Upon reject", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "1d416d43-d670-315f-6a16-ae861d4f1ac2", + "name": "Warranty expiration", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATE", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "1e0edf18-0901-532a-5451-fa2314e0859b", + "name": "GL account", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "1f0b8af8-dd21-5086-e32a-493255b339a0", + "name": "Additional assignee list (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "1fc74be7-19ba-f42b-1e8d-86447923b8a7", + "name": "Opened by", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "1ffef80b-0b82-08eb-dffb-16d5937421f2", + "name": "Work notes", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "214d0ca1-26b3-ff80-68b5-1af3fbbac2ce", + "name": "Additional assignee list", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "23e9b73f-e1cf-cc40-7638-8deaa10c77fa", + "name": "Work notes (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "24561cc7-2db6-e582-605b-5a796c76b867", + "name": "Company", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "24603cc5-425e-8a46-ae3a-2d460df840fe", + "name": "Knowledge", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "BOOLEAN", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "2484715d-12f8-a016-af12-5612bfedc91e", + "name": "Made SLA", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "BOOLEAN", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "27d23241-d9ef-957b-9e98-d58bda254438", + "name": "First discovered", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "2878a8b5-4306-f844-ef5a-4029eefdf22f", + "name": "Approval history (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "2992ae70-4a49-98e4-f2de-cbc4a8b7a7db", + "name": "Asset", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "CalculatedField", + "id": "2a948342-1daf-ac2f-33d3-329e2ca25e34", + "name": "% of Overdue", + "description": null, + "isHidden": false, + "folderName": null, + "role": "MEASURE", + "dataType": "REAL", + "defaultFormat": "p0%", + "aggregation": null, + "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])})" + }, + { + "__typename": "ColumnField", + "id": "2ab7f5aa-15ba-de8e-214a-4e0a27ee91fe", + "name": "Work start", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "2c95cb81-36f6-443f-6c99-ff001d2388f3", + "name": "Domain", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "2e2db482-1927-ba36-a782-8a95c01fdc7e", + "name": "SLA due", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "2f83f6ff-ffdc-07b0-40d8-cb7351c02b66", + "name": "Group list (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "2faad672-a1ff-95d1-67c9-2fd6bda9e8b9", + "name": "Priority", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": "Sum", + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "30bfdf30-6abc-a741-8563-c8a456e8f478", + "name": "Duration (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "311d5263-73af-4578-0d62-f4b2f00396a7", + "name": "Assigned to (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "31c3f642-db9d-3d0c-4497-c61859e1f8b9", + "name": "Skip sync", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "BOOLEAN", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "339bd914-66f7-c3c9-e7a7-c45f25cb335a", + "name": "DNS Domain", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "3423b49b-03bb-6d3a-12c8-4e11778931e1", + "name": "Updated", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "34aac98d-e7a5-135b-622f-e6d35d84fae9", + "name": "Caller (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "35637b98-c1c1-1200-8815-f1a4c6a13afd", + "name": "Department", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "36fe7de3-5e0d-83e7-e08c-1c6f299552e1", + "name": "Resolved by (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "37daa6c3-f37b-94d7-f59d-116cef3f3444", + "name": "Correlation ID (Configuration Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "38645dd2-5f4d-effc-a564-0054ba2e634b", + "name": "Opened (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "CalculatedField", + "id": "3ac8f5aa-1260-dabf-c762-3ba52fdfc2c0", + "name": "Current Year Total Cases", + "description": null, + "isHidden": false, + "folderName": null, + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": "Attribute", + "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}" + }, + { + "__typename": "ColumnField", + "id": "3ad5f4e6-35be-0037-0e88-3da0136c081b", + "name": "Close notes (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "3ddaea33-73a5-7781-aee0-3f343dce3efd", + "name": "Managed by", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "42d00b7c-9983-8883-6b40-bdb2f47f1c35", + "name": "Measure Names", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [] + }, + { + "__typename": "ColumnField", + "id": "4448d754-db6b-6d41-1f80-f8d80ebd0664", + "name": "Model number", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "45d50e09-2ec6-76b3-f2bf-80836f7e49e6", + "name": "Created by (Configuration Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "45dd64b3-2fc5-7c5a-2ef8-684284efdeec", + "name": "Created", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "47c8a373-e098-0537-e220-013ae1b26dc7", + "name": "Assignment group (Configuration Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "49a13936-1856-4a32-197f-13ed80b3ece5", + "name": "Location", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "4cb02fc2-cb2c-045f-994c-6c54d21626a5", + "name": "PO number", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "4e844797-cf85-8239-dbac-4257822b3408", + "name": "Short description", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "4e9c3619-b42e-0452-dcaa-b5406e038c85", + "name": "Business resolve time (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "4eae18fd-b114-7cf2-b8b6-31af6cea0b55", + "name": "Child Incidents (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "4f45c3ad-fc3b-afeb-6e9d-fb94b42051a9", + "name": "IP Address", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "50879b60-d080-240f-2439-d15c4ca23cf0", + "name": "Created (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "517cd761-a193-d8c1-c3db-93890bc7d27a", + "name": "Configuration item", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "53342557-60b2-51ea-a730-f38ad3dab715", + "name": "Order (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "536bc9ae-0f4b-5786-0b0d-691d8bc2b9e5", + "name": "Asset tag", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "54dfc86a-52b7-52b3-3af9-f18e070e56c8", + "name": "Due in", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "5579f16c-8c12-36be-3ff8-1a4bc270f570", + "name": "Updated by", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "5668180e-c0cd-dbde-661a-ff1fc6e93385", + "name": "Manufacturer", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "59214da6-732d-5691-5bb8-a81b4132fdd4", + "name": "Correlation display", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "5ae6724e-3a1d-a43c-9421-294f3f1bfb6c", + "name": "Business duration", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "5b478590-b0a9-c34c-faa2-2b7c7a61822f", + "name": "Business service", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "5d54747d-81ac-f0fc-6320-2bc8b4ea592b", + "name": "Checked out", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "5dbafcd1-d8d2-68cc-fde3-20e8c7b26ff8", + "name": "Category (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "5e9aec72-f27e-7dce-fdb7-6b2d418ad785", + "name": "Fully qualified domain name", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "606cc5eb-28b6-6b2e-9ec9-b4d2441323db", + "name": "Installed", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "60bd0e06-5086-d8dc-a6e5-eff080d6a56d", + "name": "Order", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "60c104d7-6b2c-1132-8a7b-28c1a05c2654", + "name": "Purchased", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATE", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "61eb7e5a-5931-0486-1e98-5e17ec92ed9c", + "name": "Lease contract", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "63090441-e641-21ba-66ae-a0ea3d83344c", + "name": "Vendor", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "CalculatedField", + "id": "636235a9-4709-04e1-eef2-67ac7c194eb4", + "name": "Overdue", + "description": null, + "isHidden": false, + "folderName": null, + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "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}" + }, + { + "__typename": "ColumnField", + "id": "66ac12ab-7cba-79fd-b013-72043161beea", + "name": "Due date (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "66d18cb0-c3f0-ad8a-e15a-89563da02834", + "name": "Additional comments", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "679172d5-d043-c8ff-d115-ef200d11ca72", + "name": "Approval history", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "7029eb80-9d5f-b12e-40a4-adc7c9968daa", + "name": "Category (Configuration Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "7063be4c-713b-5d6c-25aa-ad98c5a8f7e9", + "name": "Parent Incident (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "724a16a7-49a8-57bd-9ec6-fb5c777d83cf", + "name": "Updated (Configuration Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "72dc19f7-e551-1b35-ff53-b2bccbfa6bb9", + "name": "Cost currency", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "732bfc50-930a-7ac3-c088-680bad52bff0", + "name": "SLA due (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "73c00bbc-f7a8-76da-a0bd-bb210b4929b8", + "name": "Impact (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "76723c78-1bea-73eb-80ad-1c6c2ff17a87", + "name": "Approval (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "782ebad0-c62f-cbc8-0c22-5904aa50585b", + "name": "Subcategory (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "784b08a1-eb8c-d675-36b3-b316492e5b16", + "name": "Opened by (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "79767234-b173-544a-063d-821baa6a5df9", + "name": "Activity due (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "79fad0d4-12c2-078d-c105-1ab1024e5b21", + "name": "Comments and Work notes", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "7cc56151-90e8-98bb-4354-a514208bff4a", + "name": "Cost", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "7eacd068-7e19-3dbc-dce0-d5089d3c35b8", + "name": "Reassignment count (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "7ecb2d1d-4dd0-e49b-c5d2-407bc5a7b08e", + "name": "Urgency (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "81d9a76b-9a30-a2cc-3078-64c2bfc4f4b0", + "name": "Monitor", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "BOOLEAN", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "837bda98-50c2-164b-665b-ba6e3a02ace3", + "name": "Watch list", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "85f313bb-fe2b-5ad7-0cdf-78a64a71fa27", + "name": "Approval set", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "86aa92af-853b-4d4e-35b0-21c6424e1735", + "name": "Time worked", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "86b35d25-952f-0881-7e62-a812a6e421ae", + "name": "Serial number", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "86b677e8-2841-1b59-d1b0-066d16d345c7", + "name": "Model ID", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "8a14e383-ee8e-4493-bfcd-a7238d11edf4", + "name": "Parent (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "CalculatedField", + "id": "8aef8cdb-0381-40e2-4efc-bb6a67c45652", + "name": "Time to Close an Incident (seconds)", + "description": null, + "isHidden": false, + "folderName": null, + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "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" + }, + { + "__typename": "ColumnField", + "id": "8b69c38c-8297-fb16-1e56-796f67864f60", + "name": "Owned by", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "8be77673-bc23-ffc3-1958-21856a6d42bf", + "name": "Activity due", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "8c6b7c63-54a0-46d3-8037-f2de8fa1d476", + "name": "Invoice number", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "8cc2a71d-49c7-fb56-f8f1-f4df94f83aa0", + "name": "Updated by (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "8de5c9d3-0c25-4ff6-1a84-0394bc36c57b", + "name": "Approval set (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "8df59f46-4e3b-aa77-0c74-35c93f844e75", + "name": "Duration", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "8e8947fd-7108-d528-44db-7657a1fb480c", + "name": "Start date", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "8ed7ee55-acb7-9064-da1c-80a20e706464", + "name": "Ordered", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "91f45936-daa1-6194-4fa8-1e135b053dd1", + "name": "Assigned to", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "93acf969-1638-980a-5c93-ac1c754d2831", + "name": "Follow up", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "941fbf6f-40e4-bfe8-d2ff-b016032ec6dd", + "name": "Business duration (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "965d754d-0bc7-06e4-1208-d146de93d6a1", + "name": "Order received", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "9736203a-fc31-b052-3fc5-abf1afe22f18", + "name": "Discovery source", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "984069c9-5366-622a-98bf-60c4ca3e0ff5", + "name": "Closed by (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "9a8a1e52-ae97-aee0-c2c9-a4ddf69b5ffc", + "name": "Work notes list", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "CalculatedField", + "id": "9b35c0be-0f76-63a1-445d-9872a1465154", + "name": "Total Active Incidents", + "description": null, + "isHidden": false, + "folderName": null, + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": "Attribute", + "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}" + }, + { + "__typename": "ColumnField", + "id": "9d228629-7bd0-42df-3b44-b7900f4c1e48", + "name": "Number", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "9f81f19e-ce84-459e-ab09-b8e4e6677e98", + "name": "Class", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "a0e000ab-dd73-f572-6a91-4ea2e1d2767d", + "name": "Description (Configuration Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "a0f25adf-7399-e938-d5b2-96cec332c78d", + "name": "Operational status", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "a15c1a3a-4cce-f29b-22d7-3044c66da9e1", + "name": "Expected start (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "a17240cd-70c6-f680-007d-25e83f020daf", + "name": "Work notes list (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "a1a22d48-f456-97d0-c098-5fd70f09ff7f", + "name": "Opened", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "a2bc54e9-6160-2cb6-d61e-4453051220d8", + "name": "Resolve time (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "a3702e1d-995f-0cac-3577-7f3500927ed4", + "name": "Reopen count (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "a39e5386-f37e-8d1e-3e74-fc8857d5c08d", + "name": "Created by (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "a3b1db00-20da-f6c3-85be-8b769d06db6c", + "name": "Assigned to (Configuration Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "a3cfeec0-84f3-6fda-f043-2a6da9598453", + "name": "Most recent discovery", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "a4cee743-4ff1-c3fc-e305-47ffa6ea9b4f", + "name": "Domain (Configuration Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "a788bc5b-010e-00c8-ef97-c112af3343af", + "name": "Upon reject (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "a7e61b7f-2247-0b9c-7da9-39297faadd8e", + "name": "Work end", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "a93c6637-d961-ae0b-598e-fa8da75e62c2", + "name": "Company (Configuration Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "ac4e3607-473b-f643-6d23-8cf0c69c7530", + "name": "Knowledge (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "BOOLEAN", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "CalculatedField", + "id": "ad2cbb7c-aaad-12d3-36ef-179ff1cfa1ff", + "name": "Max Year?", + "description": null, + "isHidden": false, + "folderName": null, + "role": "DIMENSION", + "dataType": "BOOLEAN", + "defaultFormat": null, + "aggregation": null, + "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])})" + }, + { + "__typename": "ColumnField", + "id": "af59ec99-214e-e0df-22e2-901b24a2624c", + "name": "Location (Configuration Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "b14c7e6b-bd65-5b11-a6a8-5b267a7b1260", + "name": "Watch list (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "b22db38f-740d-2d76-b929-370248345099", + "name": "Delivery task", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "b28fcdc2-bcd6-42aa-4e64-f2b4b176324d", + "name": "Fault count", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "b30f2384-7e6f-f13e-f57b-f810985e7cd9", + "name": "Caused by Change (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "b31e32f3-3e3d-01f1-a54c-453aa77a3297", + "name": "Updated (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "b73460b5-51fe-5c8f-61b0-7e9da12244fa", + "name": "Sys ID (Configuration Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "b880aec8-de45-999b-d664-588f4856c472", + "name": "MAC Address", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "baa349ea-198a-29da-9dae-f10f31a12cad", + "name": "Name", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "bb459069-04ab-3bd8-a9ed-dc5573834a34", + "name": "Approval group", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "bd513be6-26ba-b62a-74bc-adab1fb6488c", + "name": "Approval", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "bdd48dd3-e4e3-ef05-b63f-e2a6fbff3fd1", + "name": "Priority (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "bfb0ac8a-31a2-7024-45f3-49996be2df88", + "name": "Urgency", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "c199dd42-7e3d-ee43-7497-5c878129a3aa", + "name": "Delivery plan (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "c204f108-6aaa-1157-6649-c1e68bf42ad3", + "name": "Company (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "c4f111b2-0b44-14c8-46ad-a2d5ffa99c39", + "name": "Additional comments (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "c5d5443a-e3d4-b1d5-484f-326d66905887", + "name": "Business service (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "c79ce6cd-b9dd-6734-e452-aeaca19e82bd", + "name": "Schedule", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "c8cfca57-a823-37a7-4414-6d0b682a8024", + "name": "Sys ID (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "c958daf4-da7c-229e-390c-f1d81c6dde2a", + "name": "Supported by", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "c988934d-d4a5-3b7c-83e8-b383a8f8419b", + "name": "Configuration item (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "c9beabbf-d9d4-56a1-09d1-a8a0be3078cc", + "name": "Task type", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "ca51fe9b-f1e4-f6f9-ee9e-2961a3fd0ac9", + "name": "Support group", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "ca52cc66-4c1b-83ea-41b1-bc14348096b8", + "name": "Active (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "BOOLEAN", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "cb8052a6-0871-69b3-b212-62b7c74bf205", + "name": "Correlation display (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "cbd71d39-25b7-3854-6fac-6fa834cce1ee", + "name": "Justification", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "cbfef2b1-a95c-02e9-4c5e-c162e84d7341", + "name": "Change Request (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "cd1619c4-dd7a-fa47-e171-78e7ddb57879", + "name": "Updates", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "cd5bb434-957d-79da-2438-89161a10c0f6", + "name": "Incident state (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "cf6943b4-a34c-1fcd-f032-a09219619d29", + "name": "Domain (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "cf931c80-aa6a-9a08-26f2-f0bf383fa918", + "name": "Made SLA (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "BOOLEAN", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "CalculatedField", + "id": "d2678e95-9a3b-ae61-a30e-a4fc3ce9985d", + "name": "Opened Month Tooltip", + "description": null, + "isHidden": false, + "folderName": null, + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "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" + }, + { + "__typename": "ColumnField", + "id": "d2753f51-27e6-bd3c-d86f-c1ac5056f743", + "name": "Problem (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "d3a25e7f-4a67-7985-0fad-5325a221613d", + "name": "Measure Values", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "REAL", + "defaultFormat": null, + "aggregation": null, + "columns": [] + }, + { + "__typename": "ColumnField", + "id": "d451fb73-04ee-6e91-2b5e-7a619ec49318", + "name": "Group list", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "d487e44d-11ff-6c48-9c12-9a94f368e2e4", + "name": "Checked in", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "d5384062-e552-923e-a612-ca291854b4ca", + "name": "Severity (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "CalculatedField", + "id": "d5e37fc7-6a27-f00d-492b-5a04b3aa853e", + "name": "Number of Records", + "description": null, + "isHidden": true, + "folderName": null, + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "formula": "1" + }, + { + "__typename": "ColumnField", + "id": "d5f83f0b-2b83-3723-f0f2-210beaf4ebc9", + "name": "Time worked (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "da02b984-48fa-76e6-061c-b1462813432b", + "name": "Cost center", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "da62c9c2-0ca6-a8ab-e518-3fe3959983ba", + "name": "Work end (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "db0bf429-31ae-7a84-7016-343e9631f0cb", + "name": "Domain Path", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "dc36513d-648a-03f4-6983-d60b911212ea", + "name": "Due date", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "dfcd0d64-ca18-e181-bd07-a2a2528ea65b", + "name": "Contact type", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "e0e4e50f-5bbc-9b6c-b61c-18c3bead6985", + "name": "Created (Configuration Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "e107947e-cc43-8d74-bef5-1219b6f26acc", + "name": "Delivery plan", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "e2d64ef4-51dd-351b-1a41-34c331438b03", + "name": "Subcategory (Configuration Item)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "e2f0512c-5ae3-b551-c540-7f7e9d4e2891", + "name": "Description", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "e3fbc2ec-3c5f-fd89-fee7-a7018f62b8f9", + "name": "Sys ID", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "e8f1f323-2a8a-9f76-a6f1-1b9475149bbb", + "name": "Comments and Work notes (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "eb75ad3f-7e12-c6b7-816f-f0cc036587d0", + "name": "Can Print", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "BOOLEAN", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "ebd98cba-b969-ab25-a1ec-f9e699259ea5", + "name": "Active", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "BOOLEAN", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "ed27d249-10e9-e6ab-7d4d-2b804e8c1969", + "name": "Correlation ID (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "f1e27f80-b699-f683-cf3b-0ebc53d0dfe2", + "name": "Number (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "f26d57ca-a698-b5e8-b254-65cf3de14a98", + "name": "Follow up (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "f3298925-2b95-aa53-b2aa-f83feee7a83f", + "name": "Task type (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "f49bdb6d-26a4-56c1-319c-ecdff5632164", + "name": "Domain Path (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "f59d94c1-f580-0384-8272-ac4be3edd163", + "name": "Closed", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "f5f1f0a8-580d-c862-bad4-f0e50aa3f8bc", + "name": "Description (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "f6a05d7e-6f18-f9c7-a424-3f1742a16167", + "name": "Reassignment count", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "f92f9515-c6c9-e857-438f-3f4103e34c09", + "name": "Contact type (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "f97631bf-8375-1560-7883-278f9d6b53fc", + "name": "Assignment group (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "f97fd94e-f5d6-8f68-457b-dfacd40fd7f9", + "name": "Comments", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "fba5a588-b3aa-6033-e01c-0bcd4554f3f1", + "name": "State", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "fbd3c962-218c-de6d-a11c-da9e2e249f16", + "name": "Work start (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "fc35b28d-0112-dbd0-960e-8d1a6d3bf2be", + "name": "Correlation ID", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "fc7a1dae-abc6-8574-b17e-d996e4f57bb9", + "name": "State (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "fc82ee6e-5518-0b99-5a3e-f11320190dc2", + "name": "Resolved (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "ColumnField", + "id": "fd5c51a2-8000-9c11-f3f7-b3b8eae0b50e", + "name": "Assigned", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + }, + { + "__typename": "CalculatedField", + "id": "ff51c0e0-4b09-ab90-9dca-6b7c9de8f135", + "name": "Time to Close an Incident", + "description": null, + "isHidden": false, + "folderName": null, + "role": "MEASURE", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "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))" + }, + { + "__typename": "ColumnField", + "id": "ff85fc4f-2886-a45a-1e12-e5f0aa87abd2", + "name": "Upon approval (Incident)", + "description": null, + "isHidden": false, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "defaultFormat": null, + "aggregation": null, + "columns": [ + { + "table": {} + } + ] + } + ], + "upstreamDatasources": [], + "workbook": { + "id": "6ffa5a7f-d852-78f1-6c6d-20ac23610ebf", + "name": "Executive Dashboard", + "projectName": "default", + "owner": { + "username": "jawadqu@gmail.com" + } + } + }, + { + "__typename": "EmbeddedDatasource", + "id": "d8d4c0ea-3162-fa11-31e6-26675da44a38", + "name": "test publish datasource", + "hasExtracts": false, + "extractLastRefreshTime": null, + "extractLastIncrementalUpdateTime": null, + "extractLastUpdateTime": null, + "upstreamDatabases": [ + { + "id": "a7825692-7de9-113d-5377-ae113331a9ec", + "name": "dvdrental", + "connectionType": "postgres", + "isEmbedded": false + } + ], + "upstreamTables": [ + { + "id": "39657832-0769-6372-60c3-687a51e2a772", + "name": "customer", + "database": { + "name": "ven01911" + }, + "schema": "", + "fullName": "customer", + "connectionType": "postgres", + "description": "", + "columns": [] + }, + { + "id": "3cdd0522-44ef-62eb-ba52-71545c258344", + "name": "payment", + "database": { + "name": "ven01911" + }, + "schema": "", + "fullName": "payment", + "connectionType": "postgres", + "description": "", + "columns": [] + }, + { + "id": "7df39af9-6767-4c9c-4120-155a024de062", + "name": "staff", + "database": { + "name": "ven01911" + }, + "schema": "", + "fullName": "staff", + "connectionType": "postgres", + "description": "", + "columns": [] + } + ], + "downstreamSheets": [ + { + "id": "130496dc-29ca-8a89-e32b-d73c4d8b65ff", + "name": "published sheet ds" + } + ], + "fields": [ + { + "__typename": "DatasourceField", + "id": "0235103b-b83a-1380-8357-45b6e458202d", + "name": "customer_id", + "description": null, + "isHidden": false, + "folderName": null + }, + { + "__typename": "DatasourceField", + "id": "494eb750-ceb8-5000-e42b-f5889389c62b", + "name": "Custom SQL Query", + "description": null, + "isHidden": false, + "folderName": null + }, + { + "__typename": "DatasourceField", + "id": "60ca9dc0-f867-01a1-6d9f-e196636c0f08", + "name": "staff_last_name", + "description": null, + "isHidden": false, + "folderName": null + }, + { + "__typename": "DatasourceField", + "id": "79ab36f4-e1f3-ec9a-13c6-e7658f3ed563", + "name": "staff_first_name", + "description": null, + "isHidden": false, + "folderName": null + }, + { + "__typename": "DatasourceField", + "id": "8dbd31bb-460f-bb52-3b26-d0b4b5df875e", + "name": "customer_last_name", + "description": null, + "isHidden": false, + "folderName": null + }, + { + "__typename": "DatasourceField", + "id": "c058d792-9f88-8642-4e63-682cfb6382af", + "name": "amount", + "description": null, + "isHidden": false, + "folderName": null + }, + { + "__typename": "DatasourceField", + "id": "d432bec7-b5cf-7891-3a47-087a65f3679b", + "name": "customer_first_name", + "description": null, + "isHidden": false, + "folderName": null + }, + { + "__typename": "DatasourceField", + "id": "ddadd012-bcdb-2ddd-9021-c590410c3e59", + "name": "payment_date", + "description": null, + "isHidden": false, + "folderName": null + } + ], + "upstreamDatasources": [ + { + "id": "00cce29f-b561-bb41-3557-8e19660bb5dd", + "name": "test publish datasource" + } + ], + "workbook": { + "id": "bd040833-8f66-22c0-1b51-bd4ccf5eef7c", + "name": "Workbook published ds", + "projectName": "default", + "owner": { + "username": "jawadqu@gmail.com" + } + } + } + ], + "pageInfo": { + "hasNextPage": false, + "endCursor": null + }, + "totalCount": 8 + } + } +} \ No newline at end of file diff --git a/metadata-ingestion/tests/integration/tableau/setup/workbooksConnection_all.json b/metadata-ingestion/tests/integration/tableau/setup/workbooksConnection_all.json index 5de093ae3f927c..840885b693f73a 100644 --- a/metadata-ingestion/tests/integration/tableau/setup/workbooksConnection_all.json +++ b/metadata-ingestion/tests/integration/tableau/setup/workbooksConnection_all.json @@ -979,20468 +979,3116 @@ ], "embeddedDatasources": [ { - "__typename": "EmbeddedDatasource", - "id": "801c95e3-b07e-7bfe-3789-a561c7beccd3", - "name": "Marketo", - "hasExtracts": true, - "extractLastRefreshTime": "2018-02-09T00:05:25Z", - "extractLastIncrementalUpdateTime": null, - "extractLastUpdateTime": "2018-02-09T00:05:25Z", - "upstreamDatabases": [ - { - "id": "678978a0-afab-5483-1a9a-536b77999ec1", - "name": "Marketo", - "connectionType": "webdata-direct:marketo-marketo", - "isEmbedded": true - } - ], - "upstreamTables": [ - { - "id": "1704c7c3-4bb9-e6c6-6ea0-23f76e7560db", - "name": "activity6", - "database": { - "name": "Marketo" - }, - "schema": "", - "fullName": "[activity6]", - "connectionType": "webdata-direct:marketo-marketo", - "description": "", - "columns": [ - { - "name": "Test_Variant", - "remoteType": "WDC_INT" - }, - { - "name": "Mailing_ID", - "remoteType": "WDC_INT" - }, - { - "name": "Campaign_Run_ID", - "remoteType": "WDC_INT" - }, - { - "name": "id", - "remoteType": "WDC_INT" - }, - { - "name": "Activity_Date", - "remoteType": "WDC_DATETIME" - }, - { - "name": "Choice_Number", - "remoteType": "WDC_INT" - }, - { - "name": "Step_ID", - "remoteType": "WDC_INT" - }, - { - "name": "Campaign_ID", - "remoteType": "WDC_INT" - }, - { - "name": "Lead_ID", - "remoteType": "WDC_INT" - }, - { - "name": "Has_Predictive", - "remoteType": "WDC_BOOL" - } - ] - }, - { - "id": "38f106d0-5219-2663-2647-bbbf5fca3866", - "name": "activity11", - "database": { - "name": "Marketo" - }, - "schema": "", - "fullName": "[activity11]", - "connectionType": "webdata-direct:marketo-marketo", - "description": "", - "columns": [ - { - "name": "Campaign_ID", - "remoteType": "WDC_INT" - }, - { - "name": "Campaign_Run_ID", - "remoteType": "WDC_INT" - }, - { - "name": "Link", - "remoteType": "WDC_STRING" - }, - { - "name": "Test_Variant", - "remoteType": "WDC_INT" - }, - { - "name": "Platform", - "remoteType": "WDC_STRING" - }, - { - "name": "id", - "remoteType": "WDC_INT" - }, - { - "name": "Activity_Date", - "remoteType": "WDC_DATETIME" - }, - { - "name": "Choice_Number", - "remoteType": "WDC_INT" - }, - { - "name": "Mailing_ID", - "remoteType": "WDC_INT" - }, - { - "name": "Step_ID", - "remoteType": "WDC_INT" - }, - { - "name": "Lead_ID", - "remoteType": "WDC_INT" - }, - { - "name": "Link_ID", - "remoteType": "WDC_STRING" - }, - { - "name": "Is_Predictive", - "remoteType": "WDC_BOOL" - }, - { - "name": "Device", - "remoteType": "WDC_STRING" - }, - { - "name": "Is_Mobile_Device", - "remoteType": "WDC_BOOL" - }, - { - "name": "User_Agent", - "remoteType": "WDC_STRING" - } - ] - }, - { - "id": "4aee37cd-e738-e5de-3c77-7a118964ac70", - "name": "activity10", - "database": { - "name": "Marketo" - }, - "schema": "", - "fullName": "[activity10]", - "connectionType": "webdata-direct:marketo-marketo", - "description": "", - "columns": [ - { - "name": "Platform", - "remoteType": "WDC_STRING" - }, - { - "name": "Device", - "remoteType": "WDC_STRING" - }, - { - "name": "Choice_Number", - "remoteType": "WDC_INT" - }, - { - "name": "Lead_ID", - "remoteType": "WDC_INT" - }, - { - "name": "Activity_Date", - "remoteType": "WDC_DATETIME" - }, - { - "name": "Test_Variant", - "remoteType": "WDC_INT" - }, - { - "name": "Is_Mobile_Device", - "remoteType": "WDC_BOOL" - }, - { - "name": "Has_Predictive", - "remoteType": "WDC_BOOL" - }, - { - "name": "Step_ID", - "remoteType": "WDC_INT" - }, - { - "name": "User_Agent", - "remoteType": "WDC_STRING" - }, - { - "name": "Mailing_ID", - "remoteType": "WDC_INT" - }, - { - "name": "Campaign_ID", - "remoteType": "WDC_INT" - }, - { - "name": "Campaign_Run_ID", - "remoteType": "WDC_INT" - }, - { - "name": "id", - "remoteType": "WDC_INT" - } - ] - }, - { - "id": "6a9da5b0-a1bc-ef1b-a154-59c2627f49b0", - "name": "activity7", - "database": { - "name": "Marketo" - }, - "schema": "", - "fullName": "[activity7]", - "connectionType": "webdata-direct:marketo-marketo", - "description": "", - "columns": [ - { - "name": "Test_Variant", - "remoteType": "WDC_INT" - }, - { - "name": "Campaign_Run_ID", - "remoteType": "WDC_INT" - }, - { - "name": "Activity_Date", - "remoteType": "WDC_DATETIME" - }, - { - "name": "Mailing_ID", - "remoteType": "WDC_INT" - }, - { - "name": "Has_Predictive", - "remoteType": "WDC_BOOL" - }, - { - "name": "id", - "remoteType": "WDC_INT" - }, - { - "name": "Campaign_ID", - "remoteType": "WDC_INT" - }, - { - "name": "Step_ID", - "remoteType": "WDC_INT" - }, - { - "name": "Lead_ID", - "remoteType": "WDC_INT" - }, - { - "name": "Choice_Number", - "remoteType": "WDC_INT" - } - ] - }, - { - "id": "82c42950-210b-ba3f-b2e9-53240474a8fd", - "name": "campaignsTable", - "database": { - "name": "Marketo" - }, - "schema": "", - "fullName": "[campaignsTable]", - "connectionType": "webdata-direct:marketo-marketo", - "description": "", - "columns": [ - { - "name": "programName", - "remoteType": "WDC_STRING" - }, - { - "name": "name", - "remoteType": "WDC_STRING" - }, - { - "name": "programId", - "remoteType": "WDC_INT" - }, - { - "name": "description", - "remoteType": "WDC_STRING" - }, - { - "name": "createdAt", - "remoteType": "WDC_DATETIME" - }, - { - "name": "id", - "remoteType": "WDC_INT" - }, - { - "name": "workspaceName", - "remoteType": "WDC_STRING" - }, - { - "name": "updatedAt", - "remoteType": "WDC_DATETIME" - }, - { - "name": "active", - "remoteType": "WDC_BOOL" - } - ] - } - ], - "downstreamSheets": [ - { - "id": "222d1406-de0e-cd8d-0b94-9b45a0007e59", - "name": "Timeline - Sent" - }, - { - "id": "38130558-4194-2e2a-3046-c0d887829cb4", - "name": "Campaign List" - }, - { - "id": "692a2da4-2a82-32c1-f713-63b8e4325d86", - "name": "Summary" - }, - { - "id": "f4317efd-c3e6-6ace-8fe6-e71b590bbbcc", - "name": "Mobile - Sent by Campaign" - } - ], - "fields": [ - { - "__typename": "CalculatedField", - "id": "06922989-6ee4-81bb-79d4-f9f9faf17819", - "name": "Delivery Rate", - "description": null, - "isHidden": false, - "folderName": null, - "role": "MEASURE", - "dataType": "REAL", - "defaultFormat": "p0.0%", - "aggregation": null, - "formula": "ZN([Delivered Email]/[Sent Email])" - }, - { - "__typename": "ColumnField", - "id": "0e1a7126-7f89-6bcd-d3ac-bc7a36dbe206", - "name": "Program ID", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "0e9630ee-e141-bff1-d33b-f3ea9241d4b9", - "name": "Platform (Activity - Click Email)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": "Count", - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "0fe12d2b-ad7c-3862-dbed-6cf000ada134", - "name": "Updated At", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "18b72ab1-374b-9740-47f4-57de5a14043a", - "name": "Workspace Name", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "1e38aa00-9f8c-e489-0024-2e5d3ab8a9b7", - "name": "Mailing ID (Activity - Email Delivered)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "1e9d01cd-e6e0-91e8-bd07-3690017cf233", - "name": "Campaign ID (Activity - Email Delivered)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "CalculatedField", - "id": "1fada5ed-ca53-8478-40cf-820309ca45ed", - "name": "Number of Records", - "description": null, - "isHidden": false, - "folderName": null, - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "formula": "1" - }, - { - "__typename": "ColumnField", - "id": "2026c0f6-96e1-4a84-9555-b80926aaed36", - "name": "Campaign Run ID", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "21493acc-8046-5cf8-fcb1-e3ab328bf7b4", - "name": "User Agent (Activity - Click Email)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "26c360a8-b8fc-efb8-85f0-107d2d63913a", - "name": "Choice Number (Activity - Email Delivered)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "26c37c0a-c970-3a28-c375-fd6c54113a3e", - "name": "Campaign ID", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "xxxdc8ee-30e5-644b-cf76-48a3dea79cda", - "name": null, - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "277dc8ee-30e5-644b-cf76-48a3dea79cda", - "name": "Name", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "292ebda7-49ee-589f-b8ba-6d44443158ea", - "name": "Is Predictive", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "299d8cdf-75ed-5dff-1e97-f11f7023cd2a", - "name": "Campaign ID (Activity - Click Email)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "337cbc32-3695-427f-57a8-945a9d66cb46", - "name": "Activity Date (Activity - Click Email)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "33c19e7e-c7a8-17ce-b1c5-03075d81e718", - "name": "Has Predictive (Activity - Open Email)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "3b3f6466-37a8-de90-a113-d7fc889de010", - "name": "Step ID (Activity - Open Email)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "3bd91e15-44e4-bfa9-c495-e64a481c6a99", - "name": "Id (Activity - Click Email)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "3c6caacf-8292-4a0e-a569-f01a50c48fde", - "name": "Step ID (Activity - Click Email)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "42bf8d99-1c09-1ffa-14b8-f99f20940b4d", - "name": "Activity Date", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "CalculatedField", - "id": "43a93841-c04b-8a60-57b5-82de870cc156", - "name": "Clickthrough Rate", - "description": null, - "isHidden": false, - "folderName": null, - "role": "MEASURE", - "dataType": "REAL", - "defaultFormat": "p0.0%", - "aggregation": null, - "formula": "[Clickthrough Emails]/[Delivered Email]" - }, - { - "__typename": "CalculatedField", - "id": "497f7a5a-7c57-2073-4b2e-a780ed0777f3", - "name": "Open Rate", - "description": null, - "isHidden": false, - "folderName": null, - "role": "MEASURE", - "dataType": "REAL", - "defaultFormat": "p0.0%", - "aggregation": null, - "formula": "ZN([Opened Email]/[Delivered Email])" - }, - { - "__typename": "ColumnField", - "id": "4d2e3b25-336d-e842-ac42-f947f6e65eb3", - "name": "Measure Names", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [] - }, - { - "__typename": "CalculatedField", - "id": "4dd95bc1-8c08-92e5-09ae-cac7d0736c38", - "name": "Sent Email", - "description": null, - "isHidden": false, - "folderName": null, - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "formula": "COUNTD([Id])" - }, - { - "__typename": "CalculatedField", - "id": "4ea37317-863a-b8f7-3451-2ff1dcd43d5c", - "name": "Delivered Email", - "description": null, - "isHidden": false, - "folderName": null, - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "formula": "COUNTD([Id (Activity - Email Delivered)])" - }, - { - "__typename": "ColumnField", - "id": "51b4731a-f7ef-70ec-2db0-b39182d54542", - "name": "Lead ID (Activity - Click Email)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "53de4a7f-9930-b05f-ead3-6d628495c5bd", - "name": "Choice Number", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "58d3a137-aada-cb54-0782-c3f8cf0c30bb", - "name": "Is Mobile Device", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "5ca9f540-c492-7e3b-744b-a78a5a977719", - "name": "Platform", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": "Count", - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "5cf0d0ab-fc2d-a46a-b9ad-5128b441158c", - "name": "Mailing ID (Activity - Open Email)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "5d21c9b0-ac28-8d20-4307-9c342c0f238d", - "name": "Lead ID (Activity - Open Email)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "5f513df7-b73b-2d6b-6b67-74a50e3f1e56", - "name": "Test Variant (Activity - Email Delivered)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "602064a0-c2db-e057-6b72-ff40f5e6ffdf", - "name": "ID", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "64f96cfa-91d2-55b7-62ea-ca05175a7a1b", - "name": "Campaign Run ID (Activity - Email Delivered)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "66d4994a-6a37-e8cb-1ced-37926f73b765", - "name": "Id (Activity - Open Email)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "67d4ac88-0fab-6f51-edd2-9e3cd6f681e8", - "name": "Activity Date (Activity - Open Email)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "716fddff-5012-3c14-8105-be4625a0c02d", - "name": "Description", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "722ecf66-c49b-5ad2-bc88-cd59b26d6fab", - "name": "Campaign Run ID (Activity - Click Email)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "7693149f-424a-371b-0b7a-723a80ef12ef", - "name": "Created At", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "CalculatedField", - "id": "7bc8c737-3ca5-956e-c23f-0fb878748b5e", - "name": "Clickthrough Emails", - "description": null, - "isHidden": false, - "folderName": null, - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "formula": "COUNTD([Id (Activity - Click Email)])" - }, - { - "__typename": "ColumnField", - "id": "7c875ed5-6106-1eec-4a1e-103673cde0ef", - "name": "Is Mobile Device (Activity - Click Email)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "7fd1eac6-cf7f-2480-6e91-05a31d47aa5b", - "name": "Mailing ID", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "856fd651-a544-2429-4bf8-bc4c8eee3046", - "name": "Device (Activity - Click Email)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": "Count", - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "86c8aef9-f3af-3a82-49a8-453b3fc69057", - "name": "Mailing ID (Activity - Click Email)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "8711ae44-5b7c-b5c4-0c63-9bbb6f8d55d3", - "name": "Choice Number (Activity - Click Email)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "8b9b1f51-9485-afcf-b323-ba3cb8953183", - "name": "Test Variant", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "8c4140cf-c6cc-b43d-9621-3ffa8d3dae26", - "name": "Link ID", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "CalculatedField", - "id": "908fa927-f78d-0314-4fa4-88307c21e73c", - "name": "Click-to-Open", - "description": null, - "isHidden": false, - "folderName": null, - "role": "MEASURE", - "dataType": "REAL", - "defaultFormat": "p0.0%", - "aggregation": null, - "formula": "ZN([Clickthrough Emails]\r\n/ \r\n[Opened Email])" - }, - { - "__typename": "CalculatedField", - "id": "91a0b832-5abf-95df-e292-be9e58e91404", - "name": "Opened Email", - "description": null, - "isHidden": false, - "folderName": null, - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "formula": "COUNTD([Id (Activity - Open Email)])" - }, - { - "__typename": "ColumnField", - "id": "9720c532-6085-7d96-82ff-f30b14ca391e", - "name": "Link", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": "Count", - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "984bcf14-8a6b-2579-51ae-816d5db9821a", - "name": "Lead ID", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "9af0b32d-9e82-419e-c522-c4ac4a0e40d0", - "name": "Campaign Run ID (Activity - Open Email)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "CalculatedField", - "id": "a4d2164a-2ef5-4d76-62e1-468bb135b4c2", - "name": "Opened Non Clicked Emails", - "description": null, - "isHidden": false, - "folderName": null, - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "formula": "[Opened Email]-[Clickthrough Emails]" - }, - { - "__typename": "ColumnField", - "id": "a68a43a9-03f4-bad3-74f1-7ce668c536bc", - "name": "Test Variant (Activity - Open Email)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "a8fbfef2-2ffd-77a9-0f63-a1d5e6944f24", - "name": "Step ID (Activity - Email Delivered)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "CalculatedField", - "id": "abf83860-1adf-8a92-a4ea-9ce9d3945ad7", - "name": "Non Clickthrough Email", - "description": null, - "isHidden": false, - "folderName": null, - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "formula": "[Delivered Email]-[Clickthrough Emails]" - }, - { - "__typename": "ColumnField", - "id": "acd62e88-e4e9-e0e5-bd00-da2d20e74dd1", - "name": "Device", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": "Count", - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "ae7d7692-b175-447a-a74b-c4f85f236be8", - "name": "Lead ID (Activity - Email Delivered)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "af24ee3e-18ae-b2d0-7371-9dd596145f38", - "name": "Id (Activity - Email Delivered)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "b143e310-f7e1-7f49-82f5-141ae733c043", - "name": "Program Name", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "b4bf1bbe-a8b8-b363-e4fd-0b8cd82871a1", - "name": "Campaign ID (Activity - Open Email)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "b6b7479a-ce63-9308-d0e3-70d8af828f36", - "name": "Activity Date (Activity - Email Delivered)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "be574861-0e55-a0be-1143-2e10ea611e9f", - "name": "Test Variant (Activity - Click Email)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "bfcf48dd-e42a-8693-72c2-9b84efc53172", - "name": "Has Predictive", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "CalculatedField", - "id": "c4998733-5988-3cb6-444c-674059fddfd9", - "name": "Non Opened Email", - "description": null, - "isHidden": false, - "folderName": null, - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "formula": "[Delivered Email]-[Opened Email]" - }, - { - "__typename": "ColumnField", - "id": "e84f0fe4-882b-772f-a8c4-4ea89b97bff3", - "name": "Measure Values", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "REAL", - "defaultFormat": null, - "aggregation": null, - "columns": [] - }, - { - "__typename": "ColumnField", - "id": "e915db4c-d33b-9f5d-a5bd-6022ae85118d", - "name": "Has Predictive (Activity - Email Delivered)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "eb18ef87-d48d-fefa-1fd7-98834a304ece", - "name": "User Agent", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "f06b3901-4f28-acd5-a724-9a3b18198528", - "name": "Active", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "f509397e-7e11-4f86-4ae8-2e861df69d46", - "name": "Step ID", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "CalculatedField", - "id": "f6dffbe7-aa6f-5acb-25a7-fdf0bf3ab507", - "name": "Bounceback", - "description": null, - "isHidden": false, - "folderName": null, - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "formula": "[Sent Email] - [Delivered Email]" - }, - { - "__typename": "ColumnField", - "id": "fe556978-d213-2f6c-2950-ec6ce30a63b1", - "name": "Choice Number (Activity - Open Email)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "ffd5c589-6741-450b-bbe6-b21f6a31670e", - "name": "Id", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - } - ], - "upstreamDatasources": [], - "workbook": { - "name": "Email Performance by Campaign", - "projectName": "default" - } - } - ] - }, - { - "id": "661fabd0-bed6-8610-e066-0694a81a6cea", - "name": "Dvdrental Workbook", - "luid": "b2c84ac6-1e37-4ca0-bf9b-62339be046fc", - "projectName": "default", - "owner": { - "username": "jawadqu@gmail.com" - }, - "description": "", - "uri": "sites/4989/workbooks/15619", - "createdAt": "2021-12-17T20:28:31Z", - "updatedAt": "2022-01-18T16:14:34Z", - "sheets": [ - { - "id": "8a6a269a-d6de-fae4-5050-513255b40ffc", - "name": "Sheet 1", - "path": "dvdrental/Sheet1", - "createdAt": "2021-12-17T20:28:31Z", - "updatedAt": "2022-01-14T22:39:55Z", - "tags": [], - "containedInDashboards": [ - { - "name": "dvd Rental Dashboard", - "path": "dvdrental/dvdRentalDashboard" - } - ], - "datasourceFields": [ - { - "__typename": "ColumnField", - "id": "afb789df-a7d6-0fd8-1c20-4d7725636f32", - "name": "Custom SQL Query", - "description": null, - "datasource":{ - "__typename": "EmbeddedDatasource", - "id": "4644ccb1-2adc-cf26-c654-04ed1dcc7090", - "name": "Customer Payment Query" - }, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "TABLE", - "aggregation": null - } - ] - }, - { - "id": "c57a5574-db47-46df-677f-0b708dab14db", - "name": "Sheet 2", - "path": "dvdrental/Sheet2", - "createdAt": "2021-12-17T20:36:55Z", - "updatedAt": "2022-01-14T22:39:55Z", - "tags": [], - "containedInDashboards": [], - "datasourceFields": [ - { - "__typename": "ColumnField", - "id": "08feb4a3-ecd2-8e6e-d3d0-fb27970b4898", - "name": "payment_date", - "description": null, - "datasource":{ - "__typename": "EmbeddedDatasource", - "id": "4644ccb1-2adc-cf26-c654-04ed1dcc7090", - "name": "Customer Payment Query" - }, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": "Year" - }, - { - "__typename": "ColumnField", - "id": "85ce12c3-12b1-fbfc-659f-a0670b193bab", - "name": "amount", - "description": null, - "datasource":{ - "__typename": "EmbeddedDatasource", - "id": "4644ccb1-2adc-cf26-c654-04ed1dcc7090", - "name": "Customer Payment Query" - }, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "REAL", - "aggregation": "Sum" - }, - { - "__typename": "ColumnField", - "id": "afb789df-a7d6-0fd8-1c20-4d7725636f32", - "name": "Custom SQL Query", - "description": null, - "datasource":{ - "__typename": "EmbeddedDatasource", - "id": "4644ccb1-2adc-cf26-c654-04ed1dcc7090", - "name": "Customer Payment Query" - }, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "TABLE", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "ba250011-4873-54ad-5b64-c689996216f2", - "name": "First Name", - "description": null, - "datasource":{ - "__typename": "EmbeddedDatasource", - "id": "4644ccb1-2adc-cf26-c654-04ed1dcc7090", - "name": "Customer Payment Query" - }, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "c04914c4-0a78-1bd1-acb7-ebf0d704c609", - "name": "customer_id", - "description": null, - "datasource":{ - "__typename": "EmbeddedDatasource", - "id": "4644ccb1-2adc-cf26-c654-04ed1dcc7090", - "name": "Customer Payment Query" - }, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "aggregation": "Sum" - }, - { - "__typename": "ColumnField", - "id": "c68badd9-86d7-c554-d287-9f21d1ac113b", - "name": "rental_id", - "description": null, - "datasource":{ - "__typename": "EmbeddedDatasource", - "id": "4644ccb1-2adc-cf26-c654-04ed1dcc7090", - "name": "Customer Payment Query" - }, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "aggregation": "Sum" - }, - { - "__typename": "ColumnField", - "id": "eb9b61e1-5209-4586-7af0-b69cd0df25c9", - "name": "Last Name", - "description": null, - "datasource":{ - "__typename": "EmbeddedDatasource", - "id": "4644ccb1-2adc-cf26-c654-04ed1dcc7090", - "name": "Customer Payment Query" - }, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - } - ] - }, - { - "id": "e604255e-0573-3951-6db7-05bee48116c1", - "name": "Sheet 3", - "path": "dvdrental/Sheet3", - "createdAt": "2021-12-24T19:50:56Z", - "updatedAt": "2022-01-14T22:39:55Z", - "tags": [ - { - "name": "TagSheet3" - } - ], - "containedInDashboards": [], - "datasourceFields": [ - { - "__typename": "DatasourceField", - "id": "a69ba55b-4434-6988-e276-06183ba7ee63", - "name": "Category", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "d00f4ba6-707e-4684-20af-69eb47587cc2", - "name": "Superstore Datasource" - }, - "remoteField": { - "__typename": "ColumnField", - "id": "2e0aa617-9d3d-15db-3597-17b8ccda2381", - "name": "Category", - "description": null, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": "Count" - } - }, - { - "__typename": "DatasourceField", - "id": "cbf261c1-b86b-2f51-7aa7-9ec601acdadf", - "name": "Segment", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "d00f4ba6-707e-4684-20af-69eb47587cc2", - "name": "Superstore Datasource" - }, - "remoteField": { - "__typename": "ColumnField", - "id": "0e75ad46-7474-6e02-6d1b-20781db40587", - "name": "Segment", - "description": null, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": "Count" - } - }, - { - "__typename": "DatasourceField", - "id": "eaad917f-9a67-d25b-2f18-7c740e9064a7", - "name": "Customer Name", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "d00f4ba6-707e-4684-20af-69eb47587cc2", - "name": "Superstore Datasource" - }, - "remoteField": { - "__typename": "ColumnField", - "id": "cfcbc551-00d3-c773-3d68-5cafabc95b61", - "name": "Customer Name", - "description": null, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - } - } - ] - } - ], - "dashboards": [ - { - "id": "20e44c22-1ccd-301a-220c-7b6837d09a52", - "name": "dvd Rental Dashboard", - "path": "dvdrental/dvdRentalDashboard", - "createdAt": "2021-12-17T20:44:26Z", - "updatedAt": "2022-01-14T22:39:55Z", - "sheets": [ - { - "id": "8a6a269a-d6de-fae4-5050-513255b40ffc", - "name": "Sheet 1" - } - ] - }, - { - "id": "39b7a1de-6276-cfc7-9b59-1d22f3bbb06b", - "name": "Story 1", - "path": "dvdrental/Story1", - "createdAt": "2021-12-17T20:44:26Z", - "updatedAt": "2022-01-14T22:39:55Z", - "sheets": [] - } - ], - "embeddedDatasources": [ - { - "__typename": "EmbeddedDatasource", - "id": "4644ccb1-2adc-cf26-c654-04ed1dcc7090", - "name": "Customer Payment Query", - "hasExtracts": false, - "extractLastRefreshTime": null, - "extractLastIncrementalUpdateTime": null, - "extractLastUpdateTime": null, - "upstreamDatabases": [ - { - "id": "a7825692-7de9-113d-5377-ae113331a9ec", - "name": "dvdrental", - "connectionType": "postgres", - "isEmbedded": false - } - ], - "upstreamTables": [ - { - "id": "39657832-0769-6372-60c3-687a51e2a772", - "name": "customer", - "database": { - "name": "dvdrental" - }, - "schema": "", - "fullName": "customer", - "connectionType": "postgres", - "description": "", - "columns": [] - }, - { - "id": "3cdd0522-44ef-62eb-ba52-71545c258344", - "name": "payment", - "database": { - "name": "dvdrental" - }, - "schema": "", - "fullName": "payment", - "connectionType": "postgres", - "description": "", - "columns": [] - } - ], - "downstreamSheets": [ - { - "id": "8a6a269a-d6de-fae4-5050-513255b40ffc", - "name": "Sheet 1" - }, - { - "id": "c57a5574-db47-46df-677f-0b708dab14db", - "name": "Sheet 2" - } - ], - "fields": [ - { - "__typename": "ColumnField", - "id": "08feb4a3-ecd2-8e6e-d3d0-fb27970b4898", - "name": "payment_date", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": "Year", - "columns": [ - { - "table": { - "id": "22b0b4c3-6b85-713d-a161-5a87fdd78f40", - "name": "Custom SQL Query" - } - } - ] - }, - { - "__typename": "ColumnField", - "id": "85ce12c3-12b1-fbfc-659f-a0670b193bab", - "name": "amount", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "REAL", - "defaultFormat": null, - "aggregation": "Sum", - "columns": [ - { - "table": { - "id": "22b0b4c3-6b85-713d-a161-5a87fdd78f40", - "name": "Custom SQL Query" - } - } - ] - }, - { - "__typename": "ColumnField", - "id": "afb789df-a7d6-0fd8-1c20-4d7725636f32", - "name": "Custom SQL Query", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "TABLE", - "defaultFormat": null, - "aggregation": null, - "columns": [] - }, - { - "__typename": "ColumnField", - "id": "ba250011-4873-54ad-5b64-c689996216f2", - "name": "First Name", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": { - "id": "22b0b4c3-6b85-713d-a161-5a87fdd78f40", - "name": "Custom SQL Query" - } - } - ] - }, - { - "__typename": "ColumnField", - "id": "c04914c4-0a78-1bd1-acb7-ebf0d704c609", - "name": "customer_id", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": "Sum", - "columns": [ - { - "table": { - "id": "22b0b4c3-6b85-713d-a161-5a87fdd78f40", - "name": "Custom SQL Query" - } - } - ] - }, - { - "__typename": "ColumnField", - "id": "c68badd9-86d7-c554-d287-9f21d1ac113b", - "name": "rental_id", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": "Sum", - "columns": [ - { - "table": { - "id": "22b0b4c3-6b85-713d-a161-5a87fdd78f40", - "name": "Custom SQL Query" - } - } - ] - }, - { - "__typename": "ColumnField", - "id": "eb9b61e1-5209-4586-7af0-b69cd0df25c9", - "name": "Last Name", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": { - "id": "22b0b4c3-6b85-713d-a161-5a87fdd78f40", - "name": "Custom SQL Query" - } - } - ] - } - ], - "upstreamDatasources": [], - "workbook": { - "name": "Dvdrental Workbook", - "projectName": "default" - } - }, - { - "__typename": "EmbeddedDatasource", - "id": "618c87db-5959-338b-bcc7-6f5f4cc0b6c6", - "name": "actor+ (dvdrental)", - "hasExtracts": false, - "extractLastRefreshTime": null, - "extractLastIncrementalUpdateTime": null, - "extractLastUpdateTime": null, - "upstreamDatabases": [ - { - "id": "a7825692-7de9-113d-5377-ae113331a9ec", - "name": "dvdrental", - "connectionType": "postgres", - "isEmbedded": false - } - ], - "upstreamTables": [ - { - "id": "5acb3a52-00b1-0e5c-b8b2-040445db9824", - "name": "address", - "database": { - "name": "dvdrental" - }, - "schema": "public", - "fullName": "[public].[address]", - "connectionType": "postgres", - "description": "", - "columns": [ - { - "name": "postal_code", - "remoteType": "STR" - }, - { - "name": "last_update", - "remoteType": "DBTIMESTAMP" - }, - { - "name": "phone", - "remoteType": "STR" - }, - { - "name": "address2", - "remoteType": "STR" - }, - { - "name": "address", - "remoteType": "STR" - }, - { - "name": "city_id", - "remoteType": "I2" - }, - { - "name": "district", - "remoteType": "STR" - }, - { - "name": "address_id", - "remoteType": "I4" - } - ] - }, - { - "id": "985d7629-535b-9326-79bc-748e29e97949", - "name": "actor", - "database": { - "name": "dvdrental" - }, - "schema": "public1", - "fullName": "[public].[actor]", - "connectionType": "postgres", - "description": "", - "columns": [ - { - "name": "last_update", - "remoteType": "DBTIMESTAMP" - }, - { - "name": "last_name", - "remoteType": "STR" - }, - { - "name": "first_name", - "remoteType": "STR" - }, - { - "name": "actor_id", - "remoteType": "I4" - } - ] - } - ], - "fields": [ - { - "__typename": "ColumnField", - "id": "04151303-bd09-aff5-b9ee-e4948c2cb4f0", - "name": "Address2", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "0a0bd261-effc-6d14-3e7a-bc0b214455d4", - "name": "Last Update", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "27a9fbc1-1290-d570-d88b-149d83d4b113", - "name": "address", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "TABLE", - "defaultFormat": null, - "aggregation": null, - "columns": [] - }, - { - "__typename": "ColumnField", - "id": "2dd4db27-740f-7cc7-b36e-09564d556cb3", - "name": "District", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "3146b9b4-eb1f-ae91-804f-e5b157cf0eb7", - "name": "First Name", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "31811e0f-9fd3-dad5-6093-aab2de26e470", - "name": "Address", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "3c8d999a-85c2-9f62-17e0-e7e3b4fc59c1", - "name": "Postal Code", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "HierarchyField", - "id": "4ad28d4f-8e39-429d-5b42-8bdd5ae90734", - "name": "country, city", - "description": null, - "isHidden": false, - "folderName": null - }, - { - "__typename": "ColumnField", - "id": "67a5460e-d59a-1aa5-d999-7a945c3ac781", - "name": "Phone", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "7cbb7bd2-85d6-1a27-b21a-b93104c5fbf7", - "name": "Last Update (Address)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "917735d1-6fd5-536e-cc19-52eb04b6e954", - "name": "Address Id", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "aee7feaf-f094-7601-e798-ba92e414a964", - "name": "Actor Id", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "dde631d5-9f2b-5413-e3d7-74b6494c1d75", - "name": "actor", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "TABLE", - "defaultFormat": null, - "aggregation": null, - "columns": [] - }, - { - "__typename": "ColumnField", - "id": "e2da5ba0-5e55-013a-3c2d-fbd975331a3c", - "name": "Last Name", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "fb549c29-1158-1073-98e3-040086d127e8", - "name": "City Id", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": "Sum", - "columns": [ - { - "table": {} - } - ] - } - ], - "upstreamDatasources": [], - "workbook": { - "name": "Dvdrental Workbook", - "projectName": "default" - } - }, - { - "__typename": "EmbeddedDatasource", - "id": "d00f4ba6-707e-4684-20af-69eb47587cc2", - "name": "Superstore Datasource", - "hasExtracts": false, - "extractLastRefreshTime": null, - "extractLastIncrementalUpdateTime": null, - "extractLastUpdateTime": null, - "upstreamDatabases": [ - { - "id": "1ade1d51-bbc3-ed8d-25d2-c51f44b8b31b", - "name": "Sample - Superstore.xls", - "connectionType": "excel-direct", - "isEmbedded": true - } - ], - "upstreamTables": [ - { - "id": "15714253-8e46-a209-63cc-700705b66de9", - "name": "People", - "database": { - "name": "Sample - Superstore.xls" - }, - "schema": "", - "fullName": "[People$]", - "connectionType": "excel-direct", - "description": "", - "columns": [ - { - "name": "Person", - "remoteType": "WSTR" - }, - { - "name": "Region", - "remoteType": "WSTR" - } - ] - }, - { - "id": "19be3c28-8e4d-ebac-b44d-8f0851d9f206", - "name": "Returns", - "database": { - "name": "Sample - Superstore.xls" - }, - "schema": "", - "fullName": "[Returns$]", - "connectionType": "excel-direct", - "description": "", - "columns": [ - { - "name": "Returned", - "remoteType": "WSTR" - }, - { - "name": "Order ID", - "remoteType": "WSTR" - } - ] - }, - { - "id": "b0e0c3eb-6e53-e0f5-ded1-478d5d9f7281", - "name": "Orders", - "database": { - "name": "Sample - Superstore.xls" - }, - "schema": "", - "fullName": "[Orders$]", - "connectionType": "excel-direct", - "description": "", - "columns": [ - { - "name": "Product ID", - "remoteType": "WSTR" - }, - { - "name": "Category", - "remoteType": "WSTR" - }, - { - "name": "Postal Code", - "remoteType": "I8" - }, - { - "name": "City", - "remoteType": "WSTR" - }, - { - "name": "Quantity", - "remoteType": "I8" - }, - { - "name": "State", - "remoteType": "WSTR" - }, - { - "name": "Order Date", - "remoteType": "DATE" - }, - { - "name": "Customer Name", - "remoteType": "WSTR" - }, - { - "name": "Country/Region", - "remoteType": "WSTR" - }, - { - "name": "Sales", - "remoteType": "R8" - }, - { - "name": "Segment", - "remoteType": "WSTR" - }, - { - "name": "Sub-Category", - "remoteType": "WSTR" - }, - { - "name": "Profit", - "remoteType": "R8" - }, - { - "name": "Product Name", - "remoteType": "WSTR" - }, - { - "name": "Customer ID", - "remoteType": "WSTR" - }, - { - "name": "Order ID", - "remoteType": "WSTR" - }, - { - "name": "Row ID", - "remoteType": "I8" - }, - { - "name": "Discount", - "remoteType": "R8" - }, - { - "name": "Ship Date", - "remoteType": "DATE" - }, - { - "name": "Ship Mode", - "remoteType": "WSTR" - }, - { - "name": "Region", - "remoteType": "WSTR" - } - ] - } - ], - "downstreamSheets": [ - { - "id": "e604255e-0573-3951-6db7-05bee48116c1", - "name": "Sheet 3" - } - ], - "fields": [ - { - "__typename": "DatasourceField", - "id": "05e878c2-3b10-7944-446a-09c3c958df39", - "name": "Region (People)", - "description": null, - "isHidden": true, - "folderName": null - }, - { - "__typename": "DatasourceField", - "id": "092029cd-706b-93c5-f2ea-68b020adb647", - "name": "Product ID", - "description": null, - "isHidden": true, - "folderName": null - }, - { - "__typename": "DatasourceField", - "id": "10d720d9-d4dc-f0dd-6f6d-f2078a808aed", - "name": "Profit", - "description": null, - "isHidden": false, - "folderName": null - }, - { - "__typename": "DatasourceField", - "id": "1b83e377-52f1-24f3-992b-2559e8b6ca70", - "name": "Product", - "description": null, - "isHidden": false, - "folderName": null - }, - { - "__typename": "DatasourceField", - "id": "1e420a77-19a5-c303-abbc-de977b5f4ef9", - "name": "Sub-Category", - "description": null, - "isHidden": false, - "folderName": null - }, - { - "__typename": "DatasourceField", - "id": "28ec64fc-8a21-65dd-6125-2f73fc625f26", - "name": "Row ID", - "description": null, - "isHidden": true, - "folderName": null - }, - { - "__typename": "DatasourceField", - "id": "32c2bd6f-cc3e-62e0-1e6a-f5ae480ac329", - "name": "Order ID", - "description": null, - "isHidden": false, - "folderName": null - }, - { - "__typename": "DatasourceField", - "id": "3934cbed-ff3d-de73-aefa-8bccc8bc9797", - "name": "Customer ID", - "description": null, - "isHidden": true, - "folderName": null - }, - { - "__typename": "DatasourceField", - "id": "4de34be4-76ea-7080-f0d4-7f108466015b", - "name": "Ship Mode", - "description": null, - "isHidden": false, - "folderName": null - }, - { - "__typename": "DatasourceField", - "id": "54e48e4f-5519-15c1-4a1b-97dc909899a1", - "name": "People", - "description": null, - "isHidden": false, - "folderName": null - }, - { - "__typename": "DatasourceField", - "id": "5a03c6b4-b21c-27b0-65f9-2d5ae81b5ed0", - "name": "Order ID (Returns)", - "description": null, - "isHidden": true, - "folderName": null - }, - { - "__typename": "DatasourceField", - "id": "5baa65db-612b-a18e-957f-8685b6b85571", - "name": "City", - "description": null, - "isHidden": false, - "folderName": null - }, - { - "__typename": "DatasourceField", - "id": "61b4d0d2-3b7c-a61f-e4bd-a95b6fde8478", - "name": "Sales", - "description": null, - "isHidden": false, - "folderName": null - }, - { - "__typename": "DatasourceField", - "id": "6966d863-35e8-9c0a-6094-c6d27a1fd787", - "name": "Region", - "description": null, - "isHidden": false, - "folderName": null - }, - { - "__typename": "DatasourceField", - "id": "6a7b2e6d-3484-0df3-d98e-328a111691df", - "name": "Quantity", - "description": null, - "isHidden": false, - "folderName": null - }, - { - "__typename": "DatasourceField", - "id": "7d3bd4e3-1683-7450-d55d-592e1a47a817", - "name": "Ship Date", - "description": null, - "isHidden": false, - "folderName": null - }, - { - "__typename": "DatasourceField", - "id": "839c51f8-344f-b1c0-4e3a-9d53bd2dd6bd", - "name": "Orders", - "description": null, - "isHidden": false, - "folderName": null - }, - { - "__typename": "DatasourceField", - "id": "8bd692d0-3d64-3678-8deb-a6c9469f7475", - "name": "Profit Ratio", - "description": null, - "isHidden": false, - "folderName": null - }, - { - "__typename": "DatasourceField", - "id": "9722bc5a-16be-4f16-91db-708598db866e", - "name": "Returns", - "description": null, - "isHidden": false, - "folderName": null - }, - { - "__typename": "DatasourceField", - "id": "983ea4b7-3690-1805-4a7a-a8bea49f920c", - "name": "Manufacturer", - "description": null, - "isHidden": false, - "folderName": null - }, - { - "__typename": "DatasourceField", - "id": "997587cb-024f-1a56-e37c-2fb7277642e6", - "name": "Location", - "description": null, - "isHidden": false, - "folderName": null - }, - { - "__typename": "DatasourceField", - "id": "a4c088c6-03e9-8dc3-3e69-764ab8610bf5", - "name": "Returned", - "description": null, - "isHidden": false, - "folderName": null - }, - { - "__typename": "DatasourceField", - "id": "a69ba55b-4434-6988-e276-06183ba7ee63", - "name": "Category", - "description": null, - "isHidden": false, - "folderName": null - }, - { - "__typename": "DatasourceField", - "id": "b4d8bf7b-74aa-3b34-ba07-a5947aceae44", - "name": "Regional Manager", - "description": null, - "isHidden": false, - "folderName": null - }, - { - "__typename": "DatasourceField", - "id": "bb4583d3-90db-6272-b939-22537dac2de4", - "name": "Postal Code", - "description": null, - "isHidden": false, - "folderName": null - }, - { - "__typename": "DatasourceField", - "id": "c9fdaec1-d715-bab0-a5e6-7cb2a4096d0c", - "name": "Profit (bin)", - "description": null, - "isHidden": false, - "folderName": null - }, - { - "__typename": "DatasourceField", - "id": "cbf261c1-b86b-2f51-7aa7-9ec601acdadf", - "name": "Segment", - "description": null, - "isHidden": false, - "folderName": null - }, - { - "__typename": "DatasourceField", - "id": "cc311fea-3737-9f07-b1bf-f4811309668d", - "name": "Top Customers by Profit", - "description": null, - "isHidden": false, - "folderName": null - }, - { - "__typename": "DatasourceField", - "id": "d90ed70b-2846-f23d-360c-7a72e3a8d62d", - "name": "Country/Region", - "description": null, - "isHidden": false, - "folderName": null - }, - { - "__typename": "DatasourceField", - "id": "e1906cb6-1a86-90ee-512c-c2ecf5069d96", - "name": "Discount", - "description": null, - "isHidden": false, - "folderName": null - }, - { - "__typename": "DatasourceField", - "id": "e502bf72-d0a6-80ed-eefb-47e10608a21d", - "name": "Order Date", - "description": null, - "isHidden": false, - "folderName": null - }, - { - "__typename": "DatasourceField", - "id": "ea384863-64ca-b5fa-7e15-d3273b5026e6", - "name": "Product Name", - "description": null, - "isHidden": false, - "folderName": null - }, - { - "__typename": "DatasourceField", - "id": "eaad917f-9a67-d25b-2f18-7c740e9064a7", - "name": "Customer Name", - "description": null, - "isHidden": false, - "folderName": null - }, - { - "__typename": "DatasourceField", - "id": "fd71baa7-0996-a23f-7029-3df44e89fff0", - "name": "State", - "description": null, - "isHidden": false, - "folderName": null - } - ], - "upstreamDatasources": [ - { - "id": "6cbbeeb2-9f3a-00f6-2342-17139d6e97ae", - "name": "Superstore Datasource" - } - ], - "workbook": { - "name": "Dvdrental Workbook", - "projectName": "default" - } - } - ], - "upstreamDatasources": [ - { - "id": "6cbbeeb2-9f3a-00f6-2342-17139d6e97ae", - "name": "Superstore Datasource", - "downstreamSheets": [ - { - "id": "e604255e-0573-3951-6db7-05bee48116c1", - "name": "Sheet 3" - } - ] - } - ] - }, - { - "id": "6ffa5a7f-d852-78f1-6c6d-20ac23610ebf", - "name": "Executive Dashboard", - "luid": "68ebd5b2-ecf6-4fdf-ba1a-95427baef506", - "projectName": "default", - "owner": { - "username": "jawadqu@gmail.com" - }, - "description": "", - "uri": "sites/4989/workbooks/15605", - "createdAt": "2021-12-17T19:14:10Z", - "updatedAt": "2021-12-17T19:15:02Z", - "sheets": [ - { - "id": "20fc5eb7-81eb-aa18-8c39-af501c62d085", - "name": "Opened Requests", - "path": "", - "createdAt": "2021-12-17T19:14:10Z", - "updatedAt": "2021-12-17T19:15:02Z", - "tags": [], - "containedInDashboards": [ - { - "name": "Executive Dashboard", - "path": "ExecutiveDashboard/ExecutiveDashboard" - } - ], - "datasourceFields": [ - { - "__typename": "ColumnField", - "id": "04dc385d-8417-aa5f-3f4c-27c4333fdb5e", - "name": "Opened", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "06c3e060-8133-4b58-9b53-a0fced25e056", - "name": "Requests" - }, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "13b03dc6-0c35-2d6c-309b-4e38cf5f9ec0", - "name": "Total # Request", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "06c3e060-8133-4b58-9b53-a0fced25e056", - "name": "Requests" - }, - "role": "MEASURE", - "dataType": "INTEGER", - "aggregation": "Attribute", - "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])}" - }, - { - "__typename": "ColumnField", - "id": "23e08774-36b9-497e-3d14-df6cb90499d9", - "name": "Due date", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "06c3e060-8133-4b58-9b53-a0fced25e056", - "name": "Requests" - }, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "2faad672-a1ff-95d1-67c9-2fd6bda9e8b9", - "name": "Priority", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": "Sum" - }, - { - "__typename": "ColumnField", - "id": "4f4cb0a0-d290-f269-6306-ffbda0b59bb9", - "name": "Priority", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "06c3e060-8133-4b58-9b53-a0fced25e056", - "name": "Requests" - }, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": "Sum" - }, - { - "__typename": "CalculatedField", - "id": "53de3015-a2ef-299d-a778-77b2669cee6f", - "name": "Overdue", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "06c3e060-8133-4b58-9b53-a0fced25e056", - "name": "Requests" - }, - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null, - "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" - }, - { - "__typename": "ColumnField", - "id": "848b5022-e769-97ac-34ab-4855920f60f6", - "name": "Active", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "06c3e060-8133-4b58-9b53-a0fced25e056", - "name": "Requests" - }, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "BOOLEAN", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "a1a22d48-f456-97d0-c098-5fd70f09ff7f", - "name": "Opened", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "a322b8b0-c401-86a0-a5d8-2aea35da11d1", - "name": "Current Year Total Cases", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "06c3e060-8133-4b58-9b53-a0fced25e056", - "name": "Requests" - }, - "role": "MEASURE", - "dataType": "INTEGER", - "aggregation": "Attribute", - "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}" - }, - { - "__typename": "CalculatedField", - "id": "a88003b6-66c0-f362-a977-2d5d9c6dd3db", - "name": "Max Year?", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "06c3e060-8133-4b58-9b53-a0fced25e056", - "name": "Requests" - }, - "role": "DIMENSION", - "dataType": "BOOLEAN", - "aggregation": null, - "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])})" - }, - { - "__typename": "ColumnField", - "id": "ebd98cba-b969-ab25-a1ec-f9e699259ea5", - "name": "Active", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "BOOLEAN", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "ef6b51a9-6347-ed97-5baf-c6c53baa4751", - "name": "Total Active Requests", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "06c3e060-8133-4b58-9b53-a0fced25e056", - "name": "Requests" - }, - "role": "MEASURE", - "dataType": "INTEGER", - "aggregation": "Attribute", - "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}" - }, - { - "__typename": "ColumnField", - "id": "f3d4aefe-efef-0eef-f741-12b236720626", - "name": "Number", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "06c3e060-8133-4b58-9b53-a0fced25e056", - "name": "Requests" - }, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "f4555797-f26b-ec4c-1234-3c46a142fb30", - "name": "Closed", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "06c3e060-8133-4b58-9b53-a0fced25e056", - "name": "Requests" - }, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": null - } - ] - }, - { - "id": "2b5351c1-535d-4a4a-1339-c51ddd6abf8a", - "name": "Top 10 Items by Requests and YoY Change", - "path": "", - "createdAt": "2021-12-17T19:14:10Z", - "updatedAt": "2021-12-17T19:15:02Z", - "tags": [], - "containedInDashboards": [ - { - "name": "Executive Dashboard", - "path": "ExecutiveDashboard/ExecutiveDashboard" - } - ], - "datasourceFields": [ - { - "__typename": "ColumnField", - "id": "04dc385d-8417-aa5f-3f4c-27c4333fdb5e", - "name": "Opened", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "06c3e060-8133-4b58-9b53-a0fced25e056", - "name": "Requests" - }, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "23e08774-36b9-497e-3d14-df6cb90499d9", - "name": "Due date", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "06c3e060-8133-4b58-9b53-a0fced25e056", - "name": "Requests" - }, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "2faad672-a1ff-95d1-67c9-2fd6bda9e8b9", - "name": "Priority", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": "Sum" - }, - { - "__typename": "ColumnField", - "id": "4255ae77-005b-f589-9ccd-19665baa8e58", - "name": "Name", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "06c3e060-8133-4b58-9b53-a0fced25e056", - "name": "Requests" - }, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "4f4cb0a0-d290-f269-6306-ffbda0b59bb9", - "name": "Priority", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "06c3e060-8133-4b58-9b53-a0fced25e056", - "name": "Requests" - }, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": "Sum" - }, - { - "__typename": "CalculatedField", - "id": "53de3015-a2ef-299d-a778-77b2669cee6f", - "name": "Overdue", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "06c3e060-8133-4b58-9b53-a0fced25e056", - "name": "Requests" - }, - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null, - "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" - }, - { - "__typename": "ColumnField", - "id": "848b5022-e769-97ac-34ab-4855920f60f6", - "name": "Active", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "06c3e060-8133-4b58-9b53-a0fced25e056", - "name": "Requests" - }, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "BOOLEAN", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "a1a22d48-f456-97d0-c098-5fd70f09ff7f", - "name": "Opened", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "a322b8b0-c401-86a0-a5d8-2aea35da11d1", - "name": "Current Year Total Cases", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "06c3e060-8133-4b58-9b53-a0fced25e056", - "name": "Requests" - }, - "role": "MEASURE", - "dataType": "INTEGER", - "aggregation": "Attribute", - "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}" - }, - { - "__typename": "CalculatedField", - "id": "a88003b6-66c0-f362-a977-2d5d9c6dd3db", - "name": "Max Year?", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "06c3e060-8133-4b58-9b53-a0fced25e056", - "name": "Requests" - }, - "role": "DIMENSION", - "dataType": "BOOLEAN", - "aggregation": null, - "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])})" - }, - { - "__typename": "ColumnField", - "id": "ebd98cba-b969-ab25-a1ec-f9e699259ea5", - "name": "Active", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "BOOLEAN", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "f3d4aefe-efef-0eef-f741-12b236720626", - "name": "Number", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "06c3e060-8133-4b58-9b53-a0fced25e056", - "name": "Requests" - }, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "f4555797-f26b-ec4c-1234-3c46a142fb30", - "name": "Closed", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "06c3e060-8133-4b58-9b53-a0fced25e056", - "name": "Requests" - }, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": null - } - ] - }, - { - "id": "2b73b9dd-4ec7-75ca-f2e9-fa1984ca8b72", - "name": "Opened Problems", - "path": "", - "createdAt": "2021-12-17T19:14:10Z", - "updatedAt": "2021-12-17T19:15:02Z", - "tags": [], - "containedInDashboards": [ - { - "name": "Executive Dashboard", - "path": "ExecutiveDashboard/ExecutiveDashboard" - } - ], - "datasourceFields": [ - { - "__typename": "CalculatedField", - "id": "1b0ade5c-b27a-37c9-3777-5f1b10db972e", - "name": "Overdue", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", - "name": "Problems" - }, - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null, - "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}" - }, - { - "__typename": "ColumnField", - "id": "204940b8-ad53-93bc-7f4e-0c49a1ced7c8", - "name": "Number", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", - "name": "Problems" - }, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "2faad672-a1ff-95d1-67c9-2fd6bda9e8b9", - "name": "Priority", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": "Sum" - }, - { - "__typename": "ColumnField", - "id": "3a946020-200f-ef9c-3ffb-dc3d1d7f8d83", - "name": "Due date", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", - "name": "Problems" - }, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "6815a7f2-82b4-4b5f-7212-20c3894eeb0e", - "name": "Total # Problems", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", - "name": "Problems" - }, - "role": "MEASURE", - "dataType": "INTEGER", - "aggregation": "Attribute", - "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])}" - }, - { - "__typename": "ColumnField", - "id": "a1a22d48-f456-97d0-c098-5fd70f09ff7f", - "name": "Opened", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "ab2aa63d-c73a-9cf9-9a54-9d469d47e890", - "name": "Opened", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", - "name": "Problems" - }, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "c64607f1-c00a-88b8-b4ea-4018f7dff6f0", - "name": "Max Year?", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", - "name": "Problems" - }, - "role": "DIMENSION", - "dataType": "BOOLEAN", - "aggregation": null, - "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])})" - }, - { - "__typename": "ColumnField", - "id": "cffb2549-3525-3117-9d65-855e28d41fdd", - "name": "Priority", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", - "name": "Problems" - }, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": "Sum" - }, - { - "__typename": "ColumnField", - "id": "de60a6dd-ae9a-3b7c-edf8-d24f5f53fa89", - "name": "Closed", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", - "name": "Problems" - }, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "ebd98cba-b969-ab25-a1ec-f9e699259ea5", - "name": "Active", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "BOOLEAN", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "ec9379d0-f48b-577e-2314-6288c3f4a3a0", - "name": "Current Year Total Cases", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", - "name": "Problems" - }, - "role": "MEASURE", - "dataType": "INTEGER", - "aggregation": "Attribute", - "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}" - }, - { - "__typename": "CalculatedField", - "id": "fed69289-f04f-e280-fdd5-719cf043ff35", - "name": "Total Active Problems", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", - "name": "Problems" - }, - "role": "MEASURE", - "dataType": "INTEGER", - "aggregation": "Attribute", - "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}" - }, - { - "__typename": "ColumnField", - "id": "ff4371e0-3575-3686-23d1-4d035db44f33", - "name": "Active", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", - "name": "Problems" - }, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "BOOLEAN", - "aggregation": null - } - ] - }, - { - "id": "373c6466-bb0c-b319-8752-632456349261", - "name": "Overdue", - "path": "", - "createdAt": "2021-12-17T19:14:10Z", - "updatedAt": "2021-12-17T19:15:02Z", - "tags": [], - "containedInDashboards": [ - { - "name": "Executive Dashboard", - "path": "ExecutiveDashboard/ExecutiveDashboard" - } - ], - "datasourceFields": [ - { - "__typename": "CalculatedField", - "id": "2a948342-1daf-ac2f-33d3-329e2ca25e34", - "name": "% of Overdue", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "role": "MEASURE", - "dataType": "REAL", - "aggregation": null, - "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])})" - }, - { - "__typename": "ColumnField", - "id": "2faad672-a1ff-95d1-67c9-2fd6bda9e8b9", - "name": "Priority", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": "Sum" - }, - { - "__typename": "ColumnField", - "id": "5dbafcd1-d8d2-68cc-fde3-20e8c7b26ff8", - "name": "Category (Incident)", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "636235a9-4709-04e1-eef2-67ac7c194eb4", - "name": "Overdue", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null, - "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}" - }, - { - "__typename": "ColumnField", - "id": "9d228629-7bd0-42df-3b44-b7900f4c1e48", - "name": "Number", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "a1a22d48-f456-97d0-c098-5fd70f09ff7f", - "name": "Opened", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "ad2cbb7c-aaad-12d3-36ef-179ff1cfa1ff", - "name": "Max Year?", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "role": "DIMENSION", - "dataType": "BOOLEAN", - "aggregation": null, - "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])})" - }, - { - "__typename": "ColumnField", - "id": "dc36513d-648a-03f4-6983-d60b911212ea", - "name": "Due date", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "ebd98cba-b969-ab25-a1ec-f9e699259ea5", - "name": "Active", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "BOOLEAN", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "f59d94c1-f580-0384-8272-ac4be3edd163", - "name": "Closed", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": null - } - ] - }, - { - "id": "53b8dc2f-8ada-51f7-7422-fe82e9b803cc", - "name": "High and Critical Priority Problems", - "path": "", - "createdAt": "2021-12-17T19:14:10Z", - "updatedAt": "2021-12-17T19:15:02Z", - "tags": [], - "containedInDashboards": [ - { - "name": "Executive Dashboard", - "path": "ExecutiveDashboard/ExecutiveDashboard" - } - ], - "datasourceFields": [ - { - "__typename": "ColumnField", - "id": "204940b8-ad53-93bc-7f4e-0c49a1ced7c8", - "name": "Number", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", - "name": "Problems" - }, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "2faad672-a1ff-95d1-67c9-2fd6bda9e8b9", - "name": "Priority", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": "Sum" - }, - { - "__typename": "ColumnField", - "id": "a1a22d48-f456-97d0-c098-5fd70f09ff7f", - "name": "Opened", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "ab2aa63d-c73a-9cf9-9a54-9d469d47e890", - "name": "Opened", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", - "name": "Problems" - }, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "c64607f1-c00a-88b8-b4ea-4018f7dff6f0", - "name": "Max Year?", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", - "name": "Problems" - }, - "role": "DIMENSION", - "dataType": "BOOLEAN", - "aggregation": null, - "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])})" - }, - { - "__typename": "ColumnField", - "id": "cffb2549-3525-3117-9d65-855e28d41fdd", - "name": "Priority", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", - "name": "Problems" - }, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": "Sum" - }, - { - "__typename": "CalculatedField", - "id": "de196a57-20e2-9501-3d72-f8e2681266c8", - "name": "% of critical and high priority", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", - "name": "Problems" - }, - "role": "MEASURE", - "dataType": "REAL", - "aggregation": null, - "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])" - }, - { - "__typename": "ColumnField", - "id": "ebd98cba-b969-ab25-a1ec-f9e699259ea5", - "name": "Active", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "BOOLEAN", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "ff4371e0-3575-3686-23d1-4d035db44f33", - "name": "Active", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", - "name": "Problems" - }, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "BOOLEAN", - "aggregation": null - } - ] - }, - { - "id": "58af9ecf-b839-da50-65e1-2e1fa20e3362", - "name": "Total Incidents by Category and YoY Change", - "path": "", - "createdAt": "2021-12-17T19:14:10Z", - "updatedAt": "2021-12-17T19:15:02Z", - "tags": [], - "containedInDashboards": [ - { - "name": "Executive Dashboard", - "path": "ExecutiveDashboard/ExecutiveDashboard" - } - ], - "datasourceFields": [ - { - "__typename": "ColumnField", - "id": "2faad672-a1ff-95d1-67c9-2fd6bda9e8b9", - "name": "Priority", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": "Sum" - }, - { - "__typename": "CalculatedField", - "id": "3ac8f5aa-1260-dabf-c762-3ba52fdfc2c0", - "name": "Current Year Total Cases", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "role": "MEASURE", - "dataType": "INTEGER", - "aggregation": "Attribute", - "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}" - }, - { - "__typename": "ColumnField", - "id": "5dbafcd1-d8d2-68cc-fde3-20e8c7b26ff8", - "name": "Category (Incident)", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "636235a9-4709-04e1-eef2-67ac7c194eb4", - "name": "Overdue", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null, - "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}" - }, - { - "__typename": "ColumnField", - "id": "9d228629-7bd0-42df-3b44-b7900f4c1e48", - "name": "Number", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "a1a22d48-f456-97d0-c098-5fd70f09ff7f", - "name": "Opened", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "ad2cbb7c-aaad-12d3-36ef-179ff1cfa1ff", - "name": "Max Year?", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "role": "DIMENSION", - "dataType": "BOOLEAN", - "aggregation": null, - "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])})" - }, - { - "__typename": "ColumnField", - "id": "dc36513d-648a-03f4-6983-d60b911212ea", - "name": "Due date", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "ebd98cba-b969-ab25-a1ec-f9e699259ea5", - "name": "Active", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "BOOLEAN", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "f59d94c1-f580-0384-8272-ac4be3edd163", - "name": "Closed", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": null - } - ] - }, - { - "id": "618b3e76-75c1-cb31-0c61-3f4890b72c31", - "name": "Known Errors", - "path": "", - "createdAt": "2021-12-17T19:14:10Z", - "updatedAt": "2021-12-17T19:15:02Z", - "tags": [], - "containedInDashboards": [ - { - "name": "Executive Dashboard", - "path": "ExecutiveDashboard/ExecutiveDashboard" - } - ], - "datasourceFields": [ - { - "__typename": "ColumnField", - "id": "204940b8-ad53-93bc-7f4e-0c49a1ced7c8", - "name": "Number", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", - "name": "Problems" - }, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "2faad672-a1ff-95d1-67c9-2fd6bda9e8b9", - "name": "Priority", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": "Sum" - }, - { - "__typename": "CalculatedField", - "id": "90ef2358-7bd1-5aaa-0df1-76dabec7a66a", - "name": "Problems with Related Incidents", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", - "name": "Problems" - }, - "role": "MEASURE", - "dataType": "INTEGER", - "aggregation": null, - "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)" - }, - { - "__typename": "ColumnField", - "id": "94caead7-f1f1-ddd5-0887-42812ab147a2", - "name": "Related Incidents", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", - "name": "Problems" - }, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "a1a22d48-f456-97d0-c098-5fd70f09ff7f", - "name": "Opened", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "ab2aa63d-c73a-9cf9-9a54-9d469d47e890", - "name": "Opened", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", - "name": "Problems" - }, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "b34308cc-f30c-a5bb-52b9-78c00f2f461c", - "name": "% of known error", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", - "name": "Problems" - }, - "role": "MEASURE", - "dataType": "REAL", - "aggregation": null, - "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])" - }, - { - "__typename": "CalculatedField", - "id": "c64607f1-c00a-88b8-b4ea-4018f7dff6f0", - "name": "Max Year?", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", - "name": "Problems" - }, - "role": "DIMENSION", - "dataType": "BOOLEAN", - "aggregation": null, - "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])})" - }, - { - "__typename": "ColumnField", - "id": "cf7efd6f-3e9d-0bf4-b96d-4404194690e6", - "name": "Known error", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", - "name": "Problems" - }, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "BOOLEAN", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "cffb2549-3525-3117-9d65-855e28d41fdd", - "name": "Priority", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", - "name": "Problems" - }, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": "Sum" - }, - { - "__typename": "ColumnField", - "id": "ebd98cba-b969-ab25-a1ec-f9e699259ea5", - "name": "Active", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "BOOLEAN", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "ff4371e0-3575-3686-23d1-4d035db44f33", - "name": "Active", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", - "name": "Problems" - }, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "BOOLEAN", - "aggregation": null - } - ] - }, - { - "id": "721c3c41-7a2b-16a8-3281-6f948a44be96", - "name": "Overdue Requests", - "path": "", - "createdAt": "2021-12-17T19:14:10Z", - "updatedAt": "2021-12-17T19:15:02Z", - "tags": [], - "containedInDashboards": [ - { - "name": "Executive Dashboard", - "path": "ExecutiveDashboard/ExecutiveDashboard" - } - ], - "datasourceFields": [ - { - "__typename": "ColumnField", - "id": "04dc385d-8417-aa5f-3f4c-27c4333fdb5e", - "name": "Opened", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "06c3e060-8133-4b58-9b53-a0fced25e056", - "name": "Requests" - }, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "23e08774-36b9-497e-3d14-df6cb90499d9", - "name": "Due date", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "06c3e060-8133-4b58-9b53-a0fced25e056", - "name": "Requests" - }, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "2faad672-a1ff-95d1-67c9-2fd6bda9e8b9", - "name": "Priority", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": "Sum" - }, - { - "__typename": "ColumnField", - "id": "4f4cb0a0-d290-f269-6306-ffbda0b59bb9", - "name": "Priority", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "06c3e060-8133-4b58-9b53-a0fced25e056", - "name": "Requests" - }, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": "Sum" - }, - { - "__typename": "CalculatedField", - "id": "53de3015-a2ef-299d-a778-77b2669cee6f", - "name": "Overdue", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "06c3e060-8133-4b58-9b53-a0fced25e056", - "name": "Requests" - }, - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null, - "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" - }, - { - "__typename": "ColumnField", - "id": "848b5022-e769-97ac-34ab-4855920f60f6", - "name": "Active", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "06c3e060-8133-4b58-9b53-a0fced25e056", - "name": "Requests" - }, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "BOOLEAN", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "a1a22d48-f456-97d0-c098-5fd70f09ff7f", - "name": "Opened", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "cbbdf8b2-2491-2228-b0ec-cf1bfe6ec52c", - "name": "% of Overdue", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "06c3e060-8133-4b58-9b53-a0fced25e056", - "name": "Requests" - }, - "role": "MEASURE", - "dataType": "REAL", - "aggregation": null, - "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])})" - }, - { - "__typename": "ColumnField", - "id": "ebd98cba-b969-ab25-a1ec-f9e699259ea5", - "name": "Active", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "BOOLEAN", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "f3d4aefe-efef-0eef-f741-12b236720626", - "name": "Number", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "06c3e060-8133-4b58-9b53-a0fced25e056", - "name": "Requests" - }, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "f4555797-f26b-ec4c-1234-3c46a142fb30", - "name": "Closed", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "06c3e060-8133-4b58-9b53-a0fced25e056", - "name": "Requests" - }, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": null - } - ] - }, - { - "id": "7ef184c1-5a41-5ec8-723e-ae44c20aa335", - "name": "AVG Time to Solve an Incident", - "path": "", - "createdAt": "2021-12-17T19:14:10Z", - "updatedAt": "2021-12-17T19:15:02Z", - "tags": [], - "containedInDashboards": [ - { - "name": "Executive Dashboard", - "path": "ExecutiveDashboard/ExecutiveDashboard" - } - ], - "datasourceFields": [ - { - "__typename": "ColumnField", - "id": "2faad672-a1ff-95d1-67c9-2fd6bda9e8b9", - "name": "Priority", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": "Sum" - }, - { - "__typename": "ColumnField", - "id": "5dbafcd1-d8d2-68cc-fde3-20e8c7b26ff8", - "name": "Category (Incident)", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "8aef8cdb-0381-40e2-4efc-bb6a67c45652", - "name": "Time to Close an Incident (seconds)", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "role": "MEASURE", - "dataType": "INTEGER", - "aggregation": null, - "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" - }, - { - "__typename": "ColumnField", - "id": "a1a22d48-f456-97d0-c098-5fd70f09ff7f", - "name": "Opened", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "ad2cbb7c-aaad-12d3-36ef-179ff1cfa1ff", - "name": "Max Year?", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "role": "DIMENSION", - "dataType": "BOOLEAN", - "aggregation": null, - "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])})" - }, - { - "__typename": "ColumnField", - "id": "ebd98cba-b969-ab25-a1ec-f9e699259ea5", - "name": "Active", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "BOOLEAN", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "f59d94c1-f580-0384-8272-ac4be3edd163", - "name": "Closed", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "ff51c0e0-4b09-ab90-9dca-6b7c9de8f135", - "name": "Time to Close an Incident", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "role": "MEASURE", - "dataType": "STRING", - "aggregation": null, - "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))" - } - ] - }, - { - "id": "7fbc77ba-0ab6-3727-0db3-d8402a804da5", - "name": "Made SLA?", - "path": "", - "createdAt": "2021-12-17T19:14:10Z", - "updatedAt": "2021-12-17T19:15:02Z", - "tags": [], - "containedInDashboards": [ - { - "name": "Executive Dashboard", - "path": "ExecutiveDashboard/ExecutiveDashboard" - } - ], - "datasourceFields": [ - { - "__typename": "ColumnField", - "id": "04dc385d-8417-aa5f-3f4c-27c4333fdb5e", - "name": "Opened", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "06c3e060-8133-4b58-9b53-a0fced25e056", - "name": "Requests" - }, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "0a972b7c-d9f9-9f60-4777-73d4c2edce73", - "name": "% made SLA", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "06c3e060-8133-4b58-9b53-a0fced25e056", - "name": "Requests" - }, - "role": "MEASURE", - "dataType": "REAL", - "aggregation": null, - "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])" - }, - { - "__typename": "ColumnField", - "id": "2faad672-a1ff-95d1-67c9-2fd6bda9e8b9", - "name": "Priority", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": "Sum" - }, - { - "__typename": "ColumnField", - "id": "4f4cb0a0-d290-f269-6306-ffbda0b59bb9", - "name": "Priority", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "06c3e060-8133-4b58-9b53-a0fced25e056", - "name": "Requests" - }, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": "Sum" - }, - { - "__typename": "ColumnField", - "id": "848b5022-e769-97ac-34ab-4855920f60f6", - "name": "Active", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "06c3e060-8133-4b58-9b53-a0fced25e056", - "name": "Requests" - }, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "BOOLEAN", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "a1a22d48-f456-97d0-c098-5fd70f09ff7f", - "name": "Opened", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "b0590acf-db66-2aaf-1138-e6d56c9e2a97", - "name": "Made SLA", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "06c3e060-8133-4b58-9b53-a0fced25e056", - "name": "Requests" - }, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "BOOLEAN", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "ebd98cba-b969-ab25-a1ec-f9e699259ea5", - "name": "Active", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "BOOLEAN", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "f3d4aefe-efef-0eef-f741-12b236720626", - "name": "Number", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "06c3e060-8133-4b58-9b53-a0fced25e056", - "name": "Requests" - }, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - } - ] - }, - { - "id": "8385ea9a-0749-754f-7ad9-824433de2120", - "name": "Tooltip - Incident Breakdown by Priority", - "path": "ExecutiveDashboard/Tooltip-IncidentBreakdownbyPriority", - "createdAt": "2021-12-17T19:14:10Z", - "updatedAt": "2021-12-17T19:15:02Z", - "tags": [], - "containedInDashboards": [], - "datasourceFields": [ - { - "__typename": "ColumnField", - "id": "2faad672-a1ff-95d1-67c9-2fd6bda9e8b9", - "name": "Priority", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": "Sum" - }, - { - "__typename": "ColumnField", - "id": "9d228629-7bd0-42df-3b44-b7900f4c1e48", - "name": "Number", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "a1a22d48-f456-97d0-c098-5fd70f09ff7f", - "name": "Opened", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "ad2cbb7c-aaad-12d3-36ef-179ff1cfa1ff", - "name": "Max Year?", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "role": "DIMENSION", - "dataType": "BOOLEAN", - "aggregation": null, - "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])})" - }, - { - "__typename": "ColumnField", - "id": "ebd98cba-b969-ab25-a1ec-f9e699259ea5", - "name": "Active", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "BOOLEAN", - "aggregation": null - } - ] - }, - { - "id": "b207c2f2-b675-32e3-2663-17bb836a018b", - "name": "Overdue Problems", - "path": "", - "createdAt": "2021-12-17T19:14:10Z", - "updatedAt": "2021-12-17T19:15:02Z", - "tags": [], - "containedInDashboards": [ - { - "name": "Executive Dashboard", - "path": "ExecutiveDashboard/ExecutiveDashboard" - } - ], - "datasourceFields": [ - { - "__typename": "CalculatedField", - "id": "1b0ade5c-b27a-37c9-3777-5f1b10db972e", - "name": "Overdue", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", - "name": "Problems" - }, - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null, - "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}" - }, - { - "__typename": "ColumnField", - "id": "204940b8-ad53-93bc-7f4e-0c49a1ced7c8", - "name": "Number", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", - "name": "Problems" - }, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "2faad672-a1ff-95d1-67c9-2fd6bda9e8b9", - "name": "Priority", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": "Sum" - }, - { - "__typename": "ColumnField", - "id": "3a946020-200f-ef9c-3ffb-dc3d1d7f8d83", - "name": "Due date", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", - "name": "Problems" - }, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "545b9d43-eae2-8cbc-99d0-27058e192e95", - "name": "% of Overdue", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", - "name": "Problems" - }, - "role": "MEASURE", - "dataType": "REAL", - "aggregation": null, - "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])})" - }, - { - "__typename": "ColumnField", - "id": "a1a22d48-f456-97d0-c098-5fd70f09ff7f", - "name": "Opened", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "ab2aa63d-c73a-9cf9-9a54-9d469d47e890", - "name": "Opened", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", - "name": "Problems" - }, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "c64607f1-c00a-88b8-b4ea-4018f7dff6f0", - "name": "Max Year?", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", - "name": "Problems" - }, - "role": "DIMENSION", - "dataType": "BOOLEAN", - "aggregation": null, - "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])})" - }, - { - "__typename": "ColumnField", - "id": "cffb2549-3525-3117-9d65-855e28d41fdd", - "name": "Priority", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", - "name": "Problems" - }, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": "Sum" - }, - { - "__typename": "ColumnField", - "id": "de60a6dd-ae9a-3b7c-edf8-d24f5f53fa89", - "name": "Closed", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", - "name": "Problems" - }, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "ebd98cba-b969-ab25-a1ec-f9e699259ea5", - "name": "Active", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "BOOLEAN", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "ff4371e0-3575-3686-23d1-4d035db44f33", - "name": "Active", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", - "name": "Problems" - }, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "BOOLEAN", - "aggregation": null - } - ] - }, - { - "id": "b679da5e-7d03-f01e-b2ea-01fb3c1926dc", - "name": "Tooltip - Problem Breakdown by Priority", - "path": "ExecutiveDashboard/Tooltip-ProblemBreakdownbyPriority", - "createdAt": "2021-12-17T19:14:10Z", - "updatedAt": "2021-12-17T19:15:02Z", - "tags": [], - "containedInDashboards": [], - "datasourceFields": [ - { - "__typename": "ColumnField", - "id": "204940b8-ad53-93bc-7f4e-0c49a1ced7c8", - "name": "Number", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", - "name": "Problems" - }, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "2faad672-a1ff-95d1-67c9-2fd6bda9e8b9", - "name": "Priority", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": "Sum" - }, - { - "__typename": "ColumnField", - "id": "a1a22d48-f456-97d0-c098-5fd70f09ff7f", - "name": "Opened", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "ab2aa63d-c73a-9cf9-9a54-9d469d47e890", - "name": "Opened", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", - "name": "Problems" - }, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "c64607f1-c00a-88b8-b4ea-4018f7dff6f0", - "name": "Max Year?", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", - "name": "Problems" - }, - "role": "DIMENSION", - "dataType": "BOOLEAN", - "aggregation": null, - "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])})" - }, - { - "__typename": "ColumnField", - "id": "cffb2549-3525-3117-9d65-855e28d41fdd", - "name": "Priority", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", - "name": "Problems" - }, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": "Sum" - }, - { - "__typename": "ColumnField", - "id": "ebd98cba-b969-ab25-a1ec-f9e699259ea5", - "name": "Active", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "BOOLEAN", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "ff4371e0-3575-3686-23d1-4d035db44f33", - "name": "Active", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", - "name": "Problems" - }, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "BOOLEAN", - "aggregation": null - } - ] - }, - { - "id": "c14973c2-e1c3-563a-a9c1-8a408396d22a", - "name": "Tooltip - Request Breakdown by Priority", - "path": "ExecutiveDashboard/Tooltip-RequestBreakdownbyPriority", - "createdAt": "2021-12-17T19:14:10Z", - "updatedAt": "2021-12-17T19:15:02Z", - "tags": [], - "containedInDashboards": [], - "datasourceFields": [ - { - "__typename": "ColumnField", - "id": "04dc385d-8417-aa5f-3f4c-27c4333fdb5e", - "name": "Opened", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "06c3e060-8133-4b58-9b53-a0fced25e056", - "name": "Requests" - }, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "2faad672-a1ff-95d1-67c9-2fd6bda9e8b9", - "name": "Priority", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": "Sum" - }, - { - "__typename": "ColumnField", - "id": "4f4cb0a0-d290-f269-6306-ffbda0b59bb9", - "name": "Priority", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "06c3e060-8133-4b58-9b53-a0fced25e056", - "name": "Requests" - }, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": "Sum" - }, - { - "__typename": "ColumnField", - "id": "848b5022-e769-97ac-34ab-4855920f60f6", - "name": "Active", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "06c3e060-8133-4b58-9b53-a0fced25e056", - "name": "Requests" - }, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "BOOLEAN", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "a1a22d48-f456-97d0-c098-5fd70f09ff7f", - "name": "Opened", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "a88003b6-66c0-f362-a977-2d5d9c6dd3db", - "name": "Max Year?", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "06c3e060-8133-4b58-9b53-a0fced25e056", - "name": "Requests" - }, - "role": "DIMENSION", - "dataType": "BOOLEAN", - "aggregation": null, - "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])})" - }, - { - "__typename": "CalculatedField", - "id": "ad2cbb7c-aaad-12d3-36ef-179ff1cfa1ff", - "name": "Max Year?", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "role": "DIMENSION", - "dataType": "BOOLEAN", - "aggregation": null, - "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])})" - }, - { - "__typename": "ColumnField", - "id": "ebd98cba-b969-ab25-a1ec-f9e699259ea5", - "name": "Active", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "BOOLEAN", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "f3d4aefe-efef-0eef-f741-12b236720626", - "name": "Number", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "06c3e060-8133-4b58-9b53-a0fced25e056", - "name": "Requests" - }, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - } - ] - }, - { - "id": "e70a540d-55ed-b9cc-5a3c-01ebe81a1274", - "name": "Age of Active Problems", - "path": "", - "createdAt": "2021-12-17T19:14:10Z", - "updatedAt": "2021-12-17T19:15:02Z", - "tags": [], - "containedInDashboards": [ - { - "name": "Executive Dashboard", - "path": "ExecutiveDashboard/ExecutiveDashboard" - } - ], - "datasourceFields": [ - { - "__typename": "ColumnField", - "id": "204940b8-ad53-93bc-7f4e-0c49a1ced7c8", - "name": "Number", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", - "name": "Problems" - }, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "2faad672-a1ff-95d1-67c9-2fd6bda9e8b9", - "name": "Priority", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": "Sum" - }, - { - "__typename": "CalculatedField", - "id": "3ca79cbf-1f11-1c6b-8cff-8809fb78847d", - "name": "Time Span Breakdown", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", - "name": "Problems" - }, - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null, - "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" - }, - { - "__typename": "ColumnField", - "id": "a1a22d48-f456-97d0-c098-5fd70f09ff7f", - "name": "Opened", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "ab2aa63d-c73a-9cf9-9a54-9d469d47e890", - "name": "Opened", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", - "name": "Problems" - }, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "c64607f1-c00a-88b8-b4ea-4018f7dff6f0", - "name": "Max Year?", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", - "name": "Problems" - }, - "role": "DIMENSION", - "dataType": "BOOLEAN", - "aggregation": null, - "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])})" - }, - { - "__typename": "CalculatedField", - "id": "cff99350-e836-7226-8050-3163d587b479", - "name": "Age of Problems", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", - "name": "Problems" - }, - "role": "MEASURE", - "dataType": "INTEGER", - "aggregation": null, - "formula": "//Calculates the age of active problems since opened until now\r\n\r\nDATEDIFF('second', [Opened], NOW())" - }, - { - "__typename": "ColumnField", - "id": "cffb2549-3525-3117-9d65-855e28d41fdd", - "name": "Priority", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", - "name": "Problems" - }, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": "Sum" - }, - { - "__typename": "ColumnField", - "id": "ebd98cba-b969-ab25-a1ec-f9e699259ea5", - "name": "Active", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "BOOLEAN", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "ff4371e0-3575-3686-23d1-4d035db44f33", - "name": "Active", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", - "name": "Problems" - }, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "BOOLEAN", - "aggregation": null - } - ] - }, - { - "id": "f76d3570-23b8-f74b-d85c-cc5484c2079c", - "name": "Opened Incidents", - "path": "", - "createdAt": "2021-12-17T19:14:10Z", - "updatedAt": "2021-12-17T19:15:02Z", - "tags": [], - "containedInDashboards": [ - { - "name": "Executive Dashboard", - "path": "ExecutiveDashboard/ExecutiveDashboard" - } - ], - "datasourceFields": [ - { - "__typename": "ColumnField", - "id": "2faad672-a1ff-95d1-67c9-2fd6bda9e8b9", - "name": "Priority", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "aggregation": "Sum" - }, - { - "__typename": "CalculatedField", - "id": "3ac8f5aa-1260-dabf-c762-3ba52fdfc2c0", - "name": "Current Year Total Cases", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "role": "MEASURE", - "dataType": "INTEGER", - "aggregation": "Attribute", - "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}" - }, - { - "__typename": "ColumnField", - "id": "5dbafcd1-d8d2-68cc-fde3-20e8c7b26ff8", - "name": "Category (Incident)", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "636235a9-4709-04e1-eef2-67ac7c194eb4", - "name": "Overdue", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null, - "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}" - }, - { - "__typename": "CalculatedField", - "id": "9b35c0be-0f76-63a1-445d-9872a1465154", - "name": "Total Active Incidents", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "role": "MEASURE", - "dataType": "INTEGER", - "aggregation": "Attribute", - "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}" - }, - { - "__typename": "ColumnField", - "id": "9d228629-7bd0-42df-3b44-b7900f4c1e48", - "name": "Number", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "a1a22d48-f456-97d0-c098-5fd70f09ff7f", - "name": "Opened", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": null - }, - { - "__typename": "CalculatedField", - "id": "ad2cbb7c-aaad-12d3-36ef-179ff1cfa1ff", - "name": "Max Year?", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "role": "DIMENSION", - "dataType": "BOOLEAN", - "aggregation": null, - "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])})" - }, - { - "__typename": "CalculatedField", - "id": "d2678e95-9a3b-ae61-a30e-a4fc3ce9985d", - "name": "Opened Month Tooltip", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "role": "DIMENSION", - "dataType": "STRING", - "aggregation": null, - "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" - }, - { - "__typename": "ColumnField", - "id": "dc36513d-648a-03f4-6983-d60b911212ea", - "name": "Due date", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "ebd98cba-b969-ab25-a1ec-f9e699259ea5", - "name": "Active", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "BOOLEAN", - "aggregation": null - }, - { - "__typename": "ColumnField", - "id": "f59d94c1-f580-0384-8272-ac4be3edd163", - "name": "Closed", - "description": null, - "datasource": { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents" - }, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "aggregation": null - } - ] - } - ], - "dashboards": [ - { - "id": "5dcaaf46-e6fb-2548-e763-272a7ab2c9b1", - "name": "Executive Dashboard", - "path": "ExecutiveDashboard/ExecutiveDashboard", - "createdAt": "2021-12-17T19:14:10Z", - "updatedAt": "2021-12-17T19:15:02Z", - "sheets": [ - { - "id": "20fc5eb7-81eb-aa18-8c39-af501c62d085", - "name": "Opened Requests" - }, - { - "id": "2b5351c1-535d-4a4a-1339-c51ddd6abf8a", - "name": "Top 10 Items by Requests and YoY Change" - }, - { - "id": "2b73b9dd-4ec7-75ca-f2e9-fa1984ca8b72", - "name": "Opened Problems" - }, - { - "id": "373c6466-bb0c-b319-8752-632456349261", - "name": "Overdue" - }, - { - "id": "53b8dc2f-8ada-51f7-7422-fe82e9b803cc", - "name": "High and Critical Priority Problems" - }, - { - "id": "58af9ecf-b839-da50-65e1-2e1fa20e3362", - "name": "Total Incidents by Category and YoY Change" - }, - { - "id": "618b3e76-75c1-cb31-0c61-3f4890b72c31", - "name": "Known Errors" - }, - { - "id": "721c3c41-7a2b-16a8-3281-6f948a44be96", - "name": "Overdue Requests" - }, - { - "id": "7ef184c1-5a41-5ec8-723e-ae44c20aa335", - "name": "AVG Time to Solve an Incident" - }, - { - "id": "7fbc77ba-0ab6-3727-0db3-d8402a804da5", - "name": "Made SLA?" - }, - { - "id": "b207c2f2-b675-32e3-2663-17bb836a018b", - "name": "Overdue Problems" - }, - { - "id": "e70a540d-55ed-b9cc-5a3c-01ebe81a1274", - "name": "Age of Active Problems" - }, - { - "id": "f76d3570-23b8-f74b-d85c-cc5484c2079c", - "name": "Opened Incidents" - } - ] - } - ], - "embeddedDatasources": [ - { - "__typename": "EmbeddedDatasource", - "id": "06c3e060-8133-4b58-9b53-a0fced25e056", - "name": "Requests", - "hasExtracts": true, - "extractLastRefreshTime": "2018-01-18T19:35:39Z", - "extractLastIncrementalUpdateTime": null, - "extractLastUpdateTime": "2018-01-18T19:35:39Z", - "upstreamDatabases": [ - { - "id": "2cb8691d-2ad3-500b-4454-1a6a4ee53d34", - "name": "ven01911", - "connectionType": "webdata-direct:servicenowitsm-servicenowitsm", - "isEmbedded": true - } - ], - "upstreamTables": [ - { - "id": "57135afa-7602-93fe-0f9f-c7fe7c36dd5d", - "name": "task", - "database": { - "name": "ven01911" - }, - "schema": "", - "fullName": "[task]", - "connectionType": "webdata-direct:servicenowitsm-servicenowitsm", - "description": "", - "columns": [ - { - "name": "contact_type", - "remoteType": "WDC_STRING" - }, - { - "name": "sys_id", - "remoteType": "WDC_STRING" - }, - { - "name": "user_input", - "remoteType": "WDC_STRING" - }, - { - "name": "opened_at", - "remoteType": "WDC_DATETIME" - }, - { - "name": "expected_start", - "remoteType": "WDC_DATETIME" - }, - { - "name": "delivery_plan", - "remoteType": "WDC_STRING" - }, - { - "name": "opened_by", - "remoteType": "WDC_STRING" - }, - { - "name": "delivery_task", - "remoteType": "WDC_STRING" - }, - { - "name": "approval_set", - "remoteType": "WDC_DATETIME" - }, - { - "name": "urgency", - "remoteType": "WDC_INT" - }, - { - "name": "comments", - "remoteType": "WDC_STRING" - }, - { - "name": "active", - "remoteType": "WDC_BOOL" - }, - { - "name": "priority", - "remoteType": "WDC_INT" - }, - { - "name": "knowledge", - "remoteType": "WDC_BOOL" - }, - { - "name": "closed_by", - "remoteType": "WDC_STRING" - }, - { - "name": "activity_due", - "remoteType": "WDC_DATETIME" - }, - { - "name": "assignment_group", - "remoteType": "WDC_STRING" - }, - { - "name": "correlation_display", - "remoteType": "WDC_STRING" - }, - { - "name": "state", - "remoteType": "WDC_INT" - }, - { - "name": "work_end", - "remoteType": "WDC_DATETIME" - }, - { - "name": "description", - "remoteType": "WDC_STRING" - }, - { - "name": "business_service", - "remoteType": "WDC_STRING" - }, - { - "name": "approval_history", - "remoteType": "WDC_STRING" - }, - { - "name": "upon_reject", - "remoteType": "WDC_STRING" - }, - { - "name": "sys_created_on", - "remoteType": "WDC_DATETIME" - }, - { - "name": "parent", - "remoteType": "WDC_STRING" - }, - { - "name": "order", - "remoteType": "WDC_INT" - }, - { - "name": "work_notes", - "remoteType": "WDC_STRING" - }, - { - "name": "work_notes_list", - "remoteType": "WDC_STRING" - }, - { - "name": "sys_created_by", - "remoteType": "WDC_STRING" - }, - { - "name": "sys_updated_by", - "remoteType": "WDC_STRING" - }, - { - "name": "work_start", - "remoteType": "WDC_DATETIME" - }, - { - "name": "group_list", - "remoteType": "WDC_STRING" - }, - { - "name": "sys_mod_count", - "remoteType": "WDC_INT" - }, - { - "name": "location", - "remoteType": "WDC_STRING" - }, - { - "name": "correlation_id", - "remoteType": "WDC_STRING" - }, - { - "name": "sys_updated_on", - "remoteType": "WDC_DATETIME" - }, - { - "name": "sla_due", - "remoteType": "WDC_DATETIME" - }, - { - "name": "number", - "remoteType": "WDC_STRING" - }, - { - "name": "business_duration", - "remoteType": "WDC_DATETIME" - }, - { - "name": "follow_up", - "remoteType": "WDC_DATETIME" - }, - { - "name": "additional_assignee_list", - "remoteType": "WDC_STRING" - }, - { - "name": "escalation", - "remoteType": "WDC_INT" - }, - { - "name": "due_date", - "remoteType": "WDC_DATETIME" - }, - { - "name": "approval", - "remoteType": "WDC_STRING" - }, - { - "name": "made_sla", - "remoteType": "WDC_BOOL" - }, - { - "name": "assigned_to", - "remoteType": "WDC_STRING" - }, - { - "name": "calendar_duration", - "remoteType": "WDC_DATETIME" - }, - { - "name": "closed_at", - "remoteType": "WDC_DATETIME" - }, - { - "name": "sys_domain", - "remoteType": "WDC_STRING" - }, - { - "name": "cmdb_ci", - "remoteType": "WDC_STRING" - }, - { - "name": "comments_and_work_notes", - "remoteType": "WDC_STRING" - }, - { - "name": "impact", - "remoteType": "WDC_INT" - }, - { - "name": "close_notes", - "remoteType": "WDC_STRING" - }, - { - "name": "reassignment_count", - "remoteType": "WDC_INT" - }, - { - "name": "company", - "remoteType": "WDC_STRING" - }, - { - "name": "sys_domain_path", - "remoteType": "WDC_STRING" - }, - { - "name": "short_description", - "remoteType": "WDC_STRING" - }, - { - "name": "upon_approval", - "remoteType": "WDC_STRING" - }, - { - "name": "watch_list", - "remoteType": "WDC_STRING" - }, - { - "name": "time_worked", - "remoteType": "WDC_STRING" - }, - { - "name": "sys_class_name", - "remoteType": "WDC_STRING" - } - ] - }, - { - "id": "66f2e5af-c0f9-94b4-13d6-5fd53f6e02b7", - "name": "sc_request", - "database": { - "name": "ven01911" - }, - "schema": "", - "fullName": "[sc_request]", - "connectionType": "webdata-direct:servicenowitsm-servicenowitsm", - "description": "", - "columns": [ - { - "name": "work_notes_list", - "remoteType": "WDC_STRING" - }, - { - "name": "closed_at", - "remoteType": "WDC_DATETIME" - }, - { - "name": "user_input", - "remoteType": "WDC_STRING" - }, - { - "name": "requested_for", - "remoteType": "WDC_STRING" - }, - { - "name": "opened_at", - "remoteType": "WDC_DATETIME" - }, - { - "name": "price", - "remoteType": "WDC_STRING" - }, - { - "name": "assigned_to", - "remoteType": "WDC_STRING" - }, - { - "name": "number", - "remoteType": "WDC_STRING" - }, - { - "name": "delivery_plan", - "remoteType": "WDC_STRING" - }, - { - "name": "delivery_address", - "remoteType": "WDC_STRING" - }, - { - "name": "business_duration", - "remoteType": "WDC_DATETIME" - }, - { - "name": "urgency", - "remoteType": "WDC_INT" - }, - { - "name": "work_end", - "remoteType": "WDC_DATETIME" - }, - { - "name": "due_date", - "remoteType": "WDC_DATETIME" - }, - { - "name": "parent", - "remoteType": "WDC_STRING" - }, - { - "name": "made_sla", - "remoteType": "WDC_BOOL" - }, - { - "name": "assignment_group", - "remoteType": "WDC_STRING" - }, - { - "name": "sys_class_name", - "remoteType": "WDC_STRING" - }, - { - "name": "additional_assignee_list", - "remoteType": "WDC_STRING" - }, - { - "name": "work_start", - "remoteType": "WDC_DATETIME" - }, - { - "name": "sys_domain_path", - "remoteType": "WDC_STRING" - }, - { - "name": "time_worked", - "remoteType": "WDC_STRING" - }, - { - "name": "comments_and_work_notes", - "remoteType": "WDC_STRING" - }, - { - "name": "group_list", - "remoteType": "WDC_STRING" - }, - { - "name": "business_service", - "remoteType": "WDC_STRING" - }, - { - "name": "correlation_id", - "remoteType": "WDC_STRING" - }, - { - "name": "cmdb_ci", - "remoteType": "WDC_STRING" - }, - { - "name": "requested_date", - "remoteType": "WDC_DATE" - }, - { - "name": "follow_up", - "remoteType": "WDC_DATETIME" - }, - { - "name": "sys_updated_on", - "remoteType": "WDC_DATETIME" - }, - { - "name": "state", - "remoteType": "WDC_INT" - }, - { - "name": "comments", - "remoteType": "WDC_STRING" - }, - { - "name": "approval_set", - "remoteType": "WDC_DATETIME" - }, - { - "name": "close_notes", - "remoteType": "WDC_STRING" - }, - { - "name": "upon_approval", - "remoteType": "WDC_STRING" - }, - { - "name": "company", - "remoteType": "WDC_STRING" - }, - { - "name": "activity_due", - "remoteType": "WDC_DATETIME" - }, - { - "name": "contact_type", - "remoteType": "WDC_STRING" - }, - { - "name": "approval", - "remoteType": "WDC_STRING" - }, - { - "name": "calendar_duration", - "remoteType": "WDC_DATETIME" - }, - { - "name": "reassignment_count", - "remoteType": "WDC_INT" - }, - { - "name": "delivery_task", - "remoteType": "WDC_STRING" - }, - { - "name": "approval_history", - "remoteType": "WDC_STRING" - }, - { - "name": "sys_created_on", - "remoteType": "WDC_DATETIME" - }, - { - "name": "request_state", - "remoteType": "WDC_STRING" - }, - { - "name": "watch_list", - "remoteType": "WDC_STRING" - }, - { - "name": "upon_reject", - "remoteType": "WDC_STRING" - }, - { - "name": "expected_start", - "remoteType": "WDC_DATETIME" - }, - { - "name": "active", - "remoteType": "WDC_BOOL" - }, - { - "name": "opened_by", - "remoteType": "WDC_STRING" - }, - { - "name": "work_notes", - "remoteType": "WDC_STRING" - }, - { - "name": "impact", - "remoteType": "WDC_INT" - }, - { - "name": "description", - "remoteType": "WDC_STRING" - }, - { - "name": "sla_due", - "remoteType": "WDC_DATETIME" - }, - { - "name": "correlation_display", - "remoteType": "WDC_STRING" - }, - { - "name": "priority", - "remoteType": "WDC_INT" - }, - { - "name": "stage", - "remoteType": "WDC_STRING" - }, - { - "name": "sys_created_by", - "remoteType": "WDC_STRING" - }, - { - "name": "sys_id", - "remoteType": "WDC_STRING" - }, - { - "name": "escalation", - "remoteType": "WDC_INT" - }, - { - "name": "closed_by", - "remoteType": "WDC_STRING" - }, - { - "name": "short_description", - "remoteType": "WDC_STRING" - }, - { - "name": "location", - "remoteType": "WDC_STRING" - }, - { - "name": "special_instructions", - "remoteType": "WDC_STRING" - }, - { - "name": "order", - "remoteType": "WDC_INT" - }, - { - "name": "sys_updated_by", - "remoteType": "WDC_STRING" - }, - { - "name": "sys_mod_count", - "remoteType": "WDC_INT" - }, - { - "name": "knowledge", - "remoteType": "WDC_BOOL" - }, - { - "name": "sys_domain", - "remoteType": "WDC_STRING" - }, - { - "name": "calendar_stc", - "remoteType": "WDC_INT" - } - ] - }, - { - "id": "6d3b8726-1f0b-312a-6013-43aec9ccba69", - "name": "sc_req_item", - "database": { - "name": "ven01911" - }, - "schema": "", - "fullName": "[sc_req_item]", - "connectionType": "webdata-direct:servicenowitsm-servicenowitsm", - "description": "", - "columns": [ - { - "name": "watch_list", - "remoteType": "WDC_STRING" - }, - { - "name": "due_date", - "remoteType": "WDC_DATETIME" - }, - { - "name": "made_sla", - "remoteType": "WDC_BOOL" - }, - { - "name": "parent", - "remoteType": "WDC_STRING" - }, - { - "name": "assigned_to", - "remoteType": "WDC_STRING" - }, - { - "name": "sys_mod_count", - "remoteType": "WDC_INT" - }, - { - "name": "cmdb_ci", - "remoteType": "WDC_STRING" - }, - { - "name": "sys_domain", - "remoteType": "WDC_STRING" - }, - { - "name": "configuration_item", - "remoteType": "WDC_STRING" - }, - { - "name": "closed_by", - "remoteType": "WDC_STRING" - }, - { - "name": "active", - "remoteType": "WDC_BOOL" - }, - { - "name": "expected_start", - "remoteType": "WDC_DATETIME" - }, - { - "name": "recurring_price", - "remoteType": "WDC_STRING" - }, - { - "name": "work_end", - "remoteType": "WDC_DATETIME" - }, - { - "name": "short_description", - "remoteType": "WDC_STRING" - }, - { - "name": "approval", - "remoteType": "WDC_STRING" - }, - { - "name": "opened_at", - "remoteType": "WDC_DATETIME" - }, - { - "name": "order", - "remoteType": "WDC_INT" - }, - { - "name": "assignment_group", - "remoteType": "WDC_STRING" - }, - { - "name": "sc_catalog", - "remoteType": "WDC_STRING" - }, - { - "name": "knowledge", - "remoteType": "WDC_BOOL" - }, - { - "name": "stage", - "remoteType": "WDC_STRING" - }, - { - "name": "correlation_display", - "remoteType": "WDC_STRING" - }, - { - "name": "reassignment_count", - "remoteType": "WDC_INT" - }, - { - "name": "delivery_plan", - "remoteType": "WDC_STRING" - }, - { - "name": "sys_class_name", - "remoteType": "WDC_STRING" - }, - { - "name": "user_input", - "remoteType": "WDC_STRING" - }, - { - "name": "description", - "remoteType": "WDC_STRING" - }, - { - "name": "activity_due", - "remoteType": "WDC_DATETIME" - }, - { - "name": "price", - "remoteType": "WDC_STRING" - }, - { - "name": "work_notes_list", - "remoteType": "WDC_STRING" - }, - { - "name": "estimated_delivery", - "remoteType": "WDC_DATETIME" - }, - { - "name": "additional_assignee_list", - "remoteType": "WDC_STRING" - }, - { - "name": "context", - "remoteType": "WDC_STRING" - }, - { - "name": "business_duration", - "remoteType": "WDC_DATETIME" - }, - { - "name": "approval_set", - "remoteType": "WDC_DATETIME" - }, - { - "name": "priority", - "remoteType": "WDC_INT" - }, - { - "name": "sys_updated_on", - "remoteType": "WDC_DATETIME" - }, - { - "name": "sys_id", - "remoteType": "WDC_STRING" - }, - { - "name": "state", - "remoteType": "WDC_INT" - }, - { - "name": "business_service", - "remoteType": "WDC_STRING" - }, - { - "name": "billable", - "remoteType": "WDC_BOOL" - }, - { - "name": "approval_history", - "remoteType": "WDC_STRING" - }, - { - "name": "recurring_frequency", - "remoteType": "WDC_STRING" - }, - { - "name": "contact_type", - "remoteType": "WDC_STRING" - }, - { - "name": "cat_item", - "remoteType": "WDC_STRING" - }, - { - "name": "sys_updated_by", - "remoteType": "WDC_STRING" - }, - { - "name": "sys_domain_path", - "remoteType": "WDC_STRING" - }, - { - "name": "comments", - "remoteType": "WDC_STRING" - }, - { - "name": "impact", - "remoteType": "WDC_INT" - }, - { - "name": "order_guide", - "remoteType": "WDC_STRING" - }, - { - "name": "sla_due", - "remoteType": "WDC_DATETIME" - }, - { - "name": "sys_created_by", - "remoteType": "WDC_STRING" - }, - { - "name": "comments_and_work_notes", - "remoteType": "WDC_STRING" - }, - { - "name": "opened_by", - "remoteType": "WDC_STRING" - }, - { - "name": "backordered", - "remoteType": "WDC_BOOL" - }, - { - "name": "correlation_id", - "remoteType": "WDC_STRING" - }, - { - "name": "group_list", - "remoteType": "WDC_STRING" - }, - { - "name": "delivery_task", - "remoteType": "WDC_STRING" - }, - { - "name": "number", - "remoteType": "WDC_STRING" - }, - { - "name": "sys_created_on", - "remoteType": "WDC_DATETIME" - }, - { - "name": "company", - "remoteType": "WDC_STRING" - }, - { - "name": "work_start", - "remoteType": "WDC_DATETIME" - }, - { - "name": "request", - "remoteType": "WDC_STRING" - }, - { - "name": "close_notes", - "remoteType": "WDC_STRING" - }, - { - "name": "work_notes", - "remoteType": "WDC_STRING" - }, - { - "name": "calendar_duration", - "remoteType": "WDC_DATETIME" - }, - { - "name": "quantity", - "remoteType": "WDC_INT" - }, - { - "name": "follow_up", - "remoteType": "WDC_DATETIME" - }, - { - "name": "location", - "remoteType": "WDC_STRING" - }, - { - "name": "upon_reject", - "remoteType": "WDC_STRING" - }, - { - "name": "closed_at", - "remoteType": "WDC_DATETIME" - }, - { - "name": "time_worked", - "remoteType": "WDC_STRING" - }, - { - "name": "escalation", - "remoteType": "WDC_INT" - }, - { - "name": "urgency", - "remoteType": "WDC_INT" - }, - { - "name": "upon_approval", - "remoteType": "WDC_STRING" - } - ] - }, - { - "id": "ce005441-3761-f8d4-fa42-60f14c7002c8", - "name": "sc_cat_item", - "database": { - "name": "ven01911" - }, - "schema": "", - "fullName": "[sc_cat_item]", - "connectionType": "webdata-direct:servicenowitsm-servicenowitsm", - "description": "", - "columns": [ - { - "name": "sc_catalogs", - "remoteType": "WDC_STRING" - }, - { - "name": "sys_updated_by", - "remoteType": "WDC_STRING" - }, - { - "name": "type", - "remoteType": "WDC_STRING" - }, - { - "name": "mobile_picture_type", - "remoteType": "WDC_STRING" - }, - { - "name": "workflow", - "remoteType": "WDC_STRING" - }, - { - "name": "sys_customer_update", - "remoteType": "WDC_BOOL" - }, - { - "name": "sys_class_name", - "remoteType": "WDC_STRING" - }, - { - "name": "visible_standalone", - "remoteType": "WDC_BOOL" - }, - { - "name": "no_quantity", - "remoteType": "WDC_BOOL" - }, - { - "name": "order", - "remoteType": "WDC_INT" - }, - { - "name": "sys_updated_on", - "remoteType": "WDC_DATETIME" - }, - { - "name": "sys_scope", - "remoteType": "WDC_STRING" - }, - { - "name": "template", - "remoteType": "WDC_STRING" - }, - { - "name": "no_proceed_checkout", - "remoteType": "WDC_BOOL" - }, - { - "name": "billable", - "remoteType": "WDC_BOOL" - }, - { - "name": "name", - "remoteType": "WDC_STRING" - }, - { - "name": "delivery_plan", - "remoteType": "WDC_STRING" - }, - { - "name": "description", - "remoteType": "WDC_STRING" - }, - { - "name": "meta", - "remoteType": "WDC_STRING" - }, - { - "name": "ordered_item_link", - "remoteType": "WDC_STRING" - }, - { - "name": "sys_mod_count", - "remoteType": "WDC_INT" - }, - { - "name": "sc_ic_version", - "remoteType": "WDC_INT" - }, - { - "name": "image", - "remoteType": "WDC_STRING" - }, - { - "name": "sys_id", - "remoteType": "WDC_STRING" - }, - { - "name": "short_description", - "remoteType": "WDC_STRING" - }, - { - "name": "sys_policy", - "remoteType": "WDC_STRING" - }, - { - "name": "roles", - "remoteType": "WDC_STRING" - }, - { - "name": "picture", - "remoteType": "WDC_STRING" - }, - { - "name": "list_price", - "remoteType": "WDC_STRING" - }, - { - "name": "no_order_now", - "remoteType": "WDC_BOOL" - }, - { - "name": "vendor", - "remoteType": "WDC_STRING" - }, - { - "name": "sc_ic_item_staging", - "remoteType": "WDC_STRING" - }, - { - "name": "no_order", - "remoteType": "WDC_BOOL" - }, - { - "name": "entitlement_script", - "remoteType": "WDC_STRING" - }, - { - "name": "active", - "remoteType": "WDC_BOOL" - }, - { - "name": "icon", - "remoteType": "WDC_STRING" - }, - { - "name": "ignore_price", - "remoteType": "WDC_BOOL" - }, - { - "name": "start_closed", - "remoteType": "WDC_BOOL" - }, - { - "name": "sys_package", - "remoteType": "WDC_STRING" - }, - { - "name": "group", - "remoteType": "WDC_STRING" - }, - { - "name": "sys_replace_on_upgrade", - "remoteType": "WDC_BOOL" - }, - { - "name": "cost", - "remoteType": "WDC_FLOAT" - }, - { - "name": "use_sc_layout", - "remoteType": "WDC_BOOL" - }, - { - "name": "location", - "remoteType": "WDC_STRING" - }, - { - "name": "availability", - "remoteType": "WDC_STRING" - }, - { - "name": "model", - "remoteType": "WDC_STRING" - }, - { - "name": "custom_cart", - "remoteType": "WDC_STRING" - }, - { - "name": "mobile_picture", - "remoteType": "WDC_STRING" - }, - { - "name": "category", - "remoteType": "WDC_STRING" - }, - { - "name": "no_cart", - "remoteType": "WDC_BOOL" - }, - { - "name": "mobile_hide_price", - "remoteType": "WDC_BOOL" - }, - { - "name": "sys_created_by", - "remoteType": "WDC_STRING" - }, - { - "name": "price", - "remoteType": "WDC_STRING" - }, - { - "name": "delivery_time", - "remoteType": "WDC_DATETIME" - }, - { - "name": "no_search", - "remoteType": "WDC_BOOL" - }, - { - "name": "sys_created_on", - "remoteType": "WDC_DATETIME" - }, - { - "name": "recurring_frequency", - "remoteType": "WDC_STRING" - }, - { - "name": "recurring_price", - "remoteType": "WDC_STRING" - }, - { - "name": "delivery_plan_script", - "remoteType": "WDC_STRING" - }, - { - "name": "visible_bundle", - "remoteType": "WDC_BOOL" - }, - { - "name": "sys_update_name", - "remoteType": "WDC_STRING" - }, - { - "name": "sys_name", - "remoteType": "WDC_STRING" - }, - { - "name": "visible_guide", - "remoteType": "WDC_BOOL" - }, - { - "name": "preview", - "remoteType": "WDC_STRING" - }, - { - "name": "omit_price", - "remoteType": "WDC_BOOL" - } - ] - } - ], - "downstreamSheets": [ - { - "id": "7fbc77ba-0ab6-3727-0db3-d8402a804da5", - "name": "Made SLA?" - }, - { - "id": "20fc5eb7-81eb-aa18-8c39-af501c62d085", - "name": "Opened Requests" - }, - { - "id": "2b5351c1-535d-4a4a-1339-c51ddd6abf8a", - "name": "Top 10 Items by Requests and YoY Change" - }, - { - "id": "721c3c41-7a2b-16a8-3281-6f948a44be96", - "name": "Overdue Requests" - }, - { - "id": "c14973c2-e1c3-563a-a9c1-8a408396d22a", - "name": "Tooltip - Request Breakdown by Priority" - } - ], - "fields": [ - { - "__typename": "ColumnField", - "id": "008efba8-a319-a2d1-017c-ac8b716464a1", - "name": "Closed by (Request)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "02290a78-a75c-49c9-e9f8-4010d0949eac", - "name": "Location", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "04dc385d-8417-aa5f-3f4c-27c4333fdb5e", - "name": "Opened", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "05e3ac4d-2a2f-43f4-095c-e735768bad55", - "name": "Mobile Picture", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "0a0d2eaa-a912-2e18-6c15-df4c31b2fda2", - "name": "Delivery task", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "CalculatedField", - "id": "0a972b7c-d9f9-9f60-4777-73d4c2edce73", - "name": "% made SLA", - "description": null, - "isHidden": false, - "folderName": null, - "role": "MEASURE", - "dataType": "REAL", - "defaultFormat": "p0%", - "aggregation": null, - "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])" - }, - { - "__typename": "ColumnField", - "id": "0c34bf50-f6c4-ffd5-820b-aa4d39b17145", - "name": "Meta", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "0c3589ad-af62-c35d-8e8f-878754bef4eb", - "name": "Correlation ID (Request)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "0ce0525d-249d-0583-da6f-1a8fe2c35be5", - "name": "Domain Path (Requested Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "0d2d74c7-251c-fccb-a10c-356eb18ce381", - "name": "Work notes (Requested Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "0d51375a-79a7-32db-5b69-7604d2440487", - "name": "Domain", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "0dbbf6a9-12f0-ab05-3a47-5cde0385d100", - "name": "Short description", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "0efd4d21-41ff-c601-b317-52134176c0a6", - "name": "Domain Path (Request)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "122a6170-8375-6ea3-67d1-9f1282bd3395", - "name": "Updated by (Requested Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "12bc3d05-58ca-b026-29f1-ab26e294c44f", - "name": "Additional comments (Requested Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "132c92e6-5670-b1c2-ba4e-04dd949b88c8", - "name": "Recurring price", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "135564cf-1b6a-e773-0434-aa221fbd2f6b", - "name": "Duration (Request)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "13788d86-4bc3-2f8c-7c81-22441862abe4", - "name": "Contact type", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "CalculatedField", - "id": "13b03dc6-0c35-2d6c-309b-4e38cf5f9ec0", - "name": "Total # Request", - "description": null, - "isHidden": false, - "folderName": null, - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": "Attribute", - "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])}" - }, - { - "__typename": "ColumnField", - "id": "13f2b909-b0be-cdf7-a0f6-f51f9ebfa575", - "name": "Requested for date", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATE", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "1532b8d8-95da-574f-5790-b80e3869ac60", - "name": "Upon approval", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "15920ddf-c025-a048-a71d-7b500535f323", - "name": "Ordered item link", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "15c932ba-aafa-4fb2-e616-5192aee65ab4", - "name": "Visible elsewhere", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "BOOLEAN", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "15cf1367-7a9d-7628-fa27-08fb49cc287d", - "name": "Price", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "15dbd6e4-a561-8760-6b6f-d0a3dffc2207", - "name": "Updated (Requested Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "1734af47-5c4c-9627-b8b0-9971a8a80b22", - "name": "Recurring Price Frequency (Catalog Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "174d81eb-c5e3-722b-993b-ec2c6423dd49", - "name": "Correlation display (Requested Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "175f2ede-eb52-2f9a-cb9c-fa88c1111dc0", - "name": "Order (Request)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "17c2014d-2507-6a9f-ad1e-2de49d4d42fe", - "name": "Group list", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "181b3cc8-66f2-764e-a3ed-dcd634ed165e", - "name": "Update name", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "18d38346-0679-cc25-ceac-7c3d44187292", - "name": "Special instructions", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "19ea2ef0-ca24-3b1d-5e57-2fd045efd0a2", - "name": "Execution Plan", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "1a16620c-c2e7-1c76-15bc-d2c177b1d070", - "name": "Visible on Bundles", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "BOOLEAN", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "1c06f71e-5a76-e28e-6cdc-897d0b4557dd", - "name": "Approval set (Requested Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "1cb5b877-0c99-f95c-bf72-59a514da4373", - "name": "No search", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "BOOLEAN", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "20f1306b-4773-0662-4253-02fd76e901a1", - "name": "Active (Request)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "BOOLEAN", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "22cbb922-13e7-d035-8265-31773e23bd2a", - "name": "Configuration item (Requested Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "23e08774-36b9-497e-3d14-df6cb90499d9", - "name": "Due date", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "241346ea-bd7a-5f61-4a48-c5d555d8c687", - "name": "List Price", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "2470d761-eb96-34ed-e9e8-93a85cee999b", - "name": "Company (Requested Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "24acc42c-935e-c9e6-604e-4d16a84cc0c7", - "name": "Additional assignee list", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "258f1373-9799-56d2-b92d-d91d71ea7e1b", - "name": "Expected start (Requested Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "25f757d1-a30b-3fe0-05d2-b924c9a25903", - "name": "Task type (Requested Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "26dbc4e1-7f24-1805-aaa2-430434a45e12", - "name": "Description (Catalog Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "26e8468a-eb18-e101-ca05-c3a973788f41", - "name": "Escalation (Requested Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "26eb4032-4bbf-f9fd-1a23-3156f038b811", - "name": "Customer update", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "BOOLEAN", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "26fac0b0-9c32-8b6c-4750-1af13c8aa0ec", - "name": "Time worked", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "274183a9-b33a-7d99-53ee-03010803a777", - "name": "Price (Catalog Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "276c386f-864d-e6a1-d9d6-4f0e52a1247d", - "name": "Approval (Requested Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "2ab8f665-e11e-6370-d100-6c204b83c436", - "name": "Due date (Request)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "2ba3fefa-ec86-2d62-513c-7eb93975277c", - "name": "Order Guide", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "2c742cd3-4300-8880-6db0-26bca6d67162", - "name": "Package", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "3024c8e3-bf18-c4ed-a65b-6483523f7112", - "name": "Watch list (Request)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "32479c99-87cf-4b10-f77c-65623e197323", - "name": "Delivery plan (Request)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "32952e69-cd24-fac4-9b40-6639d668e6f1", - "name": "Parent (Request)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "32fa8a47-f7e8-627d-83c7-26b967486b5d", - "name": "Urgency", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "3359b5b0-4947-afa1-b610-e90f51b21368", - "name": "Delivery address", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "368833f1-86ec-d717-d7c4-17460462696d", - "name": "Domain (Requested Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "37cbff94-4fcf-de28-3d7f-577148e25de5", - "name": "Work notes list (Request)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "38435c95-3578-5f91-b918-db4ca155348c", - "name": "Estimated Delivery", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "388f8f1e-59ea-9061-132d-b4395f36f3ad", - "name": "Activity due (Requested Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "39bf48ba-57b2-67a9-dc04-128658bb7c95", - "name": "Model", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "3a2833f2-44fc-19fb-9d35-0a89b36c56e0", - "name": "Billable", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "BOOLEAN", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "3bdf4fb2-6442-7243-be14-8e743a3c749a", - "name": "Created (Requested Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "3c0b9be1-6c0b-9b59-7a74-011173a4f6ac", - "name": "Opened by (Requested Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "3c172c79-58c8-887d-c057-8c79ab04a826", - "name": "Recurring Price Frequency", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "3ee4dbb7-1172-04b2-c5e8-05cada9b50aa", - "name": "Recurring Price", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "418ae8b3-ec94-9c2e-75d8-052576a242e0", - "name": "Fulfillment group", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "4255ae77-005b-f589-9ccd-19665baa8e58", - "name": "Name", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "4282472f-2d7a-8cd7-92c7-9b8b762242ea", - "name": "Additional comments (Request)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "441c2514-af72-5391-9777-9fcfaddc6741", - "name": "Created (Request)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "467161aa-e739-41ff-389b-793d49f47359", - "name": "Work notes (Request)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "467ddc9e-f3c0-1976-dcd4-18e0e0513c60", - "name": "Parent", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "46a60f30-fe47-1be7-97d9-e2fce6bebdc3", - "name": "Opened by (Request)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "46c15306-b653-1cef-bf53-f272c7e0771e", - "name": "Backordered", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "BOOLEAN", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "4769810f-04b7-6ea9-d279-6ba912159368", - "name": "No cart", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "BOOLEAN", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "4a18e53d-9f58-8115-363c-d8899262525f", - "name": "Ignore price", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "BOOLEAN", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "4b782f0a-af66-f996-6eb3-0eed7138db78", - "name": "Follow up (Request)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "4e8f122f-5f4d-77be-e716-b6434851bc79", - "name": "Number (Requested Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "4f2e8b54-8bb2-d5ee-764f-2cf037056728", - "name": "Approval set (Request)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "4f4cb0a0-d290-f269-6306-ffbda0b59bb9", - "name": "Priority", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": "Sum", - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "4f63ee1c-1ce8-5c28-3f38-19706fcb28f8", - "name": "Opened (Request)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "50a5f06d-6281-6cb0-5fa1-acacafc73035", - "name": "Correlation ID (Requested Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "51198995-f955-99c0-76dd-b65af948b3ab", - "name": "Created by", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "515b0be8-2b01-81e1-b5f4-d38c6028f450", - "name": "Short description (Requested Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "52562198-6ff7-8ab5-827c-d647ebdcc012", - "name": "Close notes (Request)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "537a920a-7f17-eba0-0b32-d597edc44483", - "name": "Duration (Requested Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "CalculatedField", - "id": "53de3015-a2ef-299d-a778-77b2669cee6f", - "name": "Overdue", - "description": null, - "isHidden": false, - "folderName": null, - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "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" - }, - { - "__typename": "ColumnField", - "id": "5498cd4e-affa-faee-8ede-3c3a271626b4", - "name": "Task type", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "5525b243-fc68-551f-c2fa-5336d846d162", - "name": "Location (Catalog Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "575b861c-2fd8-fbd5-e9b2-56554458ae26", - "name": "Measure Names", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [] - }, - { - "__typename": "ColumnField", - "id": "58ab3115-ed3a-e547-456f-19546d8ed7e6", - "name": "Upon approval (Requested Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "58ae7942-799d-2c8c-09f9-160e26f55499", - "name": "Cart", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "58b286a8-ca37-8bc3-9526-6b6ce5ec31f9", - "name": "Contact type (Request)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "58eb2a4c-9bf3-ae9c-3025-e74424ebf774", - "name": "Assigned to (Request)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "599e517c-0ee3-b31d-ec77-6c7d09585d32", - "name": "Replace on upgrade", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "BOOLEAN", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "5a54045b-981f-38c9-f858-440a1821d9ef", - "name": "Impact (Requested Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "5d63bd75-3187-f45f-619a-f01d8ecc8284", - "name": "Additional assignee list (Request)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "5dc0a505-e6ca-fa13-b183-045eb170c2ac", - "name": "Context", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "5e3fed63-8bc3-0beb-248e-94c11bdc594f", - "name": "Order (Catalog Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "5fc5cc14-7db8-4e62-dd6f-8f6728e7be93", - "name": "Priority (Request)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "60085593-4c40-45d0-cac9-710cb1b396ac", - "name": "Correlation display (Request)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "611e5630-f981-5cf2-e927-266bedcb86bc", - "name": "Requested for", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "6218e598-81e7-1b5b-ad84-5ce064025bc2", - "name": "Configuration item (Request)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "63c7744a-0948-b1ef-52a4-6a489e54e53a", - "name": "No order", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "BOOLEAN", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "63e5bd33-24cc-b6dd-4a6d-7c8c363f5450", - "name": "Billable (Catalog Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "BOOLEAN", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "643a8709-e5ea-9915-e06a-efad2d933ac0", - "name": "Created (Catalog Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "65a525c1-cd94-d4b8-ac37-7eebbb3c409f", - "name": "Upon reject", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "66f180f0-37a7-7693-72b0-f950666cc30b", - "name": "Assignment group (Requested Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "67020cc1-aae1-0682-36bd-23c5e608a1ff", - "name": "Sys ID (Catalog Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "691e556a-5091-64ce-6055-f6e831197143", - "name": "Updated", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "693cce97-337d-6650-3b28-a7715ab24d26", - "name": "No quantity", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "BOOLEAN", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "6a08f79f-2577-fa62-275a-2ec15857bc04", - "name": "Mobile Picture Type", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "6ab03c38-6eb6-b117-ce27-4c9534854b63", - "name": "Quantity", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "6b4727b4-9080-cc79-06a9-678404955895", - "name": "Delivery plan", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "6b6e72ec-e66e-ad8d-56e1-e9b684e82066", - "name": "Business duration (Request)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "6bf2227b-af9f-23df-d337-b19ea40031f5", - "name": "Protection policy", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "6c00ced2-cdb4-7abf-82bc-351e9949edea", - "name": "Follow up", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "6c8e9a78-a11e-6d92-b4d3-a1ef7d60aa27", - "name": "Location (Requested Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "6cdd6e20-5dfc-3c2a-72b7-15cc778665c8", - "name": "Omit price in cart", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "BOOLEAN", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "6dce7c6f-bebb-e5fe-f0ed-221a724b806a", - "name": "Catalogs", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "6ede002b-b1c1-39fa-b92e-fb6e652c4da3", - "name": "Urgency (Requested Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "6ff1a184-f3e1-a2ce-349e-ae5d76859d76", - "name": "User input (Requested Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "728a1525-246e-f30b-1d6e-6e3ef90739c3", - "name": "Updates (Catalog Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "72922b48-ca61-7998-c7fe-aa1e1ac13cdd", - "name": "Work notes", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "7548db00-2a35-387c-9d93-ecb4bd3eb691", - "name": "Entitlement script", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "75c9c62f-7158-3086-9443-ec06063631a9", - "name": "Follow up (Requested Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "7633c080-f332-a84d-d369-3fb8176a0f02", - "name": "Company", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "764aa481-ac4b-ba2c-d8d3-68b4e21fc54a", - "name": "Work start (Requested Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "784c3e44-b99d-9b52-7ebb-9e4ec6f0be9d", - "name": "Published version", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "789ea4f0-9d93-ca84-91db-a91c0c4e0b56", - "name": "Preview link", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "79c14db1-3507-37d7-b428-9820adfd4df5", - "name": "Updates (Requested Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "7b4f0f0d-91b1-8037-2ed6-99cbdf50ec09", - "name": "Updates", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "7ce2f502-a54b-41ad-cb89-ba72d78362bc", - "name": "Closed (Request)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "7f8b5ff1-8612-1c62-d3a1-b8f96c9a8fd7", - "name": "Assignment group (Request)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "810b150f-36d6-73cf-39a0-fa0b5afb89e6", - "name": "Comments and Work notes", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "82a612f8-5371-316e-624b-8e51f50583ac", - "name": "Price (Requested Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "833697a0-088e-de13-af21-1db93e07e1e6", - "name": "Active (Catalog Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "BOOLEAN", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "838264bf-b544-80df-d7d8-4ceb820e4307", - "name": "Stage (Requested Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "83ec93af-9405-34a9-bdd9-29955f5a73d6", - "name": "Visible on Guides", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "BOOLEAN", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "848b5022-e769-97ac-34ab-4855920f60f6", - "name": "Active", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "BOOLEAN", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "856cffc0-3019-b83d-7490-ddbe13b16d18", - "name": "Configuration item (Requested Item) 1", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "85b72af5-e44d-605a-4057-fd588a76ddb1", - "name": "Due date (Requested Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "88023bbb-07aa-5dda-a16e-782622c24d7c", - "name": "Assigned to", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "8874a6de-f4af-75c3-bf20-0b2baabb6f75", - "name": "Escalation (Request)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "89d6ce04-07f4-2963-ae3a-f297127905da", - "name": "Updated (Catalog Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "89faa1fd-6f36-a112-cc5a-b6d0519cb169", - "name": "Created", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "8ce117c7-74c3-224b-03e5-39594cf42106", - "name": "Type", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "8efa84c1-cd61-5372-d0cc-8ae1f02e6de0", - "name": "Category", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "9063d7de-4033-6d76-e49c-dd02e915d19b", - "name": "Delivery time", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "92fa607c-c8e4-839c-0d08-abe93725da96", - "name": "Item", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "937a4589-d8fa-9e04-256f-73c1f16f2607", - "name": "Expected start (Request)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "94392467-1a32-887a-1651-538af23ffe37", - "name": "Expected start", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "94b52aaa-3b07-fc08-a782-ae74e5677867", - "name": "Updated (Request)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "9625aa4e-fb89-7570-c346-306b70d32da1", - "name": "Stage", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "9653d847-7071-1216-cf9e-144575b95582", - "name": "Delivery task (Requested Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "96c48bb9-89ae-d542-0645-fe8b73f72dfe", - "name": "Request", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "989d24ed-df40-4769-0a2b-8ec1846c58ce", - "name": "Description (Requested Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "99300f69-6da1-1e15-80b6-92888e970fce", - "name": "Created by (Request)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "9958fe2e-6292-7768-b8a0-304ac36dc936", - "name": "Active (Requested Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "BOOLEAN", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "9ac5654f-df62-bb13-b7f5-41012b5e19e7", - "name": "Short description (Request)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "9b7f962e-6a86-e17e-4afd-44001f729df3", - "name": "Correlation display", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "9fdce669-4eed-3ecc-fa22-1a09b7f4a6db", - "name": "Reassignment count (Requested Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "a0c579b3-7423-144a-0f1d-ec8da1bcccba", - "name": "Work end", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "CalculatedField", - "id": "a322b8b0-c401-86a0-a5d8-2aea35da11d1", - "name": "Current Year Total Cases", - "description": null, - "isHidden": false, - "folderName": null, - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": "Attribute", - "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}" - }, - { - "__typename": "ColumnField", - "id": "a43fed62-a037-a6f3-6db4-11135d8b11db", - "name": "Approval", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "a455f93d-b035-918a-08b6-4f96a12ca24d", - "name": "Close notes", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "a54fcec0-97c3-72ab-cc19-23123070f7a3", - "name": "Updates (Request)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "a58db715-2016-b971-055c-de1d8bfb8f80", - "name": "Closed by", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "a62941e4-9f9f-93ed-f307-5e6dbfb728ad", - "name": "Delivery plan (Requested Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "a7058558-d759-9e23-ab6a-a656ee2f317d", - "name": "Resolve Time", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "a7c8d21d-db4e-debb-bfef-4994beba809d", - "name": "Business duration", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "CalculatedField", - "id": "a88003b6-66c0-f362-a977-2d5d9c6dd3db", - "name": "Max Year?", - "description": null, - "isHidden": false, - "folderName": null, - "role": "DIMENSION", - "dataType": "BOOLEAN", - "defaultFormat": null, - "aggregation": null, - "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])})" - }, - { - "__typename": "ColumnField", - "id": "ab41f607-d2c0-4db1-b744-d10914d8a6d5", - "name": "Updated by (Catalog Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "ac179862-0ef8-afd7-9801-0f2e0f385175", - "name": "Task type (Request)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "ac37a380-359c-e478-b642-e31a64c5f0d9", - "name": "Time worked (Request)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "aca50e11-a5b5-f063-8a78-656f47f29ec5", - "name": "Comments and Work notes (Request)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "acf6fb05-2503-f424-b15e-d603aaa0c223", - "name": "Time worked (Requested Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "adee9155-2a4b-ca21-7af8-0f42c17b7b45", - "name": "Contact type (Requested Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "ae692271-daf4-7453-e36b-b68d2c33f36f", - "name": "Additional assignee list (Requested Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "af29c272-905b-ef8b-47ed-be289fa4b858", - "name": "Approval history", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "afcdfd6b-02d3-1952-c6e9-3dce86cd9da4", - "name": "State", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "b0486a68-1e13-6dbb-76a4-edc7a1c856bf", - "name": "Group list (Request)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "b0590acf-db66-2aaf-1138-e6d56c9e2a97", - "name": "Made SLA", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "BOOLEAN", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "b05e2f82-9cd4-7b30-2932-e88632cb2a55", - "name": "Knowledge (Requested Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "BOOLEAN", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "b1247620-5f00-3f3e-fef3-4eef89c749d6", - "name": "Icon", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "b265ac9c-0287-b59b-27bd-d330a9fcdf79", - "name": "User input (Request)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "b2fab7e4-75ce-500f-40e9-a67e28c20272", - "name": "Display name", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "b3f50843-0f17-9c89-9579-58f317f65620", - "name": "Business service (Requested Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "b42c0a76-7906-498b-2049-681677b93421", - "name": "Reassignment count", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "b472e985-a322-905d-a2f8-699652137607", - "name": "Number (Request)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "b4dee84e-ef33-7e1e-ad52-02a84eb14dd0", - "name": "Duration", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "b6961a0e-b2ee-fb47-ffbe-a5e778092615", - "name": "Escalation", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "b6cc2e55-a89b-310e-557e-fe9ab2f297b0", - "name": "Comments and Work notes (Requested Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "CalculatedField", - "id": "b7a02779-5bcf-9fb6-c303-1dd5fdeacd49", - "name": "Number of Records", - "description": null, - "isHidden": true, - "folderName": null, - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "formula": "1" - }, - { - "__typename": "ColumnField", - "id": "b7c973cb-2fcd-38d4-ec5c-3252e0c61946", - "name": "Work start (Request)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "b7ea244e-0957-b32e-1c82-2c7d6c0c77e8", - "name": "Close notes (Requested Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "b8021235-a9c3-d250-6bb6-acd2742549b3", - "name": "State (Request)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "b8336140-37e9-bc30-246e-2e84d7d776de", - "name": "Description (Request)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "b887e02d-9fb3-e1b2-fce9-e2d9e1864247", - "name": "State (Requested Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "b94dd2fe-50fe-59a7-5dbe-b8c8a224ac90", - "name": "No proceed checkout", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "BOOLEAN", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "b9abd974-460e-1a62-58e8-3da85bd2b27a", - "name": "Measure Values", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "REAL", - "defaultFormat": null, - "aggregation": null, - "columns": [] - }, - { - "__typename": "ColumnField", - "id": "b9fc7e1e-469b-1182-f05f-44c55e5a7dbb", - "name": "Watch list (Requested Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "baa30890-390b-01ae-2463-3d41ad6af87d", - "name": "SLA due (Requested Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "bb02c81e-5779-e29e-c839-891f6ca7c4fd", - "name": "Impact (Request)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "bbb1056d-69e3-97a5-398a-42500522ecac", - "name": "Updated by", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "bcfd29ee-8e1f-fcac-df18-926bf5e4cd4f", - "name": "Sys ID (Request)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "bd26196b-38a8-ecd4-761c-f2f8597db4ea", - "name": "Closed (Requested Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "bd61f261-1255-c145-c113-390625309968", - "name": "Activity due (Request)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "bed11b20-9063-82d9-5a53-ef8bb75619bb", - "name": "Use cart layout", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "BOOLEAN", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "c0c11123-d69b-0e06-69a5-04267ffd5d26", - "name": "No order now", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "BOOLEAN", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "c0c66aca-3a2a-f391-01cf-03df31ea7794", - "name": "SLA due (Request)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "c1c3585e-d839-80ff-51c3-3de8ca6bfd61", - "name": "Application", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "c2bac94d-07df-2670-c669-d72b13d8d29f", - "name": "User input", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "c34e0dd8-b2ba-1998-d418-b0868844b0d7", - "name": "Additional comments", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "c3d35a2b-5ef1-63d7-f220-f89f522d8897", - "name": "Approval (Request)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "c3e5bbe9-319e-73bb-7036-c547ceb51ad8", - "name": "Reassignment count (Request)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "c40c1cbb-92ec-cf6d-2a06-08358d05582a", - "name": "Template", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "c447bddc-cd0a-bd6b-f46a-d2c822c16738", - "name": "Urgency (Request)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "c5b10ad6-d4d8-2d35-d924-db924be17994", - "name": "Catalog", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "c5dfe431-73c7-546b-e03a-515dfe988f6a", - "name": "Image", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "c616d5a0-20bb-e3ba-9ab5-43570a2718a8", - "name": "Knowledge", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "BOOLEAN", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "c821a872-624f-0044-69a9-3c6208f413d6", - "name": "Impact", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "c84e3892-d96e-1de0-0d68-05ec16205f3e", - "name": "Created by (Requested Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "c95e3006-8dfb-c213-b2da-d46a6955ddf6", - "name": "Priority (Requested Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "c96e0f19-d3a7-3a3d-6926-d69946eb2de6", - "name": "Updated by (Request)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "c9bc3709-4cb0-6c4d-088d-3ae66f74aa06", - "name": "Approval history (Request)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "cab3646c-724a-e8d9-9ae4-d423914c8482", - "name": "Made SLA (Requested Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "BOOLEAN", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "CalculatedField", - "id": "cbbdf8b2-2491-2228-b0ec-cf1bfe6ec52c", - "name": "% of Overdue", - "description": null, - "isHidden": false, - "folderName": null, - "role": "MEASURE", - "dataType": "REAL", - "defaultFormat": "p0%", - "aggregation": null, - "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])})" - }, - { - "__typename": "ColumnField", - "id": "cbfb76b9-d958-bf73-91d5-2abe9f57ec6a", - "name": "Workflow", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "cdb98a84-b6b5-d630-b929-871bb56f4054", - "name": "Location (Request)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "cf2aa6cd-3c9c-69ff-819e-53a8d720e7a0", - "name": "Class", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "d0f3198a-9ead-4d49-e911-0da4f2ff89e5", - "name": "Created from item design", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "d1b741a8-6514-9d72-764c-f16ae538e2c8", - "name": "Business service", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "d3570da1-02ed-806a-19f6-36d4d7c5d3ae", - "name": "Upon approval (Request)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "d36671a9-e069-e42b-37dd-deac9e6c84f1", - "name": "Knowledge (Request)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "BOOLEAN", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "d3ab05cd-fcb7-c5cf-a63b-f8caf9417dab", - "name": "Migrated Data", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "TABLE", - "defaultFormat": null, - "aggregation": null, - "columns": [] - }, - { - "__typename": "ColumnField", - "id": "d4311978-3ead-9d0a-df44-3b46b0ba9575", - "name": "Parent (Requested Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "d4567175-b4df-d6b5-f68c-6ea7fbd2445c", - "name": "Company (Request)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "d55a7e9d-f059-e5eb-e9ec-eb98d97e7097", - "name": "Assigned to (Requested Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "d5881216-e42f-c1a0-b255-c08dbc7c0092", - "name": "Closed by (Requested Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "d66ae755-c173-7e1d-3a7d-9a3c0cffe05c", - "name": "Roles", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "d6712752-0e66-2497-b404-16204fcaf0d0", - "name": "SLA due", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "d753ea95-e162-42f6-def6-6cfeaa7d7dd3", - "name": "Short description (Catalog Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "d7be6a1a-1224-27b1-7b69-34e47dc9ce76", - "name": "Hide price (mobile listings)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "BOOLEAN", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "d7e4cd8a-5110-0285-0a87-e54a29f5d4d4", - "name": "Work start", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "d8a0d4a8-a64b-b8f2-ae8c-154dce73618d", - "name": "Business duration (Requested Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "d9aedf00-942d-88dc-f69e-0a1e2a762459", - "name": "Assignment group", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "d9bc04ba-76e9-3602-d215-0056f1b0a7ce", - "name": "Upon reject (Requested Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "da538d8c-c121-07e9-d6c7-922ca9c97c0a", - "name": "Availability", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "dbc0a381-fcad-8096-6ba1-b15d1288a290", - "name": "Vendor", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "dd65ef75-a294-91d9-69e7-fa0aaf00d283", - "name": "Work notes list", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "df2d4778-d646-2106-e647-c6bbba843272", - "name": "Picture", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "dfafbea8-91ed-d99d-9b33-c907310eebcd", - "name": "Group list (Requested Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "e00c27d8-4ffd-25a2-906e-edeebd37e49f", - "name": "Work notes list (Requested Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "e1aca33d-7570-e580-ed64-fa5360f313cd", - "name": "Opened by", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "e3068773-d950-e10b-a65b-b850ed70c6ca", - "name": "Watch list", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "e452781c-07b5-05b5-bf67-540832d58064", - "name": "Upon reject (Request)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "e4b1070f-09eb-7ec8-1658-1555a7db8550", - "name": "Delivery plan script", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "e64f9c26-5717-052e-a0fc-db41d5f8911e", - "name": "Order (Requested Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "e7578bfd-8620-bd9f-f6ee-934bae3c1d3a", - "name": "Work end (Requested Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "e7c96d5a-dd68-4f96-310c-66b7fa3c4bab", - "name": "Sys ID", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "e8da99f0-8f5d-2614-7551-0490660dbed3", - "name": "Opened (Requested Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "e9134c81-82dd-4042-4444-57b4a47a72cc", - "name": "Made SLA (Request)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "BOOLEAN", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "eb38fd46-add4-2b2a-ea8b-8089a6ae5067", - "name": "Approval set", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "ed845856-3909-fe72-2dd9-1a9404050bfa", - "name": "Approval history (Requested Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "edb7b2e8-c5a1-819a-b423-125134d0c557", - "name": "Sys ID (Requested Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "ee1f261c-bd68-a110-186a-da823d37b1c3", - "name": "Work end (Request)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "CalculatedField", - "id": "ef6b51a9-6347-ed97-5baf-c6c53baa4751", - "name": "Total Active Requests", - "description": null, - "isHidden": false, - "folderName": null, - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": "Attribute", - "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}" - }, - { - "__typename": "ColumnField", - "id": "f157463f-0e40-e589-c1fc-d85587fd89b8", - "name": "Delivery task (Request)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "f18c30e5-41c7-8c28-3ad6-9b3474b0810b", - "name": "Start closed", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "BOOLEAN", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "f1f56c79-6d45-31ae-663f-4e529ec1f3cf", - "name": "Domain (Request)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "f38cfc69-e333-72d7-7bc5-e16957df3dec", - "name": "Correlation ID", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "f3d4aefe-efef-0eef-f741-12b236720626", - "name": "Number", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "f4555797-f26b-ec4c-1234-3c46a142fb30", - "name": "Closed", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "f628cef0-e94c-eada-07d1-36fb881b2a63", - "name": "Request state", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "f6f4e8a1-209b-7202-0e9b-907d87a994b5", - "name": "Business service (Request)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "f7a6d35d-6360-a237-86c3-57f11bbc7a2e", - "name": "Configuration item", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "f7cb4ce9-1805-1a51-3363-b910e97117d8", - "name": "Description", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "f7f588fc-0c6d-aed3-9819-e3f9b9c926dd", - "name": "Activity due", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "f852966b-add1-7857-3eb0-5b395f533b0d", - "name": "Cost", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "REAL", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "f9bc6be4-b6e7-c03b-c43b-b8bdff7ef356", - "name": "Domain Path", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "fdfa2354-b648-706a-2dc4-8bf2fac9bf15", - "name": "Order", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "fe164caf-ec76-8eab-9a65-8e910f130ed9", - "name": "Created by (Catalog Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - } - ], - "upstreamDatasources": [], - "workbook": { - "name": "Executive Dashboard", - "projectName": "default" - } - }, - { - "__typename": "EmbeddedDatasource", - "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", - "name": "Problems", - "hasExtracts": true, - "extractLastRefreshTime": "2018-01-18T20:21:33Z", - "extractLastIncrementalUpdateTime": null, - "extractLastUpdateTime": "2018-01-18T20:21:33Z", - "upstreamDatabases": [ - { - "id": "8b658fa9-59fc-c9cf-0830-a228200ce456", - "name": "ven01911", - "connectionType": "webdata-direct:servicenowitsm-servicenowitsm", - "isEmbedded": true - } - ], - "upstreamTables": [ - { - "id": "f306c458-6b1d-ed1d-a52c-6d72ea27d21a", - "database": { - "name": "ven01911" - }, - "name": "task", - "schema": "", - "fullName": "[task]", - "connectionType": "webdata-direct:servicenowitsm-servicenowitsm", - "description": "", - "columns": [ - { - "name": "upon_reject", - "remoteType": "WDC_STRING" - }, - { - "name": "description", - "remoteType": "WDC_STRING" - }, - { - "name": "additional_assignee_list", - "remoteType": "WDC_STRING" - }, - { - "name": "sys_id", - "remoteType": "WDC_STRING" - }, - { - "name": "due_date", - "remoteType": "WDC_DATETIME" - }, - { - "name": "sys_updated_on", - "remoteType": "WDC_DATETIME" - }, - { - "name": "urgency", - "remoteType": "WDC_INT" - }, - { - "name": "comments", - "remoteType": "WDC_STRING" - }, - { - "name": "cmdb_ci", - "remoteType": "WDC_STRING" - }, - { - "name": "approval_set", - "remoteType": "WDC_DATETIME" - }, - { - "name": "parent", - "remoteType": "WDC_STRING" - }, - { - "name": "number", - "remoteType": "WDC_STRING" - }, - { - "name": "state", - "remoteType": "WDC_INT" - }, - { - "name": "time_worked", - "remoteType": "WDC_STRING" - }, - { - "name": "location", - "remoteType": "WDC_STRING" - }, - { - "name": "order", - "remoteType": "WDC_INT" - }, - { - "name": "calendar_duration", - "remoteType": "WDC_DATETIME" - }, - { - "name": "business_duration", - "remoteType": "WDC_DATETIME" - }, - { - "name": "reassignment_count", - "remoteType": "WDC_INT" - }, - { - "name": "closed_by", - "remoteType": "WDC_STRING" - }, - { - "name": "priority", - "remoteType": "WDC_INT" - }, - { - "name": "sys_created_on", - "remoteType": "WDC_DATETIME" - }, - { - "name": "impact", - "remoteType": "WDC_INT" - }, - { - "name": "comments_and_work_notes", - "remoteType": "WDC_STRING" - }, - { - "name": "work_end", - "remoteType": "WDC_DATETIME" - }, - { - "name": "sys_class_name", - "remoteType": "WDC_STRING" - }, - { - "name": "sys_domain", - "remoteType": "WDC_STRING" - }, - { - "name": "delivery_plan", - "remoteType": "WDC_STRING" - }, - { - "name": "user_input", - "remoteType": "WDC_STRING" - }, - { - "name": "sys_domain_path", - "remoteType": "WDC_STRING" - }, - { - "name": "approval_history", - "remoteType": "WDC_STRING" - }, - { - "name": "work_start", - "remoteType": "WDC_DATETIME" - }, - { - "name": "made_sla", - "remoteType": "WDC_BOOL" - }, - { - "name": "closed_at", - "remoteType": "WDC_DATETIME" - }, - { - "name": "activity_due", - "remoteType": "WDC_DATETIME" - }, - { - "name": "watch_list", - "remoteType": "WDC_STRING" - }, - { - "name": "approval", - "remoteType": "WDC_STRING" - }, - { - "name": "opened_by", - "remoteType": "WDC_STRING" - }, - { - "name": "escalation", - "remoteType": "WDC_INT" - }, - { - "name": "sys_mod_count", - "remoteType": "WDC_INT" - }, - { - "name": "short_description", - "remoteType": "WDC_STRING" - }, - { - "name": "group_list", - "remoteType": "WDC_STRING" - }, - { - "name": "assignment_group", - "remoteType": "WDC_STRING" - }, - { - "name": "opened_at", - "remoteType": "WDC_DATETIME" - }, - { - "name": "sys_updated_by", - "remoteType": "WDC_STRING" - }, - { - "name": "assigned_to", - "remoteType": "WDC_STRING" - }, - { - "name": "contact_type", - "remoteType": "WDC_STRING" - }, - { - "name": "work_notes_list", - "remoteType": "WDC_STRING" - }, - { - "name": "upon_approval", - "remoteType": "WDC_STRING" - }, - { - "name": "expected_start", - "remoteType": "WDC_DATETIME" - }, - { - "name": "knowledge", - "remoteType": "WDC_BOOL" - }, - { - "name": "delivery_task", - "remoteType": "WDC_STRING" - }, - { - "name": "work_notes", - "remoteType": "WDC_STRING" - }, - { - "name": "company", - "remoteType": "WDC_STRING" - }, - { - "name": "business_service", - "remoteType": "WDC_STRING" - }, - { - "name": "close_notes", - "remoteType": "WDC_STRING" - }, - { - "name": "sys_created_by", - "remoteType": "WDC_STRING" - }, - { - "name": "correlation_id", - "remoteType": "WDC_STRING" - }, - { - "name": "sla_due", - "remoteType": "WDC_DATETIME" - }, - { - "name": "active", - "remoteType": "WDC_BOOL" - }, - { - "name": "correlation_display", - "remoteType": "WDC_STRING" - }, - { - "name": "follow_up", - "remoteType": "WDC_DATETIME" - } - ] - }, - { - "id": "f9588215-a80d-42e8-0bd3-c3b110a19e22", - "name": "sys_user_group", - "database": { - "name": "ven01911" - }, - "schema": "", - "fullName": "[sys_user_group]", - "connectionType": "webdata-direct:servicenowitsm-servicenowitsm", - "description": "", - "columns": [ - { - "name": "u_u", - "remoteType": "WDC_STRING" - }, - { - "name": "sys_updated_by", - "remoteType": "WDC_STRING" - }, - { - "name": "source", - "remoteType": "WDC_STRING" - }, - { - "name": "exclude_manager", - "remoteType": "WDC_BOOL" - }, - { - "name": "description", - "remoteType": "WDC_STRING" - }, - { - "name": "cost_center", - "remoteType": "WDC_STRING" - }, - { - "name": "sys_created_by", - "remoteType": "WDC_STRING" - }, - { - "name": "parent", - "remoteType": "WDC_STRING" - }, - { - "name": "sys_mod_count", - "remoteType": "WDC_INT" - }, - { - "name": "sys_updated_on", - "remoteType": "WDC_DATETIME" - }, - { - "name": "u_lucha", - "remoteType": "WDC_STRING" - }, - { - "name": "sys_id", - "remoteType": "WDC_STRING" - }, - { - "name": "u_lu2", - "remoteType": "WDC_STRING" - }, - { - "name": "type", - "remoteType": "WDC_STRING" - }, - { - "name": "roles", - "remoteType": "WDC_STRING" - }, - { - "name": "sys_created_on", - "remoteType": "WDC_DATETIME" - }, - { - "name": "default_assignee", - "remoteType": "WDC_STRING" - }, - { - "name": "email", - "remoteType": "WDC_STRING" - }, - { - "name": "manager", - "remoteType": "WDC_STRING" - }, - { - "name": "name", - "remoteType": "WDC_STRING" - }, - { - "name": "active", - "remoteType": "WDC_BOOL" - }, - { - "name": "include_members", - "remoteType": "WDC_BOOL" - } - ] - }, - { - "id": "fffba843-b0c6-c083-0f6f-5c2ea5075d50", - "name": "problem", - "database": { - "name": "ven01911" - }, - "schema": "", - "fullName": "[problem]", - "connectionType": "webdata-direct:servicenowitsm-servicenowitsm", - "description": "", - "columns": [ - { - "name": "opened_by", - "remoteType": "WDC_STRING" - }, - { - "name": "sys_class_name", - "remoteType": "WDC_STRING" - }, - { - "name": "sys_created_by", - "remoteType": "WDC_STRING" - }, - { - "name": "sys_updated_on", - "remoteType": "WDC_DATETIME" - }, - { - "name": "closed_by", - "remoteType": "WDC_STRING" - }, - { - "name": "close_notes", - "remoteType": "WDC_STRING" - }, - { - "name": "made_sla", - "remoteType": "WDC_BOOL" - }, - { - "name": "state", - "remoteType": "WDC_INT" - }, - { - "name": "related_incidents", - "remoteType": "WDC_INT" - }, - { - "name": "business_duration", - "remoteType": "WDC_DATETIME" - }, - { - "name": "sys_domain", - "remoteType": "WDC_STRING" - }, - { - "name": "delivery_task", - "remoteType": "WDC_STRING" - }, - { - "name": "priority", - "remoteType": "WDC_INT" - }, - { - "name": "sys_created_on", - "remoteType": "WDC_DATETIME" - }, - { - "name": "sys_id", - "remoteType": "WDC_STRING" - }, - { - "name": "escalation", - "remoteType": "WDC_INT" - }, - { - "name": "business_service", - "remoteType": "WDC_STRING" - }, - { - "name": "comments_and_work_notes", - "remoteType": "WDC_STRING" - }, - { - "name": "rfc", - "remoteType": "WDC_STRING" - }, - { - "name": "sys_domain_path", - "remoteType": "WDC_STRING" - }, - { - "name": "cmdb_ci", - "remoteType": "WDC_STRING" - }, - { - "name": "problem_state", - "remoteType": "WDC_INT" - }, - { - "name": "delivery_plan", - "remoteType": "WDC_STRING" - }, - { - "name": "user_input", - "remoteType": "WDC_STRING" - }, - { - "name": "active", - "remoteType": "WDC_BOOL" - }, - { - "name": "location", - "remoteType": "WDC_STRING" - }, - { - "name": "expected_start", - "remoteType": "WDC_DATETIME" - }, - { - "name": "calendar_duration", - "remoteType": "WDC_DATETIME" - }, - { - "name": "number", - "remoteType": "WDC_STRING" - }, - { - "name": "sla_due", - "remoteType": "WDC_DATETIME" - }, - { - "name": "work_notes_list", - "remoteType": "WDC_STRING" - }, - { - "name": "knowledge", - "remoteType": "WDC_BOOL" - }, - { - "name": "sys_updated_by", - "remoteType": "WDC_STRING" - }, - { - "name": "time_worked", - "remoteType": "WDC_STRING" - }, - { - "name": "order", - "remoteType": "WDC_INT" - }, - { - "name": "assignment_group", - "remoteType": "WDC_STRING" - }, - { - "name": "upon_approval", - "remoteType": "WDC_STRING" - }, - { - "name": "company", - "remoteType": "WDC_STRING" - }, - { - "name": "opened_at", - "remoteType": "WDC_DATETIME" - }, - { - "name": "group_list", - "remoteType": "WDC_STRING" - }, - { - "name": "work_around", - "remoteType": "WDC_STRING" - }, - { - "name": "description", - "remoteType": "WDC_STRING" - }, - { - "name": "work_end", - "remoteType": "WDC_DATETIME" - }, - { - "name": "correlation_id", - "remoteType": "WDC_STRING" - }, - { - "name": "approval_set", - "remoteType": "WDC_DATETIME" - }, - { - "name": "urgency", - "remoteType": "WDC_INT" - }, - { - "name": "impact", - "remoteType": "WDC_INT" - }, - { - "name": "short_description", - "remoteType": "WDC_STRING" - }, - { - "name": "approval", - "remoteType": "WDC_STRING" - }, - { - "name": "closed_at", - "remoteType": "WDC_DATETIME" - }, - { - "name": "known_error", - "remoteType": "WDC_BOOL" - }, - { - "name": "due_date", - "remoteType": "WDC_DATETIME" - }, - { - "name": "work_start", - "remoteType": "WDC_DATETIME" - }, - { - "name": "activity_due", - "remoteType": "WDC_DATETIME" - }, - { - "name": "sys_mod_count", - "remoteType": "WDC_INT" - }, - { - "name": "correlation_display", - "remoteType": "WDC_STRING" - }, - { - "name": "contact_type", - "remoteType": "WDC_STRING" - }, - { - "name": "additional_assignee_list", - "remoteType": "WDC_STRING" - }, - { - "name": "approval_history", - "remoteType": "WDC_STRING" - }, - { - "name": "reassignment_count", - "remoteType": "WDC_INT" - }, - { - "name": "follow_up", - "remoteType": "WDC_DATETIME" - }, - { - "name": "comments", - "remoteType": "WDC_STRING" - }, - { - "name": "work_notes", - "remoteType": "WDC_STRING" - }, - { - "name": "parent", - "remoteType": "WDC_STRING" - }, - { - "name": "assigned_to", - "remoteType": "WDC_STRING" - }, - { - "name": "watch_list", - "remoteType": "WDC_STRING" - }, - { - "name": "upon_reject", - "remoteType": "WDC_STRING" - } - ] - } - ], - "downstreamSheets": [ - { - "id": "e70a540d-55ed-b9cc-5a3c-01ebe81a1274", - "name": "Age of Active Problems" - }, - { - "id": "b679da5e-7d03-f01e-b2ea-01fb3c1926dc", - "name": "Tooltip - Problem Breakdown by Priority" - }, - { - "id": "b207c2f2-b675-32e3-2663-17bb836a018b", - "name": "Overdue Problems" - }, - { - "id": "2b73b9dd-4ec7-75ca-f2e9-fa1984ca8b72", - "name": "Opened Problems" - }, - { - "id": "53b8dc2f-8ada-51f7-7422-fe82e9b803cc", - "name": "High and Critical Priority Problems" - }, - { - "id": "618b3e76-75c1-cb31-0c61-3f4890b72c31", - "name": "Known Errors" - } - ], - "fields": [ - { - "__typename": "ColumnField", - "id": "00063251-7439-42d0-92ed-ef1e4780f535", - "name": "SLA due (Problem)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "01e9bb1a-4104-6015-c523-a8ced60c0141", - "name": "Reassignment count", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "082a9196-5708-f04c-fea5-4b41017364a4", - "name": "Active (Group)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "BOOLEAN", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "0a750e32-3a43-ba4b-8965-414be6582d71", - "name": "Expected start", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "0d28c5bd-5a38-b27a-ab29-dd463cb88781", - "name": "Expected start (Problem)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "0d469bda-c335-56e9-5a99-e5ff72fc3eb5", - "name": "Description", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "0e6317db-3c7e-6108-142f-b135c7c5446e", - "name": "Impact", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "102561e9-3e82-6fb0-8cf0-5358554ced64", - "name": "Location (Problem)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "107ea9de-0cb0-68d4-7fa0-88cb302111f9", - "name": "Created by (Group)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "1273ded0-48d6-124a-6478-c890e710d77b", - "name": "Time worked", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "15497da4-f39e-eee6-ff86-a62a21ab018e", - "name": "Active (Problem)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "BOOLEAN", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "1708b90c-543c-1187-12e4-5fb2efc4398d", - "name": "Duration", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "17737de3-7edf-6e9f-98f9-4babf6c1ec52", - "name": "Default assignee", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "1810002a-23d7-fb93-88ba-8929d7ae6626", - "name": "Updates", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "1a6643b1-0d5e-10b1-ce9e-8e899f5bb74d", - "name": "Workaround", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "CalculatedField", - "id": "1b0ade5c-b27a-37c9-3777-5f1b10db972e", - "name": "Overdue", - "description": null, - "isHidden": false, - "folderName": null, - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "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}" - }, - { - "__typename": "ColumnField", - "id": "1cc3d024-5f16-0c4b-2a11-f25e74a529f7", - "name": "Domain Path", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "204940b8-ad53-93bc-7f4e-0c49a1ced7c8", - "name": "Number", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "20a816a9-cd49-1c22-c174-68cabbdfb5d6", - "name": "Approval", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "20ca442a-ce32-096c-1930-631070435f6a", - "name": "Created by (Problem)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "221c3b38-b379-ca91-033c-12e1c3bdc2a6", - "name": "Closed by (Problem)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "2434f7f7-34cc-38bf-1a6d-b38cda03767d", - "name": "Approval set", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "2636292d-03af-c4bf-1d23-125e93817c46", - "name": "Short description (Problem)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "275cd5a0-27af-24b5-dceb-7b949069c5b1", - "name": "Updated by (Problem)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "27b9efb6-3bf8-554c-6483-90302baea5a4", - "name": "Sys ID (Problem)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "286f168e-6791-76ec-a3fd-5869e249a90d", - "name": "Work notes (Problem)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "29bf12fc-c7cb-2646-0018-d1ad17df380e", - "name": "Escalation", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "2a16d7b7-664b-e4fb-5992-9e46656be0f6", - "name": "Migrated Data", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "TABLE", - "defaultFormat": null, - "aggregation": null, - "columns": [] - }, - { - "__typename": "ColumnField", - "id": "2b288274-2ad4-46e5-e3a4-083d40c27ca5", - "name": "Correlation display", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "2c072517-9087-302b-45d2-f1784dbabadb", - "name": "Business service", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "2dcbb622-7def-1148-f71d-7e684889280c", - "name": "Knowledge", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "BOOLEAN", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "2ddcc070-6825-e04c-0f86-71b41a108592", - "name": "Comments and Work notes (Problem)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "2e6f4141-1ff0-23f8-ca7b-7e2f725e429c", - "name": "Delivery task (Problem)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "2edd6e6a-0441-a361-3c1c-787fee02887b", - "name": "Delivery task", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "2eddd399-9dd8-6077-b068-6170fe145c9a", - "name": "Work notes list (Problem)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "314b11a4-eb95-e74a-485b-b9e701ba63ca", - "name": "Work notes list", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "31bb1233-4c26-8c2b-b01d-e3257257b20a", - "name": "Opened by (Problem)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "37ff2384-09ee-37a0-68de-50fcf93dad5e", - "name": "Parent (Problem)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "3983e917-c97c-2ef3-3646-c8b7ed6b7cde", - "name": "Escalation (Problem)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "39cb645a-f49b-46ba-e105-0d4e5a557a50", - "name": "u", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "3a946020-200f-ef9c-3ffb-dc3d1d7f8d83", - "name": "Due date", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "CalculatedField", - "id": "3ca79cbf-1f11-1c6b-8cff-8809fb78847d", - "name": "Time Span Breakdown", - "description": null, - "isHidden": false, - "folderName": null, - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "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" - }, - { - "__typename": "ColumnField", - "id": "3d079b7f-055a-9e32-a556-06b5ba88b724", - "name": "Activity due", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "3d9a1e8a-dece-0426-1de3-ce1b17f280bc", - "name": "Made SLA (Problem)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "BOOLEAN", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "3e307351-7b04-b559-f1b1-ae2e7540399b", - "name": "Business duration", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "4385ee61-4737-cf60-8a23-98e27ce055c5", - "name": "u_", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "463b329f-3168-d7ba-51c2-9fc559c59e74", - "name": "Change request", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "474dbfe8-d6ab-6ce9-615f-2b8c7cd72c1f", - "name": "Close notes (Problem)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "47a4c0ce-80ed-c19f-318e-a939a71e23b8", - "name": "Correlation display (Problem)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "4898fa27-e5c9-e339-83c0-95afb40a6f3c", - "name": "Approval set (Problem)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "4b2193e9-48cf-e370-2354-08960ecb2669", - "name": "Upon approval (Problem)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "4bc64791-96fa-d9bf-46bc-3fb125979a8b", - "name": "Follow up (Problem)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "4e71e5aa-56fe-adf9-1c4c-9172d06d7bd0", - "name": "Updates (Problem)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "51b313dc-a42c-fee6-bf29-b00afd3afeeb", - "name": "Assigned to (Problem)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "CalculatedField", - "id": "545b9d43-eae2-8cbc-99d0-27058e192e95", - "name": "% of Overdue", - "description": null, - "isHidden": false, - "folderName": null, - "role": "MEASURE", - "dataType": "REAL", - "defaultFormat": "p0%", - "aggregation": null, - "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])})" - }, - { - "__typename": "ColumnField", - "id": "5563d48f-36df-74c8-400a-d167d6026e8c", - "name": "Sys ID (Group)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "56c61068-74ae-1683-4285-ab67e479b2b1", - "name": "Updated (Problem)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "57b8ab3a-2a5e-8762-a1a6-7f4619af8f45", - "name": "Approval (Problem)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "597b6c72-023a-971a-ab51-d8a0175f3980", - "name": "Time worked (Problem)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "59ac55b4-449a-a192-52d0-89fd0311c100", - "name": "Assignment group", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "5a1b706a-7d10-2971-26e7-16e2dc023fbd", - "name": "SLA due", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "5ae351de-6951-d9bb-6084-905aaf36acc7", - "name": "Created", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "5ae89446-3361-5c2b-aff0-96fe2133779f", - "name": "Created by", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "5e86cadb-a132-14db-8a23-c8e2d7cbebd5", - "name": "Cost center", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "5ea7e018-fcdd-e7f0-12c2-5059b8a95631", - "name": "Delivery plan (Problem)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "637edfdf-a02f-d4b2-695d-58f86520a466", - "name": "Domain (Problem)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "639e97db-56cb-5c83-c39f-f79a3acc7a0a", - "name": "Activity due (Problem)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "644f210f-5b10-ac75-d6f4-c0b1d364af30", - "name": "Group list", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "64591d51-9d4a-2759-7852-87aa2bcb0438", - "name": "Roles", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "CalculatedField", - "id": "6815a7f2-82b4-4b5f-7212-20c3894eeb0e", - "name": "Total # Problems", - "description": null, - "isHidden": false, - "folderName": null, - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": "Attribute", - "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])}" - }, - { - "__typename": "ColumnField", - "id": "6e395433-83a6-cfa2-a243-195b96674a7f", - "name": "Additional comments", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "6fb1d4f0-f0ba-0f95-2f7c-20bba021df32", - "name": "Duration (Problem)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "70078cf3-13bd-863d-594c-bd8e9e4680cc", - "name": "Updated by", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "730d411d-1a9e-391f-6749-cb86f81fd10c", - "name": "Domain Path (Problem)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "73d0ea57-a4b1-a2d7-41dd-06c010809086", - "name": "Parent (Group)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "761ab98a-f63e-9487-9164-4e67ff5847e8", - "name": "Watch list", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "76552343-464f-748f-8fd5-8466ad906420", - "name": "Due date (Problem)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "78c21e64-d43e-5b59-22cc-647b77ecf64e", - "name": "Business duration (Problem)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "7ab7701e-d395-2505-c768-2f9d6e2903f5", - "name": "Urgency (Problem)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "7bdbc329-3b53-ddc9-451a-62e95d19406b", - "name": "Correlation ID", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "7cc637cf-bb98-8073-bc08-cd06bd457ae2", - "name": "Work start (Problem)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "7de3a818-2d72-9b14-320c-321fd1879aaf", - "name": "Contact type", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "7defb5b3-27c6-3039-d2bd-2a9f1f272752", - "name": "Urgency", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "CalculatedField", - "id": "800b5b29-6e5a-7c6f-af58-1da43992b340", - "name": "Number of Records", - "description": null, - "isHidden": true, - "folderName": null, - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "formula": "1" - }, - { - "__typename": "ColumnField", - "id": "80648b09-43b9-511c-767c-773a1c79ee4e", - "name": "Opened (Problem)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "825a07ec-113e-cb1b-5659-bdfcd18f6ea9", - "name": "Sys ID", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "82ae3f36-177c-7979-3b5e-9ee6b16341c7", - "name": "Manager", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "82fe5c00-66b0-38bd-6d12-fce5418c2110", - "name": "Exclude manager", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "BOOLEAN", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "832b6e6d-3a12-3d68-ffda-e17819eae225", - "name": "Lucha", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "858f09a3-a80b-b76b-4815-8310678912fe", - "name": "Task type", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "868fffe2-1903-0353-cf1a-c32043339e5e", - "name": "Made SLA", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "BOOLEAN", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "87c90db6-cf07-0b3e-229b-8cd23147bb86", - "name": "Priority (Problem)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "88d4c61c-dc52-28ca-1a67-5bcb0aef88e5", - "name": "Description (Group)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "89d75169-9239-7079-0412-68b71f6442ba", - "name": "Created (Problem)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "8b607f1a-3a69-256d-b3ca-9a2b6bc9654a", - "name": "Order (Problem)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "8e72964b-8ffc-f855-62f9-cff5536f7153", - "name": "Company", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "CalculatedField", - "id": "90ef2358-7bd1-5aaa-0df1-76dabec7a66a", - "name": "Problems with Related Incidents", - "description": null, - "isHidden": false, - "folderName": null, - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "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)" - }, - { - "__typename": "ColumnField", - "id": "9197aa16-fb9b-9da7-dd36-57c441dd7f45", - "name": "Follow up", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "923b2b13-ea7d-a516-9b38-dae12dbd867e", - "name": "User input (Problem)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "931f2ad1-5ec9-144a-bf79-c355831fb5eb", - "name": "Name", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "940b4d67-33e7-882b-577f-f144f2b01da1", - "name": "Parent", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "94caead7-f1f1-ddd5-0887-42812ab147a2", - "name": "Related Incidents", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "95a0d3c4-4186-cfa8-6327-8d4c98125945", - "name": "Watch list (Problem)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "981b7ffe-d4bf-532d-2b8e-a0010f08e9ea", - "name": "Updated", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "98dbe828-7c43-eb7e-c46f-00d3f398dfdb", - "name": "State (Problem)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "9998c2e0-3141-5e59-f0fe-119e568774af", - "name": "Closed by", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "9a6c26c4-84ba-fe54-9cdc-6cac2c443096", - "name": "Task type (Problem)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "a7e005c8-34bb-bc7f-eb1f-a35898e083cf", - "name": "Group list (Problem)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "ab2aa63d-c73a-9cf9-9a54-9d469d47e890", - "name": "Opened", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "ab6b575a-355a-a33e-f5dd-758009a5d727", - "name": "User input", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "ad860ae9-1f1e-190b-774c-9e30d3666e8f", - "name": "Source", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "ae576f09-897e-d919-b991-216abbbb676f", - "name": "Closed (Problem)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "b02e54fa-0cd0-d28d-c391-b5a0b89fc1c6", - "name": "Opened by", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "b0fdc0c9-bf62-8b24-8582-17c8685ec9c1", - "name": "Work start", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "b10a9c7b-377b-3b0d-d172-487a7ca329ba", - "name": "Additional assignee list (Problem)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "CalculatedField", - "id": "b34308cc-f30c-a5bb-52b9-78c00f2f461c", - "name": "% of known error", - "description": null, - "isHidden": false, - "folderName": null, - "role": "MEASURE", - "dataType": "REAL", - "defaultFormat": "p0.0%", - "aggregation": null, - "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])" - }, - { - "__typename": "ColumnField", - "id": "b3641005-3974-868f-2a61-0dce2e083ef9", - "name": "Work end", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "baa48968-d807-7a6f-e46e-a60f97216aae", - "name": "Problem state", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "c09ee363-0a77-cf4b-bc0b-58cd5ed9b623", - "name": "Upon approval", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "c1cae107-4e52-e8e6-286b-28ac285128d7", - "name": "Domain", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "c1ef3114-424a-b7d7-3559-989b2bbc4f48", - "name": "Reassignment count (Problem)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "c53ead8c-9d9c-4c32-8fdb-841e30b0a532", - "name": "Contact type (Problem)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "c5aba5a9-0447-90c7-bfa0-064ee2a5c809", - "name": "Upon reject (Problem)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "c5c20844-5802-c8a9-ef9d-a62e1972f94a", - "name": "Close notes", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "CalculatedField", - "id": "c64607f1-c00a-88b8-b4ea-4018f7dff6f0", - "name": "Max Year?", - "description": null, - "isHidden": false, - "folderName": null, - "role": "DIMENSION", - "dataType": "BOOLEAN", - "defaultFormat": null, - "aggregation": null, - "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])})" - }, - { - "__typename": "ColumnField", - "id": "c790ee85-ee15-0cbb-9782-98312c7903c5", - "name": "Configuration item (Problem)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "c7cd50dd-1459-4d24-fe94-96611ccd7a6e", - "name": "Short description", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "c8a9edb7-a929-3eeb-f005-4ff46ef1a6ac", - "name": "Company (Problem)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "c8c90936-8146-8283-8b27-66104b99ebe6", - "name": "Work notes", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "c973b995-ccca-201f-0ea3-5b8ac1625d99", - "name": "Delivery plan", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "ca6e50f9-4097-4aaf-ead3-ec6cce910e20", - "name": "Additional comments (Problem)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "ced911f2-2ff8-60e3-e522-36f7c8f7a28d", - "name": "Knowledge (Problem)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "BOOLEAN", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "cf7efd6f-3e9d-0bf4-b96d-4404194690e6", - "name": "Known error", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "BOOLEAN", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "cfafc137-c841-f1a8-42a7-c976624ec73d", - "name": "Group email", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "CalculatedField", - "id": "cff99350-e836-7226-8050-3163d587b479", - "name": "Age of Problems", - "description": null, - "isHidden": false, - "folderName": null, - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "formula": "//Calculates the age of active problems since opened until now\r\n\r\nDATEDIFF('second', [Opened], NOW())" - }, - { - "__typename": "ColumnField", - "id": "cffb2549-3525-3117-9d65-855e28d41fdd", - "name": "Priority", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": "Sum", - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "d1233d09-863c-94bc-ea08-a962f932462e", - "name": "Comments and Work notes", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "d347b9a8-e7ad-d29c-c65e-bf0794aae411", - "name": "Measure Values", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "REAL", - "defaultFormat": null, - "aggregation": null, - "columns": [] - }, - { - "__typename": "ColumnField", - "id": "d4120dbf-7a9a-8dcc-b04d-46d252167368", - "name": "Approval history", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "d8f9b0fd-70f2-8a37-b5d2-42659cbb4bef", - "name": "Assigned to", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "da47cb47-8e2e-9a86-a3de-30b06bb627a4", - "name": "Impact (Problem)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "dd85d612-daca-60b3-433b-83508d004b1f", - "name": "Updated (Group)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "CalculatedField", - "id": "de196a57-20e2-9501-3d72-f8e2681266c8", - "name": "% of critical and high priority", - "description": null, - "isHidden": false, - "folderName": null, - "role": "MEASURE", - "dataType": "REAL", - "defaultFormat": "p0%", - "aggregation": null, - "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])" - }, - { - "__typename": "ColumnField", - "id": "de60a6dd-ae9a-3b7c-edf8-d24f5f53fa89", - "name": "Closed", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "e0101592-4d04-fca2-69ee-4716d890b478", - "name": "Configuration item", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "e3250a75-40d1-430a-8e8d-91ccb4cdbd06", - "name": "Business service (Problem)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "e5311592-2aff-4c2b-6e39-394467561292", - "name": "Additional assignee list", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "e557ac82-16de-15b8-05b6-5ab147b282da", - "name": "Include members", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "BOOLEAN", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "e99ce6f7-1be9-1631-5ac1-5c9a7fa1843e", - "name": "Order", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "ea90347e-f01d-6dc2-0676-215bd646281a", - "name": "Measure Names", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [] - }, - { - "__typename": "ColumnField", - "id": "eae5703d-877a-a98b-e050-73333ab7ea7f", - "name": "Location", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "ec7efb26-fd01-82de-28dd-194ebd3da3f5", - "name": "Description (Problem)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "CalculatedField", - "id": "ec9379d0-f48b-577e-2314-6288c3f4a3a0", - "name": "Current Year Total Cases", - "description": null, - "isHidden": false, - "folderName": null, - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": "Attribute", - "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}" - }, - { - "__typename": "ColumnField", - "id": "f0476fba-cb04-884e-9b6d-1de64a00c645", - "name": "Created (Group)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "f432316d-59f3-0369-3ce6-867f880c671b", - "name": "Updated by (Group)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "f593d9e0-cb42-a787-c4b1-61aab31ba3be", - "name": "Number (Problem)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "f6583bf8-59b8-9722-3b91-86b33f998413", - "name": "State", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "f67c0bb4-2ec3-aa3a-6b92-bd697c6bbe80", - "name": "Approval history (Problem)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "f7b024b2-3ea3-4fbc-199c-b501cddaa7d5", - "name": "Type", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "f8d5647e-11f4-0fc7-d121-92a980617707", - "name": "Work end (Problem)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "f971325f-534e-80c6-7cfe-197273a02aaa", - "name": "Upon reject", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "fa53bc38-b45e-4bfa-7ae4-5ae249ef6751", - "name": "Correlation ID (Problem)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "fd8d3177-df25-99c8-707d-76aff8975567", - "name": "Assignment group (Problem)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "CalculatedField", - "id": "fed69289-f04f-e280-fdd5-719cf043ff35", - "name": "Total Active Problems", - "description": null, - "isHidden": false, - "folderName": null, - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": "Attribute", - "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}" - }, - { - "__typename": "ColumnField", - "id": "ff4371e0-3575-3686-23d1-4d035db44f33", - "name": "Active", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "BOOLEAN", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "ffd340a0-8e6c-b2a7-2649-66f7c86f468b", - "name": "Updates (Group)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - } - ], - "upstreamDatasources": [], - "workbook": { - "name": "Executive Dashboard", - "projectName": "default" - } - }, + "id": "801c95e3-b07e-7bfe-3789-a561c7beccd3" + } + ] + }, + { + "id": "661fabd0-bed6-8610-e066-0694a81a6cea", + "name": "Dvdrental Workbook", + "luid": "b2c84ac6-1e37-4ca0-bf9b-62339be046fc", + "projectName": "default", + "owner": { + "username": "jawadqu@gmail.com" + }, + "description": "", + "uri": "sites/4989/workbooks/15619", + "createdAt": "2021-12-17T20:28:31Z", + "updatedAt": "2022-01-18T16:14:34Z", + "sheets": [ { - "__typename": "EmbeddedDatasource", - "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", - "name": "Incidents", - "hasExtracts": true, - "extractLastRefreshTime": "2018-01-18T20:13:08Z", - "extractLastIncrementalUpdateTime": null, - "extractLastUpdateTime": "2018-01-18T20:13:08Z", - "upstreamDatabases": [ - { - "id": "a6fd0ece-d66a-f490-31a0-5563c2fc4ad0", - "name": "ven01911", - "connectionType": "webdata-direct:servicenowitsm-servicenowitsm", - "isEmbedded": true - } - ], - "upstreamTables": [ - { - "id": "0646bea5-97f9-d806-ac63-9b63500d07e9", - "name": "incident", - "database": { - "name": "ven01911" - }, - "schema": "", - "fullName": "[incident]", - "connectionType": "webdata-direct:servicenowitsm-servicenowitsm", - "description": "", - "columns": [ - { - "name": "sys_id", - "remoteType": "WDC_STRING" - }, - { - "name": "correlation_id", - "remoteType": "WDC_STRING" - }, - { - "name": "urgency", - "remoteType": "WDC_INT" - }, - { - "name": "severity", - "remoteType": "WDC_INT" - }, - { - "name": "business_service", - "remoteType": "WDC_STRING" - }, - { - "name": "location", - "remoteType": "WDC_STRING" - }, - { - "name": "approval_set", - "remoteType": "WDC_DATETIME" - }, - { - "name": "closed_at", - "remoteType": "WDC_DATETIME" - }, - { - "name": "parent_incident", - "remoteType": "WDC_STRING" - }, - { - "name": "subcategory", - "remoteType": "WDC_STRING" - }, - { - "name": "company", - "remoteType": "WDC_STRING" - }, - { - "name": "caller_id", - "remoteType": "WDC_STRING" - }, - { - "name": "resolved_at", - "remoteType": "WDC_DATETIME" - }, - { - "name": "group_list", - "remoteType": "WDC_STRING" - }, - { - "name": "correlation_display", - "remoteType": "WDC_STRING" - }, - { - "name": "resolved_by", - "remoteType": "WDC_STRING" - }, - { - "name": "sys_created_on", - "remoteType": "WDC_DATETIME" - }, - { - "name": "business_stc", - "remoteType": "WDC_INT" - }, - { - "name": "sys_domain_path", - "remoteType": "WDC_STRING" - }, - { - "name": "parent", - "remoteType": "WDC_STRING" - }, - { - "name": "category", - "remoteType": "WDC_STRING" - }, - { - "name": "user_input", - "remoteType": "WDC_STRING" - }, - { - "name": "number", - "remoteType": "WDC_STRING" - }, - { - "name": "escalation", - "remoteType": "WDC_INT" - }, - { - "name": "state", - "remoteType": "WDC_INT" - }, - { - "name": "approval_history", - "remoteType": "WDC_STRING" - }, - { - "name": "impact", - "remoteType": "WDC_INT" - }, - { - "name": "expected_start", - "remoteType": "WDC_DATETIME" - }, - { - "name": "additional_assignee_list", - "remoteType": "WDC_STRING" - }, - { - "name": "child_incidents", - "remoteType": "WDC_INT" - }, - { - "name": "cmdb_ci", - "remoteType": "WDC_STRING" - }, - { - "name": "incident_state", - "remoteType": "WDC_INT" - }, - { - "name": "notify", - "remoteType": "WDC_INT" - }, - { - "name": "work_notes", - "remoteType": "WDC_STRING" - }, - { - "name": "reassignment_count", - "remoteType": "WDC_INT" - }, - { - "name": "contact_type", - "remoteType": "WDC_STRING" - }, - { - "name": "opened_by", - "remoteType": "WDC_STRING" - }, - { - "name": "sys_class_name", - "remoteType": "WDC_STRING" - }, - { - "name": "problem_id", - "remoteType": "WDC_STRING" - }, - { - "name": "due_date", - "remoteType": "WDC_DATETIME" - }, - { - "name": "approval", - "remoteType": "WDC_STRING" - }, - { - "name": "description", - "remoteType": "WDC_STRING" - }, - { - "name": "order", - "remoteType": "WDC_INT" - }, - { - "name": "opened_at", - "remoteType": "WDC_DATETIME" - }, - { - "name": "work_notes_list", - "remoteType": "WDC_STRING" - }, - { - "name": "priority", - "remoteType": "WDC_INT" - }, - { - "name": "time_worked", - "remoteType": "WDC_STRING" - }, - { - "name": "sys_domain", - "remoteType": "WDC_STRING" - }, - { - "name": "caused_by", - "remoteType": "WDC_STRING" - }, - { - "name": "sys_updated_by", - "remoteType": "WDC_STRING" - }, - { - "name": "upon_reject", - "remoteType": "WDC_STRING" - }, - { - "name": "delivery_task", - "remoteType": "WDC_STRING" - }, - { - "name": "knowledge", - "remoteType": "WDC_BOOL" - }, - { - "name": "sys_updated_on", - "remoteType": "WDC_DATETIME" - }, - { - "name": "calendar_duration", - "remoteType": "WDC_DATETIME" - }, - { - "name": "closed_by", - "remoteType": "WDC_STRING" - }, - { - "name": "comments", - "remoteType": "WDC_STRING" - }, - { - "name": "short_description", - "remoteType": "WDC_STRING" - }, - { - "name": "assigned_to", - "remoteType": "WDC_STRING" - }, - { - "name": "assignment_group", - "remoteType": "WDC_STRING" - }, - { - "name": "work_end", - "remoteType": "WDC_DATETIME" - }, - { - "name": "reopen_count", - "remoteType": "WDC_INT" - }, - { - "name": "work_start", - "remoteType": "WDC_DATETIME" - }, - { - "name": "made_sla", - "remoteType": "WDC_BOOL" - }, - { - "name": "sys_mod_count", - "remoteType": "WDC_INT" - }, - { - "name": "calendar_stc", - "remoteType": "WDC_INT" - }, - { - "name": "rfc", - "remoteType": "WDC_STRING" - }, - { - "name": "delivery_plan", - "remoteType": "WDC_STRING" - }, - { - "name": "close_code", - "remoteType": "WDC_STRING" - }, - { - "name": "close_notes", - "remoteType": "WDC_STRING" - }, - { - "name": "activity_due", - "remoteType": "WDC_DATETIME" - }, - { - "name": "sys_created_by", - "remoteType": "WDC_STRING" - }, - { - "name": "active", - "remoteType": "WDC_BOOL" - }, - { - "name": "business_duration", - "remoteType": "WDC_DATETIME" - }, - { - "name": "follow_up", - "remoteType": "WDC_DATETIME" - }, - { - "name": "comments_and_work_notes", - "remoteType": "WDC_STRING" - }, - { - "name": "upon_approval", - "remoteType": "WDC_STRING" - }, - { - "name": "watch_list", - "remoteType": "WDC_STRING" - }, - { - "name": "sla_due", - "remoteType": "WDC_DATETIME" - } - ] - }, - { - "id": "22a4144f-6b0d-8fe2-d42e-d0101e38b3b8", - "name": "task", - "schema": "", - "database": { - "name": "ven01911" - }, - "fullName": "[task]", - "connectionType": "webdata-direct:servicenowitsm-servicenowitsm", - "description": "", - "columns": [ - { - "name": "time_worked", - "remoteType": "WDC_STRING" - }, - { - "name": "work_notes_list", - "remoteType": "WDC_STRING" - }, - { - "name": "group_list", - "remoteType": "WDC_STRING" - }, - { - "name": "parent", - "remoteType": "WDC_STRING" - }, - { - "name": "expected_start", - "remoteType": "WDC_DATETIME" - }, - { - "name": "due_date", - "remoteType": "WDC_DATETIME" - }, - { - "name": "work_end", - "remoteType": "WDC_DATETIME" - }, - { - "name": "cmdb_ci", - "remoteType": "WDC_STRING" - }, - { - "name": "business_duration", - "remoteType": "WDC_DATETIME" - }, - { - "name": "work_start", - "remoteType": "WDC_DATETIME" - }, - { - "name": "closed_at", - "remoteType": "WDC_DATETIME" - }, - { - "name": "user_input", - "remoteType": "WDC_STRING" - }, - { - "name": "reassignment_count", - "remoteType": "WDC_INT" - }, - { - "name": "approval", - "remoteType": "WDC_STRING" - }, - { - "name": "short_description", - "remoteType": "WDC_STRING" - }, - { - "name": "impact", - "remoteType": "WDC_INT" - }, - { - "name": "knowledge", - "remoteType": "WDC_BOOL" - }, - { - "name": "closed_by", - "remoteType": "WDC_STRING" - }, - { - "name": "calendar_duration", - "remoteType": "WDC_DATETIME" - }, - { - "name": "delivery_task", - "remoteType": "WDC_STRING" - }, - { - "name": "sla_due", - "remoteType": "WDC_DATETIME" - }, - { - "name": "sys_class_name", - "remoteType": "WDC_STRING" - }, - { - "name": "comments", - "remoteType": "WDC_STRING" - }, - { - "name": "upon_reject", - "remoteType": "WDC_STRING" - }, - { - "name": "upon_approval", - "remoteType": "WDC_STRING" - }, - { - "name": "approval_history", - "remoteType": "WDC_STRING" - }, - { - "name": "sys_created_on", - "remoteType": "WDC_DATETIME" - }, - { - "name": "correlation_id", - "remoteType": "WDC_STRING" - }, - { - "name": "opened_at", - "remoteType": "WDC_DATETIME" - }, - { - "name": "approval_set", - "remoteType": "WDC_DATETIME" - }, - { - "name": "escalation", - "remoteType": "WDC_INT" - }, - { - "name": "sys_id", - "remoteType": "WDC_STRING" - }, - { - "name": "delivery_plan", - "remoteType": "WDC_STRING" - }, - { - "name": "comments_and_work_notes", - "remoteType": "WDC_STRING" - }, - { - "name": "close_notes", - "remoteType": "WDC_STRING" - }, - { - "name": "watch_list", - "remoteType": "WDC_STRING" - }, - { - "name": "description", - "remoteType": "WDC_STRING" - }, - { - "name": "opened_by", - "remoteType": "WDC_STRING" - }, - { - "name": "activity_due", - "remoteType": "WDC_DATETIME" - }, - { - "name": "sys_updated_on", - "remoteType": "WDC_DATETIME" - }, - { - "name": "work_notes", - "remoteType": "WDC_STRING" - }, - { - "name": "sys_updated_by", - "remoteType": "WDC_STRING" - }, - { - "name": "assigned_to", - "remoteType": "WDC_STRING" - }, - { - "name": "assignment_group", - "remoteType": "WDC_STRING" - }, - { - "name": "order", - "remoteType": "WDC_INT" - }, - { - "name": "sys_domain_path", - "remoteType": "WDC_STRING" - }, - { - "name": "sys_mod_count", - "remoteType": "WDC_INT" - }, - { - "name": "business_service", - "remoteType": "WDC_STRING" - }, - { - "name": "priority", - "remoteType": "WDC_INT" - }, - { - "name": "correlation_display", - "remoteType": "WDC_STRING" - }, - { - "name": "active", - "remoteType": "WDC_BOOL" - }, - { - "name": "sys_domain", - "remoteType": "WDC_STRING" - }, - { - "name": "company", - "remoteType": "WDC_STRING" - }, - { - "name": "urgency", - "remoteType": "WDC_INT" - }, - { - "name": "number", - "remoteType": "WDC_STRING" - }, - { - "name": "state", - "remoteType": "WDC_INT" - }, - { - "name": "made_sla", - "remoteType": "WDC_BOOL" - }, - { - "name": "sys_created_by", - "remoteType": "WDC_STRING" - }, - { - "name": "additional_assignee_list", - "remoteType": "WDC_STRING" - }, - { - "name": "contact_type", - "remoteType": "WDC_STRING" - }, - { - "name": "location", - "remoteType": "WDC_STRING" - }, - { - "name": "follow_up", - "remoteType": "WDC_DATETIME" - } - ] - }, - { - "id": "d0c8ed66-15df-e9b5-a86a-227f4d604922", - "name": "cmdb_ci", - "database": { - "name": "ven01911" - }, - "schema": "", - "fullName": "[cmdb_ci]", - "connectionType": "webdata-direct:servicenowitsm-servicenowitsm", - "description": "", - "columns": [ - { - "name": "first_discovered", - "remoteType": "WDC_DATETIME" - }, - { - "name": "operational_status", - "remoteType": "WDC_INT" - }, - { - "name": "last_discovered", - "remoteType": "WDC_DATETIME" - }, - { - "name": "cost_cc", - "remoteType": "WDC_STRING" - }, - { - "name": "checked_in", - "remoteType": "WDC_DATETIME" - }, - { - "name": "attributes", - "remoteType": "WDC_STRING" - }, - { - "name": "serial_number", - "remoteType": "WDC_STRING" - }, - { - "name": "vendor", - "remoteType": "WDC_STRING" - }, - { - "name": "ip_address", - "remoteType": "WDC_STRING" - }, - { - "name": "support_group", - "remoteType": "WDC_STRING" - }, - { - "name": "sys_updated_by", - "remoteType": "WDC_STRING" - }, - { - "name": "asset", - "remoteType": "WDC_STRING" - }, - { - "name": "sys_domain", - "remoteType": "WDC_STRING" - }, - { - "name": "supported_by", - "remoteType": "WDC_STRING" - }, - { - "name": "invoice_number", - "remoteType": "WDC_STRING" - }, - { - "name": "managed_by", - "remoteType": "WDC_STRING" - }, - { - "name": "fault_count", - "remoteType": "WDC_INT" - }, - { - "name": "due_in", - "remoteType": "WDC_STRING" - }, - { - "name": "cost", - "remoteType": "WDC_STRING" - }, - { - "name": "correlation_id", - "remoteType": "WDC_STRING" - }, - { - "name": "justification", - "remoteType": "WDC_STRING" - }, - { - "name": "sys_created_on", - "remoteType": "WDC_DATETIME" - }, - { - "name": "assigned", - "remoteType": "WDC_DATETIME" - }, - { - "name": "model_id", - "remoteType": "WDC_STRING" - }, - { - "name": "sys_class_name", - "remoteType": "WDC_STRING" - }, - { - "name": "comments", - "remoteType": "WDC_STRING" - }, - { - "name": "sys_id", - "remoteType": "WDC_STRING" - }, - { - "name": "company", - "remoteType": "WDC_STRING" - }, - { - "name": "lease_id", - "remoteType": "WDC_STRING" - }, - { - "name": "monitor", - "remoteType": "WDC_BOOL" - }, - { - "name": "cost_center", - "remoteType": "WDC_STRING" - }, - { - "name": "subcategory", - "remoteType": "WDC_STRING" - }, - { - "name": "delivery_date", - "remoteType": "WDC_DATETIME" - }, - { - "name": "assignment_group", - "remoteType": "WDC_STRING" - }, - { - "name": "can_print", - "remoteType": "WDC_BOOL" - }, - { - "name": "short_description", - "remoteType": "WDC_STRING" - }, - { - "name": "model_number", - "remoteType": "WDC_STRING" - }, - { - "name": "name", - "remoteType": "WDC_STRING" - }, - { - "name": "start_date", - "remoteType": "WDC_DATETIME" - }, - { - "name": "discovery_source", - "remoteType": "WDC_STRING" - }, - { - "name": "sys_domain_path", - "remoteType": "WDC_STRING" - }, - { - "name": "assigned_to", - "remoteType": "WDC_STRING" - }, - { - "name": "category", - "remoteType": "WDC_STRING" - }, - { - "name": "schedule", - "remoteType": "WDC_STRING" - }, - { - "name": "fqdn", - "remoteType": "WDC_STRING" - }, - { - "name": "warranty_expiration", - "remoteType": "WDC_DATE" - }, - { - "name": "owned_by", - "remoteType": "WDC_STRING" - }, - { - "name": "asset_tag", - "remoteType": "WDC_STRING" - }, - { - "name": "manufacturer", - "remoteType": "WDC_STRING" - }, - { - "name": "purchase_date", - "remoteType": "WDC_DATE" - }, - { - "name": "location", - "remoteType": "WDC_STRING" - }, - { - "name": "department", - "remoteType": "WDC_STRING" - }, - { - "name": "sys_updated_on", - "remoteType": "WDC_DATETIME" - }, - { - "name": "checked_out", - "remoteType": "WDC_DATETIME" - }, - { - "name": "unverified", - "remoteType": "WDC_BOOL" - }, - { - "name": "skip_sync", - "remoteType": "WDC_BOOL" - }, - { - "name": "po_number", - "remoteType": "WDC_STRING" - }, - { - "name": "order_date", - "remoteType": "WDC_DATETIME" - }, - { - "name": "gl_account", - "remoteType": "WDC_STRING" - }, - { - "name": "maintenance_schedule", - "remoteType": "WDC_STRING" - }, - { - "name": "install_date", - "remoteType": "WDC_DATETIME" - }, - { - "name": "dns_domain", - "remoteType": "WDC_STRING" - }, - { - "name": "sys_created_by", - "remoteType": "WDC_STRING" - }, - { - "name": "mac_address", - "remoteType": "WDC_STRING" - }, - { - "name": "change_control", - "remoteType": "WDC_STRING" - }, - { - "name": "install_status", - "remoteType": "WDC_INT" - }, - { - "name": "due", - "remoteType": "WDC_DATETIME" - }, - { - "name": "sys_mod_count", - "remoteType": "WDC_INT" - } - ] - } - ], - "downstreamSheets": [ - { - "id": "f76d3570-23b8-f74b-d85c-cc5484c2079c", - "name": "Opened Incidents" - }, - { - "id": "e70a540d-55ed-b9cc-5a3c-01ebe81a1274", - "name": "Age of Active Problems" - }, - { - "id": "c14973c2-e1c3-563a-a9c1-8a408396d22a", - "name": "Tooltip - Request Breakdown by Priority" - }, - { - "id": "b679da5e-7d03-f01e-b2ea-01fb3c1926dc", - "name": "Tooltip - Problem Breakdown by Priority" - }, - { - "id": "b207c2f2-b675-32e3-2663-17bb836a018b", - "name": "Overdue Problems" - }, - { - "id": "8385ea9a-0749-754f-7ad9-824433de2120", - "name": "Tooltip - Incident Breakdown by Priority" - }, - { - "id": "7fbc77ba-0ab6-3727-0db3-d8402a804da5", - "name": "Made SLA?" - }, - { - "id": "20fc5eb7-81eb-aa18-8c39-af501c62d085", - "name": "Opened Requests" - }, - { - "id": "2b5351c1-535d-4a4a-1339-c51ddd6abf8a", - "name": "Top 10 Items by Requests and YoY Change" - }, - { - "id": "2b73b9dd-4ec7-75ca-f2e9-fa1984ca8b72", - "name": "Opened Problems" - }, - { - "id": "373c6466-bb0c-b319-8752-632456349261", - "name": "Overdue" - }, - { - "id": "53b8dc2f-8ada-51f7-7422-fe82e9b803cc", - "name": "High and Critical Priority Problems" - }, - { - "id": "58af9ecf-b839-da50-65e1-2e1fa20e3362", - "name": "Total Incidents by Category and YoY Change" - }, - { - "id": "618b3e76-75c1-cb31-0c61-3f4890b72c31", - "name": "Known Errors" - }, - { - "id": "721c3c41-7a2b-16a8-3281-6f948a44be96", - "name": "Overdue Requests" - }, + "id": "8a6a269a-d6de-fae4-5050-513255b40ffc", + "name": "Sheet 1", + "path": "dvdrental/Sheet1", + "createdAt": "2021-12-17T20:28:31Z", + "updatedAt": "2022-01-14T22:39:55Z", + "tags": [], + "containedInDashboards": [ { - "id": "7ef184c1-5a41-5ec8-723e-ae44c20aa335", - "name": "AVG Time to Solve an Incident" + "name": "dvd Rental Dashboard", + "path": "dvdrental/dvdRentalDashboard" } ], - "fields": [ - { - "__typename": "ColumnField", - "id": "00ec352d-e443-5ba2-c389-c2265d6166c2", - "name": "Assignment group", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "02c33011-048b-1afe-fd20-783e5c3c57a9", - "name": "Closed (Incident)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "02c7edfc-f259-6a56-c229-ce6467a3ebe1", - "name": "Updates (Configuration Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "042d4a79-fc1f-4e33-f87d-bc06e3272d36", - "name": "Attributes", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "04fa52d7-3481-c524-7de1-1e73a2620f3a", - "name": "User input", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "05db0bae-0d20-bbf9-b5c4-4a2272ffb839", - "name": "User input (Incident)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "06372073-9eee-a7a0-280e-772b0545be7d", - "name": "Short description (Incident)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "071f5c53-eb36-7ac6-a9b0-a13ca4987175", - "name": "Close notes", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "0746f3ae-e85a-78cf-1b29-4bc3b97e323b", - "name": "Escalation (Incident)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "0a1dbe03-c079-6fe9-7411-fd600af432ae", - "name": "Impact", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "0bc80520-3393-c8ae-3afb-37d0b52b8cf9", - "name": "Close code (Incident)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, + "datasourceFields": [ { "__typename": "ColumnField", - "id": "0bea60c0-2c3f-0113-4030-b914da11166d", - "name": "Migrated Data", + "id": "afb789df-a7d6-0fd8-1c20-4d7725636f32", + "name": "Custom SQL Query", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "4644ccb1-2adc-cf26-c654-04ed1dcc7090", + "name": "Customer Payment Query" + }, "dataCategory": "QUANTITATIVE", "role": "MEASURE", "dataType": "TABLE", - "defaultFormat": null, - "aggregation": null, - "columns": [] - }, - { - "__typename": "ColumnField", - "id": "0c29691d-07aa-e454-e5e1-ae074a812e40", - "name": "Delivery task (Incident)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "0eb84a88-4d6a-ebf5-a959-b67091ea6c1e", - "name": "Created by", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "0fa74f05-78a2-2b3e-e3d3-2028f7988a08", - "name": "Updated by (Configuration Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "10321d43-f20c-d562-b821-77f761ae5cc5", - "name": "Expected start", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "1094b642-9e96-4285-89a3-d85b59e557bc", - "name": "Status", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "10b2216d-6d19-984d-e60f-11d2751f9ec5", - "name": "Notify (Incident)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "113364a6-2476-07a2-e25d-81bc137daf4d", - "name": "Due", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, + "aggregation": null + } + ] + }, + { + "id": "c57a5574-db47-46df-677f-0b708dab14db", + "name": "Sheet 2", + "path": "dvdrental/Sheet2", + "createdAt": "2021-12-17T20:36:55Z", + "updatedAt": "2022-01-14T22:39:55Z", + "tags": [], + "containedInDashboards": [], + "datasourceFields": [ { "__typename": "ColumnField", - "id": "116efdf5-d57d-a3f8-6fb5-334d6fbdab87", - "name": "Closed by", + "id": "08feb4a3-ecd2-8e6e-d3d0-fb27970b4898", + "name": "payment_date", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "4644ccb1-2adc-cf26-c654-04ed1dcc7090", + "name": "Customer Payment Query" + }, + "dataCategory": "ORDINAL", "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "dataType": "DATETIME", + "aggregation": "Year" }, { "__typename": "ColumnField", - "id": "11be7d6b-d6dd-27ac-2975-00c2bd0ff051", - "name": "Upon approval", + "id": "85ce12c3-12b1-fbfc-659f-a0670b193bab", + "name": "amount", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "4644ccb1-2adc-cf26-c654-04ed1dcc7090", + "name": "Customer Payment Query" + }, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "REAL", + "aggregation": "Sum" }, { "__typename": "ColumnField", - "id": "12e4157c-3d2c-4e4e-373b-b204dad0ee61", - "name": "Requires verification", + "id": "afb789df-a7d6-0fd8-1c20-4d7725636f32", + "name": "Custom SQL Query", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "BOOLEAN", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "4644ccb1-2adc-cf26-c654-04ed1dcc7090", + "name": "Customer Payment Query" + }, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "TABLE", + "aggregation": null }, { "__typename": "ColumnField", - "id": "17a9f961-0d61-c619-0959-bf4a2415fe4d", - "name": "Maintenance schedule", + "id": "ba250011-4873-54ad-5b64-c689996216f2", + "name": "First Name", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "4644ccb1-2adc-cf26-c654-04ed1dcc7090", + "name": "Customer Payment Query" + }, "dataCategory": "NOMINAL", "role": "DIMENSION", "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "aggregation": null }, { "__typename": "ColumnField", - "id": "17efeb93-035c-5671-2d6e-eb7256fdc1aa", - "name": "Escalation", + "id": "c04914c4-0a78-1bd1-acb7-ebf0d704c609", + "name": "customer_id", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "4644ccb1-2adc-cf26-c654-04ed1dcc7090", + "name": "Customer Payment Query" + }, "dataCategory": "QUANTITATIVE", "role": "MEASURE", "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "aggregation": "Sum" }, { "__typename": "ColumnField", - "id": "1aa6af8e-0f29-d3bf-b81b-35b214d1e59d", - "name": "Updates (Incident)", + "id": "c68badd9-86d7-c554-d287-9f21d1ac113b", + "name": "rental_id", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "4644ccb1-2adc-cf26-c654-04ed1dcc7090", + "name": "Customer Payment Query" + }, "dataCategory": "QUANTITATIVE", "role": "MEASURE", "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "aggregation": "Sum" }, { "__typename": "ColumnField", - "id": "1af25d71-cdea-286d-4bac-402a54342d5c", - "name": "Parent", + "id": "eb9b61e1-5209-4586-7af0-b69cd0df25c9", + "name": "Last Name", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "4644ccb1-2adc-cf26-c654-04ed1dcc7090", + "name": "Customer Payment Query" + }, "dataCategory": "NOMINAL", "role": "DIMENSION", "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, + "aggregation": null + } + ] + }, + { + "id": "e604255e-0573-3951-6db7-05bee48116c1", + "name": "Sheet 3", + "path": "dvdrental/Sheet3", + "createdAt": "2021-12-24T19:50:56Z", + "updatedAt": "2022-01-14T22:39:55Z", + "tags": [ { - "__typename": "ColumnField", - "id": "1c558792-0edc-0e33-4077-4ce995aa27ff", - "name": "Domain Path (Configuration Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, + "name": "TagSheet3" + } + ], + "containedInDashboards": [], + "datasourceFields": [ { - "__typename": "ColumnField", - "id": "1cbdb3ed-aec2-9f14-b5b2-eb3c83f49cd9", - "name": "Location (Incident)", + "__typename": "DatasourceField", + "id": "a69ba55b-4434-6988-e276-06183ba7ee63", + "name": "Category", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "d00f4ba6-707e-4684-20af-69eb47587cc2", + "name": "Superstore Datasource" + }, + "remoteField": { + "__typename": "ColumnField", + "id": "2e0aa617-9d3d-15db-3597-17b8ccda2381", + "name": "Category", + "description": null, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "aggregation": "Count" + } }, { - "__typename": "ColumnField", - "id": "1d2f0e36-1814-07e0-506e-4f52682c58c5", - "name": "Upon reject", + "__typename": "DatasourceField", + "id": "cbf261c1-b86b-2f51-7aa7-9ec601acdadf", + "name": "Segment", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "d00f4ba6-707e-4684-20af-69eb47587cc2", + "name": "Superstore Datasource" + }, + "remoteField": { + "__typename": "ColumnField", + "id": "0e75ad46-7474-6e02-6d1b-20781db40587", + "name": "Segment", + "description": null, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "aggregation": "Count" + } }, { - "__typename": "ColumnField", - "id": "1d416d43-d670-315f-6a16-ae861d4f1ac2", - "name": "Warranty expiration", + "__typename": "DatasourceField", + "id": "eaad917f-9a67-d25b-2f18-7c740e9064a7", + "name": "Customer Name", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATE", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "d00f4ba6-707e-4684-20af-69eb47587cc2", + "name": "Superstore Datasource" + }, + "remoteField": { + "__typename": "ColumnField", + "id": "cfcbc551-00d3-c773-3d68-5cafabc95b61", + "name": "Customer Name", + "description": null, + "folderName": null, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "aggregation": null + } + } + ] + } + ], + "dashboards": [ + { + "id": "20e44c22-1ccd-301a-220c-7b6837d09a52", + "name": "dvd Rental Dashboard", + "path": "dvdrental/dvdRentalDashboard", + "createdAt": "2021-12-17T20:44:26Z", + "updatedAt": "2022-01-14T22:39:55Z", + "sheets": [ { - "__typename": "ColumnField", - "id": "1e0edf18-0901-532a-5451-fa2314e0859b", - "name": "GL account", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, + "id": "8a6a269a-d6de-fae4-5050-513255b40ffc", + "name": "Sheet 1" + } + ] + }, + { + "id": "39b7a1de-6276-cfc7-9b59-1d22f3bbb06b", + "name": "Story 1", + "path": "dvdrental/Story1", + "createdAt": "2021-12-17T20:44:26Z", + "updatedAt": "2022-01-14T22:39:55Z", + "sheets": [] + } + ], + "embeddedDatasources": [ + { + "id": "4644ccb1-2adc-cf26-c654-04ed1dcc7090" + }, + { + "id": "618c87db-5959-338b-bcc7-6f5f4cc0b6c6" + }, + { + "id": "d00f4ba6-707e-4684-20af-69eb47587cc2" + } + ], + "upstreamDatasources": [ + { + "id": "6cbbeeb2-9f3a-00f6-2342-17139d6e97ae", + "name": "Superstore Datasource", + "downstreamSheets": [ + { + "id": "e604255e-0573-3951-6db7-05bee48116c1", + "name": "Sheet 3" + } + ] + } + ] + }, + { + "id": "6ffa5a7f-d852-78f1-6c6d-20ac23610ebf", + "name": "Executive Dashboard", + "luid": "68ebd5b2-ecf6-4fdf-ba1a-95427baef506", + "projectName": "default", + "owner": { + "username": "jawadqu@gmail.com" + }, + "description": "", + "uri": "sites/4989/workbooks/15605", + "createdAt": "2021-12-17T19:14:10Z", + "updatedAt": "2021-12-17T19:15:02Z", + "sheets": [ + { + "id": "20fc5eb7-81eb-aa18-8c39-af501c62d085", + "name": "Opened Requests", + "path": "", + "createdAt": "2021-12-17T19:14:10Z", + "updatedAt": "2021-12-17T19:15:02Z", + "tags": [], + "containedInDashboards": [ + { + "name": "Executive Dashboard", + "path": "ExecutiveDashboard/ExecutiveDashboard" + } + ], + "datasourceFields": [ { "__typename": "ColumnField", - "id": "1f0b8af8-dd21-5086-e32a-493255b339a0", - "name": "Additional assignee list (Incident)", + "id": "04dc385d-8417-aa5f-3f4c-27c4333fdb5e", + "name": "Opened", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "06c3e060-8133-4b58-9b53-a0fced25e056", + "name": "Requests" + }, + "dataCategory": "ORDINAL", "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "dataType": "DATETIME", + "aggregation": null }, { - "__typename": "ColumnField", - "id": "1fc74be7-19ba-f42b-1e8d-86447923b8a7", - "name": "Opened by", + "__typename": "CalculatedField", + "id": "13b03dc6-0c35-2d6c-309b-4e38cf5f9ec0", + "name": "Total # Request", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "06c3e060-8133-4b58-9b53-a0fced25e056", + "name": "Requests" + }, + "role": "MEASURE", + "dataType": "INTEGER", + "aggregation": "Attribute", + "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])}" }, { "__typename": "ColumnField", - "id": "1ffef80b-0b82-08eb-dffb-16d5937421f2", - "name": "Work notes", + "id": "23e08774-36b9-497e-3d14-df6cb90499d9", + "name": "Due date", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "06c3e060-8133-4b58-9b53-a0fced25e056", + "name": "Requests" + }, + "dataCategory": "ORDINAL", "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "dataType": "DATETIME", + "aggregation": null }, { "__typename": "ColumnField", - "id": "214d0ca1-26b3-ff80-68b5-1af3fbbac2ce", - "name": "Additional assignee list", + "id": "2faad672-a1ff-95d1-67c9-2fd6bda9e8b9", + "name": "Priority", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, + "dataCategory": "ORDINAL", "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "dataType": "INTEGER", + "aggregation": "Sum" }, { "__typename": "ColumnField", - "id": "23e9b73f-e1cf-cc40-7638-8deaa10c77fa", - "name": "Work notes (Incident)", + "id": "4f4cb0a0-d290-f269-6306-ffbda0b59bb9", + "name": "Priority", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "06c3e060-8133-4b58-9b53-a0fced25e056", + "name": "Requests" + }, + "dataCategory": "ORDINAL", "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "dataType": "INTEGER", + "aggregation": "Sum" }, { - "__typename": "ColumnField", - "id": "24561cc7-2db6-e582-605b-5a796c76b867", - "name": "Company", + "__typename": "CalculatedField", + "id": "53de3015-a2ef-299d-a778-77b2669cee6f", + "name": "Overdue", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "06c3e060-8133-4b58-9b53-a0fced25e056", + "name": "Requests" + }, "role": "DIMENSION", "dataType": "STRING", - "defaultFormat": null, "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "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" }, { "__typename": "ColumnField", - "id": "24603cc5-425e-8a46-ae3a-2d460df840fe", - "name": "Knowledge", + "id": "848b5022-e769-97ac-34ab-4855920f60f6", + "name": "Active", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "06c3e060-8133-4b58-9b53-a0fced25e056", + "name": "Requests" + }, "dataCategory": "NOMINAL", "role": "DIMENSION", "dataType": "BOOLEAN", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "aggregation": null }, { "__typename": "ColumnField", - "id": "2484715d-12f8-a016-af12-5612bfedc91e", - "name": "Made SLA", + "id": "a1a22d48-f456-97d0-c098-5fd70f09ff7f", + "name": "Opened", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, + "dataCategory": "ORDINAL", "role": "DIMENSION", - "dataType": "BOOLEAN", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "dataType": "DATETIME", + "aggregation": null }, { - "__typename": "ColumnField", - "id": "27d23241-d9ef-957b-9e98-d58bda254438", - "name": "First discovered", + "__typename": "CalculatedField", + "id": "a322b8b0-c401-86a0-a5d8-2aea35da11d1", + "name": "Current Year Total Cases", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "06c3e060-8133-4b58-9b53-a0fced25e056", + "name": "Requests" + }, + "role": "MEASURE", + "dataType": "INTEGER", + "aggregation": "Attribute", + "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}" }, { - "__typename": "ColumnField", - "id": "2878a8b5-4306-f844-ef5a-4029eefdf22f", - "name": "Approval history (Incident)", + "__typename": "CalculatedField", + "id": "a88003b6-66c0-f362-a977-2d5d9c6dd3db", + "name": "Max Year?", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "06c3e060-8133-4b58-9b53-a0fced25e056", + "name": "Requests" + }, "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, + "dataType": "BOOLEAN", "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "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])})" }, { "__typename": "ColumnField", - "id": "2992ae70-4a49-98e4-f2de-cbc4a8b7a7db", - "name": "Asset", + "id": "ebd98cba-b969-ab25-a1ec-f9e699259ea5", + "name": "Active", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, "dataCategory": "NOMINAL", "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "dataType": "BOOLEAN", + "aggregation": null }, { "__typename": "CalculatedField", - "id": "2a948342-1daf-ac2f-33d3-329e2ca25e34", - "name": "% of Overdue", + "id": "ef6b51a9-6347-ed97-5baf-c6c53baa4751", + "name": "Total Active Requests", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "06c3e060-8133-4b58-9b53-a0fced25e056", + "name": "Requests" + }, "role": "MEASURE", - "dataType": "REAL", - "defaultFormat": "p0%", - "aggregation": null, - "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])})" - }, - { - "__typename": "ColumnField", - "id": "2ab7f5aa-15ba-de8e-214a-4e0a27ee91fe", - "name": "Work start", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "dataType": "INTEGER", + "aggregation": "Attribute", + "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}" }, { "__typename": "ColumnField", - "id": "2c95cb81-36f6-443f-6c99-ff001d2388f3", - "name": "Domain", + "id": "f3d4aefe-efef-0eef-f741-12b236720626", + "name": "Number", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "06c3e060-8133-4b58-9b53-a0fced25e056", + "name": "Requests" + }, "dataCategory": "NOMINAL", "role": "DIMENSION", "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "aggregation": null }, { "__typename": "ColumnField", - "id": "2e2db482-1927-ba36-a782-8a95c01fdc7e", - "name": "SLA due", + "id": "f4555797-f26b-ec4c-1234-3c46a142fb30", + "name": "Closed", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "06c3e060-8133-4b58-9b53-a0fced25e056", + "name": "Requests" + }, "dataCategory": "ORDINAL", "role": "DIMENSION", "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, + "aggregation": null + } + ] + }, + { + "id": "2b5351c1-535d-4a4a-1339-c51ddd6abf8a", + "name": "Top 10 Items by Requests and YoY Change", + "path": "", + "createdAt": "2021-12-17T19:14:10Z", + "updatedAt": "2021-12-17T19:15:02Z", + "tags": [], + "containedInDashboards": [ { - "__typename": "ColumnField", - "id": "2f83f6ff-ffdc-07b0-40d8-cb7351c02b66", - "name": "Group list (Incident)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, + "name": "Executive Dashboard", + "path": "ExecutiveDashboard/ExecutiveDashboard" + } + ], + "datasourceFields": [ { "__typename": "ColumnField", - "id": "2faad672-a1ff-95d1-67c9-2fd6bda9e8b9", - "name": "Priority", + "id": "04dc385d-8417-aa5f-3f4c-27c4333fdb5e", + "name": "Opened", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "06c3e060-8133-4b58-9b53-a0fced25e056", + "name": "Requests" + }, "dataCategory": "ORDINAL", "role": "DIMENSION", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": "Sum", - "columns": [ - { - "table": {} - } - ] + "dataType": "DATETIME", + "aggregation": null }, { "__typename": "ColumnField", - "id": "30bfdf30-6abc-a741-8563-c8a456e8f478", - "name": "Duration (Incident)", + "id": "23e08774-36b9-497e-3d14-df6cb90499d9", + "name": "Due date", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "06c3e060-8133-4b58-9b53-a0fced25e056", + "name": "Requests" + }, "dataCategory": "ORDINAL", "role": "DIMENSION", "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "311d5263-73af-4578-0d62-f4b2f00396a7", - "name": "Assigned to (Incident)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "31c3f642-db9d-3d0c-4497-c61859e1f8b9", - "name": "Skip sync", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "BOOLEAN", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "339bd914-66f7-c3c9-e7a7-c45f25cb335a", - "name": "DNS Domain", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "aggregation": null }, { "__typename": "ColumnField", - "id": "3423b49b-03bb-6d3a-12c8-4e11778931e1", - "name": "Updated", + "id": "2faad672-a1ff-95d1-67c9-2fd6bda9e8b9", + "name": "Priority", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, "dataCategory": "ORDINAL", "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "dataType": "INTEGER", + "aggregation": "Sum" }, { "__typename": "ColumnField", - "id": "34aac98d-e7a5-135b-622f-e6d35d84fae9", - "name": "Caller (Incident)", + "id": "4255ae77-005b-f589-9ccd-19665baa8e58", + "name": "Name", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "06c3e060-8133-4b58-9b53-a0fced25e056", + "name": "Requests" + }, "dataCategory": "NOMINAL", "role": "DIMENSION", "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "aggregation": null }, { "__typename": "ColumnField", - "id": "35637b98-c1c1-1200-8815-f1a4c6a13afd", - "name": "Department", + "id": "4f4cb0a0-d290-f269-6306-ffbda0b59bb9", + "name": "Priority", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "06c3e060-8133-4b58-9b53-a0fced25e056", + "name": "Requests" + }, + "dataCategory": "ORDINAL", "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "dataType": "INTEGER", + "aggregation": "Sum" }, { - "__typename": "ColumnField", - "id": "36fe7de3-5e0d-83e7-e08c-1c6f299552e1", - "name": "Resolved by (Incident)", + "__typename": "CalculatedField", + "id": "53de3015-a2ef-299d-a778-77b2669cee6f", + "name": "Overdue", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "06c3e060-8133-4b58-9b53-a0fced25e056", + "name": "Requests" + }, "role": "DIMENSION", "dataType": "STRING", - "defaultFormat": null, "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "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" }, { "__typename": "ColumnField", - "id": "37daa6c3-f37b-94d7-f59d-116cef3f3444", - "name": "Correlation ID (Configuration Item)", + "id": "848b5022-e769-97ac-34ab-4855920f60f6", + "name": "Active", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "06c3e060-8133-4b58-9b53-a0fced25e056", + "name": "Requests" + }, "dataCategory": "NOMINAL", "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "dataType": "BOOLEAN", + "aggregation": null }, { "__typename": "ColumnField", - "id": "38645dd2-5f4d-effc-a564-0054ba2e634b", - "name": "Opened (Incident)", + "id": "a1a22d48-f456-97d0-c098-5fd70f09ff7f", + "name": "Opened", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, "dataCategory": "ORDINAL", "role": "DIMENSION", "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "aggregation": null }, { "__typename": "CalculatedField", - "id": "3ac8f5aa-1260-dabf-c762-3ba52fdfc2c0", + "id": "a322b8b0-c401-86a0-a5d8-2aea35da11d1", "name": "Current Year Total Cases", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "06c3e060-8133-4b58-9b53-a0fced25e056", + "name": "Requests" + }, "role": "MEASURE", "dataType": "INTEGER", - "defaultFormat": null, "aggregation": "Attribute", - "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}" - }, - { - "__typename": "ColumnField", - "id": "3ad5f4e6-35be-0037-0e88-3da0136c081b", - "name": "Close notes (Incident)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "3ddaea33-73a5-7781-aee0-3f343dce3efd", - "name": "Managed by", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "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}" }, { - "__typename": "ColumnField", - "id": "42d00b7c-9983-8883-6b40-bdb2f47f1c35", - "name": "Measure Names", + "__typename": "CalculatedField", + "id": "a88003b6-66c0-f362-a977-2d5d9c6dd3db", + "name": "Max Year?", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "06c3e060-8133-4b58-9b53-a0fced25e056", + "name": "Requests" + }, "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, + "dataType": "BOOLEAN", "aggregation": null, - "columns": [] + "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])})" }, { "__typename": "ColumnField", - "id": "4448d754-db6b-6d41-1f80-f8d80ebd0664", - "name": "Model number", + "id": "ebd98cba-b969-ab25-a1ec-f9e699259ea5", + "name": "Active", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, "dataCategory": "NOMINAL", "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "dataType": "BOOLEAN", + "aggregation": null }, { "__typename": "ColumnField", - "id": "45d50e09-2ec6-76b3-f2bf-80836f7e49e6", - "name": "Created by (Configuration Item)", + "id": "f3d4aefe-efef-0eef-f741-12b236720626", + "name": "Number", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "06c3e060-8133-4b58-9b53-a0fced25e056", + "name": "Requests" + }, "dataCategory": "NOMINAL", "role": "DIMENSION", "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "aggregation": null }, { "__typename": "ColumnField", - "id": "45dd64b3-2fc5-7c5a-2ef8-684284efdeec", - "name": "Created", + "id": "f4555797-f26b-ec4c-1234-3c46a142fb30", + "name": "Closed", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "06c3e060-8133-4b58-9b53-a0fced25e056", + "name": "Requests" + }, "dataCategory": "ORDINAL", "role": "DIMENSION", "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, + "aggregation": null + } + ] + }, + { + "id": "2b73b9dd-4ec7-75ca-f2e9-fa1984ca8b72", + "name": "Opened Problems", + "path": "", + "createdAt": "2021-12-17T19:14:10Z", + "updatedAt": "2021-12-17T19:15:02Z", + "tags": [], + "containedInDashboards": [ { - "__typename": "ColumnField", - "id": "47c8a373-e098-0537-e220-013ae1b26dc7", - "name": "Assignment group (Configuration Item)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, + "name": "Executive Dashboard", + "path": "ExecutiveDashboard/ExecutiveDashboard" + } + ], + "datasourceFields": [ { - "__typename": "ColumnField", - "id": "49a13936-1856-4a32-197f-13ed80b3ece5", - "name": "Location", + "__typename": "CalculatedField", + "id": "1b0ade5c-b27a-37c9-3777-5f1b10db972e", + "name": "Overdue", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", + "name": "Problems" + }, "role": "DIMENSION", "dataType": "STRING", - "defaultFormat": null, "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "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}" }, { "__typename": "ColumnField", - "id": "4cb02fc2-cb2c-045f-994c-6c54d21626a5", - "name": "PO number", + "id": "204940b8-ad53-93bc-7f4e-0c49a1ced7c8", + "name": "Number", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", + "name": "Problems" + }, "dataCategory": "NOMINAL", "role": "DIMENSION", "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "aggregation": null }, { "__typename": "ColumnField", - "id": "4e844797-cf85-8239-dbac-4257822b3408", - "name": "Short description", + "id": "2faad672-a1ff-95d1-67c9-2fd6bda9e8b9", + "name": "Priority", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, + "dataCategory": "ORDINAL", "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "dataType": "INTEGER", + "aggregation": "Sum" }, { "__typename": "ColumnField", - "id": "4e9c3619-b42e-0452-dcaa-b5406e038c85", - "name": "Business resolve time (Incident)", + "id": "3a946020-200f-ef9c-3ffb-dc3d1d7f8d83", + "name": "Due date", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", + "name": "Problems" + }, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "aggregation": null }, { - "__typename": "ColumnField", - "id": "4eae18fd-b114-7cf2-b8b6-31af6cea0b55", - "name": "Child Incidents (Incident)", + "__typename": "CalculatedField", + "id": "6815a7f2-82b4-4b5f-7212-20c3894eeb0e", + "name": "Total # Problems", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", + "name": "Problems" + }, "role": "MEASURE", "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "4f45c3ad-fc3b-afeb-6e9d-fb94b42051a9", - "name": "IP Address", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "aggregation": "Attribute", + "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])}" }, { "__typename": "ColumnField", - "id": "50879b60-d080-240f-2439-d15c4ca23cf0", - "name": "Created (Incident)", + "id": "a1a22d48-f456-97d0-c098-5fd70f09ff7f", + "name": "Opened", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, "dataCategory": "ORDINAL", "role": "DIMENSION", "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "aggregation": null }, { "__typename": "ColumnField", - "id": "517cd761-a193-d8c1-c3db-93890bc7d27a", - "name": "Configuration item", + "id": "ab2aa63d-c73a-9cf9-9a54-9d469d47e890", + "name": "Opened", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", + "name": "Problems" + }, + "dataCategory": "ORDINAL", "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "53342557-60b2-51ea-a730-f38ad3dab715", - "name": "Order (Incident)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "dataType": "DATETIME", + "aggregation": null }, { - "__typename": "ColumnField", - "id": "536bc9ae-0f4b-5786-0b0d-691d8bc2b9e5", - "name": "Asset tag", + "__typename": "CalculatedField", + "id": "c64607f1-c00a-88b8-b4ea-4018f7dff6f0", + "name": "Max Year?", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", + "name": "Problems" + }, "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, + "dataType": "BOOLEAN", "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "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])})" }, { "__typename": "ColumnField", - "id": "54dfc86a-52b7-52b3-3af9-f18e070e56c8", - "name": "Due in", + "id": "cffb2549-3525-3117-9d65-855e28d41fdd", + "name": "Priority", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", + "name": "Problems" + }, + "dataCategory": "ORDINAL", "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "dataType": "INTEGER", + "aggregation": "Sum" }, { "__typename": "ColumnField", - "id": "5579f16c-8c12-36be-3ff8-1a4bc270f570", - "name": "Updated by", + "id": "de60a6dd-ae9a-3b7c-edf8-d24f5f53fa89", + "name": "Closed", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", + "name": "Problems" + }, + "dataCategory": "ORDINAL", "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "dataType": "DATETIME", + "aggregation": null }, { "__typename": "ColumnField", - "id": "5668180e-c0cd-dbde-661a-ff1fc6e93385", - "name": "Manufacturer", + "id": "ebd98cba-b969-ab25-a1ec-f9e699259ea5", + "name": "Active", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, "dataCategory": "NOMINAL", "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "dataType": "BOOLEAN", + "aggregation": null }, { - "__typename": "ColumnField", - "id": "59214da6-732d-5691-5bb8-a81b4132fdd4", - "name": "Correlation display", + "__typename": "CalculatedField", + "id": "ec9379d0-f48b-577e-2314-6288c3f4a3a0", + "name": "Current Year Total Cases", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", + "name": "Problems" + }, + "role": "MEASURE", + "dataType": "INTEGER", + "aggregation": "Attribute", + "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}" }, { - "__typename": "ColumnField", - "id": "5ae6724e-3a1d-a43c-9421-294f3f1bfb6c", - "name": "Business duration", + "__typename": "CalculatedField", + "id": "fed69289-f04f-e280-fdd5-719cf043ff35", + "name": "Total Active Problems", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", + "name": "Problems" + }, + "role": "MEASURE", + "dataType": "INTEGER", + "aggregation": "Attribute", + "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}" }, { "__typename": "ColumnField", - "id": "5b478590-b0a9-c34c-faa2-2b7c7a61822f", - "name": "Business service", + "id": "ff4371e0-3575-3686-23d1-4d035db44f33", + "name": "Active", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", + "name": "Problems" + }, "dataCategory": "NOMINAL", "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, + "dataType": "BOOLEAN", + "aggregation": null + } + ] + }, + { + "id": "373c6466-bb0c-b319-8752-632456349261", + "name": "Overdue", + "path": "", + "createdAt": "2021-12-17T19:14:10Z", + "updatedAt": "2021-12-17T19:15:02Z", + "tags": [], + "containedInDashboards": [ + { + "name": "Executive Dashboard", + "path": "ExecutiveDashboard/ExecutiveDashboard" + } + ], + "datasourceFields": [ + { + "__typename": "CalculatedField", + "id": "2a948342-1daf-ac2f-33d3-329e2ca25e34", + "name": "% of Overdue", + "description": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, + "role": "MEASURE", + "dataType": "REAL", "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "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])})" }, { "__typename": "ColumnField", - "id": "5d54747d-81ac-f0fc-6320-2bc8b4ea592b", - "name": "Checked out", + "id": "2faad672-a1ff-95d1-67c9-2fd6bda9e8b9", + "name": "Priority", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, "dataCategory": "ORDINAL", "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "dataType": "INTEGER", + "aggregation": "Sum" }, { "__typename": "ColumnField", "id": "5dbafcd1-d8d2-68cc-fde3-20e8c7b26ff8", "name": "Category (Incident)", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, "dataCategory": "NOMINAL", "role": "DIMENSION", "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "aggregation": null }, { - "__typename": "ColumnField", - "id": "5e9aec72-f27e-7dce-fdb7-6b2d418ad785", - "name": "Fully qualified domain name", + "__typename": "CalculatedField", + "id": "636235a9-4709-04e1-eef2-67ac7c194eb4", + "name": "Overdue", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, "role": "DIMENSION", "dataType": "STRING", - "defaultFormat": null, "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "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}" }, { "__typename": "ColumnField", - "id": "606cc5eb-28b6-6b2e-9ec9-b4d2441323db", - "name": "Installed", + "id": "9d228629-7bd0-42df-3b44-b7900f4c1e48", + "name": "Number", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, + "dataCategory": "NOMINAL", "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "60bd0e06-5086-d8dc-a6e5-eff080d6a56d", - "name": "Order", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "dataType": "STRING", + "aggregation": null }, { "__typename": "ColumnField", - "id": "60c104d7-6b2c-1132-8a7b-28c1a05c2654", - "name": "Purchased", + "id": "a1a22d48-f456-97d0-c098-5fd70f09ff7f", + "name": "Opened", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, "dataCategory": "ORDINAL", "role": "DIMENSION", - "dataType": "DATE", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "dataType": "DATETIME", + "aggregation": null }, { - "__typename": "ColumnField", - "id": "61eb7e5a-5931-0486-1e98-5e17ec92ed9c", - "name": "Lease contract", + "__typename": "CalculatedField", + "id": "ad2cbb7c-aaad-12d3-36ef-179ff1cfa1ff", + "name": "Max Year?", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, + "dataType": "BOOLEAN", "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "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])})" }, { "__typename": "ColumnField", - "id": "63090441-e641-21ba-66ae-a0ea3d83344c", - "name": "Vendor", + "id": "dc36513d-648a-03f4-6983-d60b911212ea", + "name": "Due date", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, + "dataCategory": "ORDINAL", "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "dataType": "DATETIME", + "aggregation": null }, { - "__typename": "CalculatedField", - "id": "636235a9-4709-04e1-eef2-67ac7c194eb4", - "name": "Overdue", + "__typename": "ColumnField", + "id": "ebd98cba-b969-ab25-a1ec-f9e699259ea5", + "name": "Active", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, + "dataCategory": "NOMINAL", "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "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}" + "dataType": "BOOLEAN", + "aggregation": null }, { "__typename": "ColumnField", - "id": "66ac12ab-7cba-79fd-b013-72043161beea", - "name": "Due date (Incident)", + "id": "f59d94c1-f580-0384-8272-ac4be3edd163", + "name": "Closed", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, "dataCategory": "ORDINAL", "role": "DIMENSION", "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, + "aggregation": null + } + ] + }, + { + "id": "53b8dc2f-8ada-51f7-7422-fe82e9b803cc", + "name": "High and Critical Priority Problems", + "path": "", + "createdAt": "2021-12-17T19:14:10Z", + "updatedAt": "2021-12-17T19:15:02Z", + "tags": [], + "containedInDashboards": [ { - "__typename": "ColumnField", - "id": "66d18cb0-c3f0-ad8a-e15a-89563da02834", - "name": "Additional comments", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, + "name": "Executive Dashboard", + "path": "ExecutiveDashboard/ExecutiveDashboard" + } + ], + "datasourceFields": [ { "__typename": "ColumnField", - "id": "679172d5-d043-c8ff-d115-ef200d11ca72", - "name": "Approval history", + "id": "204940b8-ad53-93bc-7f4e-0c49a1ced7c8", + "name": "Number", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", + "name": "Problems" + }, "dataCategory": "NOMINAL", "role": "DIMENSION", "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "aggregation": null }, { "__typename": "ColumnField", - "id": "7029eb80-9d5f-b12e-40a4-adc7c9968daa", - "name": "Category (Configuration Item)", + "id": "2faad672-a1ff-95d1-67c9-2fd6bda9e8b9", + "name": "Priority", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, + "dataCategory": "ORDINAL", "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "dataType": "INTEGER", + "aggregation": "Sum" }, { "__typename": "ColumnField", - "id": "7063be4c-713b-5d6c-25aa-ad98c5a8f7e9", - "name": "Parent Incident (Incident)", + "id": "a1a22d48-f456-97d0-c098-5fd70f09ff7f", + "name": "Opened", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, + "dataCategory": "ORDINAL", "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "dataType": "DATETIME", + "aggregation": null }, { "__typename": "ColumnField", - "id": "724a16a7-49a8-57bd-9ec6-fb5c777d83cf", - "name": "Updated (Configuration Item)", + "id": "ab2aa63d-c73a-9cf9-9a54-9d469d47e890", + "name": "Opened", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", + "name": "Problems" + }, "dataCategory": "ORDINAL", "role": "DIMENSION", "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "aggregation": null }, { - "__typename": "ColumnField", - "id": "72dc19f7-e551-1b35-ff53-b2bccbfa6bb9", - "name": "Cost currency", + "__typename": "CalculatedField", + "id": "c64607f1-c00a-88b8-b4ea-4018f7dff6f0", + "name": "Max Year?", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", + "name": "Problems" + }, "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, + "dataType": "BOOLEAN", "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "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])})" }, { "__typename": "ColumnField", - "id": "732bfc50-930a-7ac3-c088-680bad52bff0", - "name": "SLA due (Incident)", + "id": "cffb2549-3525-3117-9d65-855e28d41fdd", + "name": "Priority", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", + "name": "Problems" + }, "dataCategory": "ORDINAL", "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "dataType": "INTEGER", + "aggregation": "Sum" }, { - "__typename": "ColumnField", - "id": "73c00bbc-f7a8-76da-a0bd-bb210b4929b8", - "name": "Impact (Incident)", + "__typename": "CalculatedField", + "id": "de196a57-20e2-9501-3d72-f8e2681266c8", + "name": "% of critical and high priority", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", + "name": "Problems" + }, "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, + "dataType": "REAL", "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "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])" }, { "__typename": "ColumnField", - "id": "76723c78-1bea-73eb-80ad-1c6c2ff17a87", - "name": "Approval (Incident)", + "id": "ebd98cba-b969-ab25-a1ec-f9e699259ea5", + "name": "Active", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, "dataCategory": "NOMINAL", "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "dataType": "BOOLEAN", + "aggregation": null }, { "__typename": "ColumnField", - "id": "782ebad0-c62f-cbc8-0c22-5904aa50585b", - "name": "Subcategory (Incident)", + "id": "ff4371e0-3575-3686-23d1-4d035db44f33", + "name": "Active", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", + "name": "Problems" + }, "dataCategory": "NOMINAL", "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, + "dataType": "BOOLEAN", + "aggregation": null + } + ] + }, + { + "id": "58af9ecf-b839-da50-65e1-2e1fa20e3362", + "name": "Total Incidents by Category and YoY Change", + "path": "", + "createdAt": "2021-12-17T19:14:10Z", + "updatedAt": "2021-12-17T19:15:02Z", + "tags": [], + "containedInDashboards": [ { - "__typename": "ColumnField", - "id": "784b08a1-eb8c-d675-36b3-b316492e5b16", - "name": "Opened by (Incident)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, + "name": "Executive Dashboard", + "path": "ExecutiveDashboard/ExecutiveDashboard" + } + ], + "datasourceFields": [ { "__typename": "ColumnField", - "id": "79767234-b173-544a-063d-821baa6a5df9", - "name": "Activity due (Incident)", + "id": "2faad672-a1ff-95d1-67c9-2fd6bda9e8b9", + "name": "Priority", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, "dataCategory": "ORDINAL", "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "dataType": "INTEGER", + "aggregation": "Sum" }, { - "__typename": "ColumnField", - "id": "79fad0d4-12c2-078d-c105-1ab1024e5b21", - "name": "Comments and Work notes", + "__typename": "CalculatedField", + "id": "3ac8f5aa-1260-dabf-c762-3ba52fdfc2c0", + "name": "Current Year Total Cases", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, + "role": "MEASURE", + "dataType": "INTEGER", + "aggregation": "Attribute", + "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}" }, { "__typename": "ColumnField", - "id": "7cc56151-90e8-98bb-4354-a514208bff4a", - "name": "Cost", + "id": "5dbafcd1-d8d2-68cc-fde3-20e8c7b26ff8", + "name": "Category (Incident)", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, "dataCategory": "NOMINAL", "role": "DIMENSION", "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "aggregation": null }, { - "__typename": "ColumnField", - "id": "7eacd068-7e19-3dbc-dce0-d5089d3c35b8", - "name": "Reassignment count (Incident)", + "__typename": "CalculatedField", + "id": "636235a9-4709-04e1-eef2-67ac7c194eb4", + "name": "Overdue", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, + "role": "DIMENSION", + "dataType": "STRING", "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "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}" }, { "__typename": "ColumnField", - "id": "7ecb2d1d-4dd0-e49b-c5d2-407bc5a7b08e", - "name": "Urgency (Incident)", + "id": "9d228629-7bd0-42df-3b44-b7900f4c1e48", + "name": "Number", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "STRING", + "aggregation": null }, { "__typename": "ColumnField", - "id": "81d9a76b-9a30-a2cc-3078-64c2bfc4f4b0", - "name": "Monitor", + "id": "a1a22d48-f456-97d0-c098-5fd70f09ff7f", + "name": "Opened", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, + "dataCategory": "ORDINAL", "role": "DIMENSION", - "dataType": "BOOLEAN", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "dataType": "DATETIME", + "aggregation": null }, { - "__typename": "ColumnField", - "id": "837bda98-50c2-164b-665b-ba6e3a02ace3", - "name": "Watch list", + "__typename": "CalculatedField", + "id": "ad2cbb7c-aaad-12d3-36ef-179ff1cfa1ff", + "name": "Max Year?", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, + "dataType": "BOOLEAN", "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "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])})" }, { "__typename": "ColumnField", - "id": "85f313bb-fe2b-5ad7-0cdf-78a64a71fa27", - "name": "Approval set", + "id": "dc36513d-648a-03f4-6983-d60b911212ea", + "name": "Due date", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, "dataCategory": "ORDINAL", "role": "DIMENSION", "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "aggregation": null }, { "__typename": "ColumnField", - "id": "86aa92af-853b-4d4e-35b0-21c6424e1735", - "name": "Time worked", + "id": "ebd98cba-b969-ab25-a1ec-f9e699259ea5", + "name": "Active", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, "dataCategory": "NOMINAL", "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "dataType": "BOOLEAN", + "aggregation": null }, { "__typename": "ColumnField", - "id": "86b35d25-952f-0881-7e62-a812a6e421ae", - "name": "Serial number", + "id": "f59d94c1-f580-0384-8272-ac4be3edd163", + "name": "Closed", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, + "dataCategory": "ORDINAL", "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, + "dataType": "DATETIME", + "aggregation": null + } + ] + }, + { + "id": "618b3e76-75c1-cb31-0c61-3f4890b72c31", + "name": "Known Errors", + "path": "", + "createdAt": "2021-12-17T19:14:10Z", + "updatedAt": "2021-12-17T19:15:02Z", + "tags": [], + "containedInDashboards": [ + { + "name": "Executive Dashboard", + "path": "ExecutiveDashboard/ExecutiveDashboard" + } + ], + "datasourceFields": [ { "__typename": "ColumnField", - "id": "86b677e8-2841-1b59-d1b0-066d16d345c7", - "name": "Model ID", + "id": "204940b8-ad53-93bc-7f4e-0c49a1ced7c8", + "name": "Number", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", + "name": "Problems" + }, "dataCategory": "NOMINAL", "role": "DIMENSION", "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "aggregation": null }, { "__typename": "ColumnField", - "id": "8a14e383-ee8e-4493-bfcd-a7238d11edf4", - "name": "Parent (Incident)", + "id": "2faad672-a1ff-95d1-67c9-2fd6bda9e8b9", + "name": "Priority", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, + "dataCategory": "ORDINAL", "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "dataType": "INTEGER", + "aggregation": "Sum" }, { "__typename": "CalculatedField", - "id": "8aef8cdb-0381-40e2-4efc-bb6a67c45652", - "name": "Time to Close an Incident (seconds)", + "id": "90ef2358-7bd1-5aaa-0df1-76dabec7a66a", + "name": "Problems with Related Incidents", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", + "name": "Problems" + }, "role": "MEASURE", "dataType": "INTEGER", - "defaultFormat": null, "aggregation": null, - "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" + "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)" }, { "__typename": "ColumnField", - "id": "8b69c38c-8297-fb16-1e56-796f67864f60", - "name": "Owned by", + "id": "94caead7-f1f1-ddd5-0887-42812ab147a2", + "name": "Related Incidents", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", + "name": "Problems" + }, + "dataCategory": "QUANTITATIVE", + "role": "MEASURE", + "dataType": "INTEGER", + "aggregation": null }, { "__typename": "ColumnField", - "id": "8be77673-bc23-ffc3-1958-21856a6d42bf", - "name": "Activity due", + "id": "a1a22d48-f456-97d0-c098-5fd70f09ff7f", + "name": "Opened", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, "dataCategory": "ORDINAL", "role": "DIMENSION", "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "aggregation": null }, { "__typename": "ColumnField", - "id": "8c6b7c63-54a0-46d3-8037-f2de8fa1d476", - "name": "Invoice number", + "id": "ab2aa63d-c73a-9cf9-9a54-9d469d47e890", + "name": "Opened", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", + "name": "Problems" + }, + "dataCategory": "ORDINAL", "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "dataType": "DATETIME", + "aggregation": null }, { - "__typename": "ColumnField", - "id": "8cc2a71d-49c7-fb56-f8f1-f4df94f83aa0", - "name": "Updated by (Incident)", + "__typename": "CalculatedField", + "id": "b34308cc-f30c-a5bb-52b9-78c00f2f461c", + "name": "% of known error", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", + "name": "Problems" + }, + "role": "MEASURE", + "dataType": "REAL", "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "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])" }, { - "__typename": "ColumnField", - "id": "8de5c9d3-0c25-4ff6-1a84-0394bc36c57b", - "name": "Approval set (Incident)", + "__typename": "CalculatedField", + "id": "c64607f1-c00a-88b8-b4ea-4018f7dff6f0", + "name": "Max Year?", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", + "name": "Problems" + }, "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, + "dataType": "BOOLEAN", "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "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])})" }, { "__typename": "ColumnField", - "id": "8df59f46-4e3b-aa77-0c74-35c93f844e75", - "name": "Duration", + "id": "cf7efd6f-3e9d-0bf4-b96d-4404194690e6", + "name": "Known error", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", + "name": "Problems" + }, + "dataCategory": "NOMINAL", "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "dataType": "BOOLEAN", + "aggregation": null }, { "__typename": "ColumnField", - "id": "8e8947fd-7108-d528-44db-7657a1fb480c", - "name": "Start date", + "id": "cffb2549-3525-3117-9d65-855e28d41fdd", + "name": "Priority", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", + "name": "Problems" + }, "dataCategory": "ORDINAL", "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "dataType": "INTEGER", + "aggregation": "Sum" }, { "__typename": "ColumnField", - "id": "8ed7ee55-acb7-9064-da1c-80a20e706464", - "name": "Ordered", + "id": "ebd98cba-b969-ab25-a1ec-f9e699259ea5", + "name": "Active", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, + "dataCategory": "NOMINAL", "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "dataType": "BOOLEAN", + "aggregation": null }, { "__typename": "ColumnField", - "id": "91f45936-daa1-6194-4fa8-1e135b053dd1", - "name": "Assigned to", + "id": "ff4371e0-3575-3686-23d1-4d035db44f33", + "name": "Active", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", + "name": "Problems" + }, "dataCategory": "NOMINAL", "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, + "dataType": "BOOLEAN", + "aggregation": null + } + ] + }, + { + "id": "721c3c41-7a2b-16a8-3281-6f948a44be96", + "name": "Overdue Requests", + "path": "", + "createdAt": "2021-12-17T19:14:10Z", + "updatedAt": "2021-12-17T19:15:02Z", + "tags": [], + "containedInDashboards": [ + { + "name": "Executive Dashboard", + "path": "ExecutiveDashboard/ExecutiveDashboard" + } + ], + "datasourceFields": [ { "__typename": "ColumnField", - "id": "93acf969-1638-980a-5c93-ac1c754d2831", - "name": "Follow up", + "id": "04dc385d-8417-aa5f-3f4c-27c4333fdb5e", + "name": "Opened", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "06c3e060-8133-4b58-9b53-a0fced25e056", + "name": "Requests" + }, "dataCategory": "ORDINAL", "role": "DIMENSION", "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "aggregation": null }, { "__typename": "ColumnField", - "id": "941fbf6f-40e4-bfe8-d2ff-b016032ec6dd", - "name": "Business duration (Incident)", + "id": "23e08774-36b9-497e-3d14-df6cb90499d9", + "name": "Due date", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "06c3e060-8133-4b58-9b53-a0fced25e056", + "name": "Requests" + }, "dataCategory": "ORDINAL", "role": "DIMENSION", "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "aggregation": null }, { "__typename": "ColumnField", - "id": "965d754d-0bc7-06e4-1208-d146de93d6a1", - "name": "Order received", + "id": "2faad672-a1ff-95d1-67c9-2fd6bda9e8b9", + "name": "Priority", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, "dataCategory": "ORDINAL", "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "dataType": "INTEGER", + "aggregation": "Sum" }, { "__typename": "ColumnField", - "id": "9736203a-fc31-b052-3fc5-abf1afe22f18", - "name": "Discovery source", + "id": "4f4cb0a0-d290-f269-6306-ffbda0b59bb9", + "name": "Priority", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "06c3e060-8133-4b58-9b53-a0fced25e056", + "name": "Requests" + }, + "dataCategory": "ORDINAL", "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "dataType": "INTEGER", + "aggregation": "Sum" }, { - "__typename": "ColumnField", - "id": "984069c9-5366-622a-98bf-60c4ca3e0ff5", - "name": "Closed by (Incident)", + "__typename": "CalculatedField", + "id": "53de3015-a2ef-299d-a778-77b2669cee6f", + "name": "Overdue", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "06c3e060-8133-4b58-9b53-a0fced25e056", + "name": "Requests" + }, "role": "DIMENSION", "dataType": "STRING", - "defaultFormat": null, "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "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" }, { "__typename": "ColumnField", - "id": "9a8a1e52-ae97-aee0-c2c9-a4ddf69b5ffc", - "name": "Work notes list", + "id": "848b5022-e769-97ac-34ab-4855920f60f6", + "name": "Active", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "06c3e060-8133-4b58-9b53-a0fced25e056", + "name": "Requests" + }, "dataCategory": "NOMINAL", "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "dataType": "BOOLEAN", + "aggregation": null }, { - "__typename": "CalculatedField", - "id": "9b35c0be-0f76-63a1-445d-9872a1465154", - "name": "Total Active Incidents", + "__typename": "ColumnField", + "id": "a1a22d48-f456-97d0-c098-5fd70f09ff7f", + "name": "Opened", "description": null, - "isHidden": false, - "folderName": null, - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": "Attribute", - "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}" + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "aggregation": null }, { - "__typename": "ColumnField", - "id": "9d228629-7bd0-42df-3b44-b7900f4c1e48", - "name": "Number", + "__typename": "CalculatedField", + "id": "cbbdf8b2-2491-2228-b0ec-cf1bfe6ec52c", + "name": "% of Overdue", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "06c3e060-8133-4b58-9b53-a0fced25e056", + "name": "Requests" + }, + "role": "MEASURE", + "dataType": "REAL", "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "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])})" }, { "__typename": "ColumnField", - "id": "9f81f19e-ce84-459e-ab09-b8e4e6677e98", - "name": "Class", + "id": "ebd98cba-b969-ab25-a1ec-f9e699259ea5", + "name": "Active", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, "dataCategory": "NOMINAL", "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "dataType": "BOOLEAN", + "aggregation": null }, { "__typename": "ColumnField", - "id": "a0e000ab-dd73-f572-6a91-4ea2e1d2767d", - "name": "Description (Configuration Item)", + "id": "f3d4aefe-efef-0eef-f741-12b236720626", + "name": "Number", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "06c3e060-8133-4b58-9b53-a0fced25e056", + "name": "Requests" + }, "dataCategory": "NOMINAL", "role": "DIMENSION", "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "a0f25adf-7399-e938-d5b2-96cec332c78d", - "name": "Operational status", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "aggregation": null }, { "__typename": "ColumnField", - "id": "a15c1a3a-4cce-f29b-22d7-3044c66da9e1", - "name": "Expected start (Incident)", + "id": "f4555797-f26b-ec4c-1234-3c46a142fb30", + "name": "Closed", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "06c3e060-8133-4b58-9b53-a0fced25e056", + "name": "Requests" + }, "dataCategory": "ORDINAL", "role": "DIMENSION", "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, + "aggregation": null + } + ] + }, + { + "id": "7ef184c1-5a41-5ec8-723e-ae44c20aa335", + "name": "AVG Time to Solve an Incident", + "path": "", + "createdAt": "2021-12-17T19:14:10Z", + "updatedAt": "2021-12-17T19:15:02Z", + "tags": [], + "containedInDashboards": [ + { + "name": "Executive Dashboard", + "path": "ExecutiveDashboard/ExecutiveDashboard" + } + ], + "datasourceFields": [ { "__typename": "ColumnField", - "id": "a17240cd-70c6-f680-007d-25e83f020daf", - "name": "Work notes list (Incident)", + "id": "2faad672-a1ff-95d1-67c9-2fd6bda9e8b9", + "name": "Priority", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, + "dataCategory": "ORDINAL", "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "dataType": "INTEGER", + "aggregation": "Sum" }, { "__typename": "ColumnField", - "id": "a1a22d48-f456-97d0-c098-5fd70f09ff7f", - "name": "Opened", + "id": "5dbafcd1-d8d2-68cc-fde3-20e8c7b26ff8", + "name": "Category (Incident)", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, + "dataCategory": "NOMINAL", "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "dataType": "STRING", + "aggregation": null }, { - "__typename": "ColumnField", - "id": "a2bc54e9-6160-2cb6-d61e-4453051220d8", - "name": "Resolve time (Incident)", + "__typename": "CalculatedField", + "id": "8aef8cdb-0381-40e2-4efc-bb6a67c45652", + "name": "Time to Close an Incident (seconds)", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, "role": "MEASURE", "dataType": "INTEGER", - "defaultFormat": null, "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "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" }, { "__typename": "ColumnField", - "id": "a3702e1d-995f-0cac-3577-7f3500927ed4", - "name": "Reopen count (Incident)", + "id": "a1a22d48-f456-97d0-c098-5fd70f09ff7f", + "name": "Opened", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "aggregation": null }, { - "__typename": "ColumnField", - "id": "a39e5386-f37e-8d1e-3e74-fc8857d5c08d", - "name": "Created by (Incident)", + "__typename": "CalculatedField", + "id": "ad2cbb7c-aaad-12d3-36ef-179ff1cfa1ff", + "name": "Max Year?", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, + "dataType": "BOOLEAN", "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "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])})" }, { "__typename": "ColumnField", - "id": "a3b1db00-20da-f6c3-85be-8b769d06db6c", - "name": "Assigned to (Configuration Item)", + "id": "ebd98cba-b969-ab25-a1ec-f9e699259ea5", + "name": "Active", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, "dataCategory": "NOMINAL", "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "dataType": "BOOLEAN", + "aggregation": null }, { "__typename": "ColumnField", - "id": "a3cfeec0-84f3-6fda-f043-2a6da9598453", - "name": "Most recent discovery", + "id": "f59d94c1-f580-0384-8272-ac4be3edd163", + "name": "Closed", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, "dataCategory": "ORDINAL", "role": "DIMENSION", "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "aggregation": null }, { - "__typename": "ColumnField", - "id": "a4cee743-4ff1-c3fc-e305-47ffa6ea9b4f", - "name": "Domain (Configuration Item)", + "__typename": "CalculatedField", + "id": "ff51c0e0-4b09-ab90-9dca-6b7c9de8f135", + "name": "Time to Close an Incident", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, + "role": "MEASURE", "dataType": "STRING", - "defaultFormat": null, "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, + "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))" + } + ] + }, + { + "id": "7fbc77ba-0ab6-3727-0db3-d8402a804da5", + "name": "Made SLA?", + "path": "", + "createdAt": "2021-12-17T19:14:10Z", + "updatedAt": "2021-12-17T19:15:02Z", + "tags": [], + "containedInDashboards": [ + { + "name": "Executive Dashboard", + "path": "ExecutiveDashboard/ExecutiveDashboard" + } + ], + "datasourceFields": [ { "__typename": "ColumnField", - "id": "a788bc5b-010e-00c8-ef97-c112af3343af", - "name": "Upon reject (Incident)", + "id": "04dc385d-8417-aa5f-3f4c-27c4333fdb5e", + "name": "Opened", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "06c3e060-8133-4b58-9b53-a0fced25e056", + "name": "Requests" + }, + "dataCategory": "ORDINAL", "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, + "dataType": "DATETIME", + "aggregation": null + }, + { + "__typename": "CalculatedField", + "id": "0a972b7c-d9f9-9f60-4777-73d4c2edce73", + "name": "% made SLA", + "description": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "06c3e060-8133-4b58-9b53-a0fced25e056", + "name": "Requests" + }, + "role": "MEASURE", + "dataType": "REAL", "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "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])" }, { "__typename": "ColumnField", - "id": "a7e61b7f-2247-0b9c-7da9-39297faadd8e", - "name": "Work end", + "id": "2faad672-a1ff-95d1-67c9-2fd6bda9e8b9", + "name": "Priority", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, "dataCategory": "ORDINAL", "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "dataType": "INTEGER", + "aggregation": "Sum" }, { "__typename": "ColumnField", - "id": "a93c6637-d961-ae0b-598e-fa8da75e62c2", - "name": "Company (Configuration Item)", + "id": "4f4cb0a0-d290-f269-6306-ffbda0b59bb9", + "name": "Priority", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "06c3e060-8133-4b58-9b53-a0fced25e056", + "name": "Requests" + }, + "dataCategory": "ORDINAL", "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "dataType": "INTEGER", + "aggregation": "Sum" }, { "__typename": "ColumnField", - "id": "ac4e3607-473b-f643-6d23-8cf0c69c7530", - "name": "Knowledge (Incident)", + "id": "848b5022-e769-97ac-34ab-4855920f60f6", + "name": "Active", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "06c3e060-8133-4b58-9b53-a0fced25e056", + "name": "Requests" + }, "dataCategory": "NOMINAL", "role": "DIMENSION", "dataType": "BOOLEAN", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "aggregation": null }, { - "__typename": "CalculatedField", - "id": "ad2cbb7c-aaad-12d3-36ef-179ff1cfa1ff", - "name": "Max Year?", + "__typename": "ColumnField", + "id": "a1a22d48-f456-97d0-c098-5fd70f09ff7f", + "name": "Opened", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, + "dataCategory": "ORDINAL", "role": "DIMENSION", - "dataType": "BOOLEAN", - "defaultFormat": null, - "aggregation": null, - "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])})" + "dataType": "DATETIME", + "aggregation": null }, { "__typename": "ColumnField", - "id": "af59ec99-214e-e0df-22e2-901b24a2624c", - "name": "Location (Configuration Item)", + "id": "b0590acf-db66-2aaf-1138-e6d56c9e2a97", + "name": "Made SLA", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "06c3e060-8133-4b58-9b53-a0fced25e056", + "name": "Requests" + }, "dataCategory": "NOMINAL", "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "dataType": "BOOLEAN", + "aggregation": null }, { "__typename": "ColumnField", - "id": "b14c7e6b-bd65-5b11-a6a8-5b267a7b1260", - "name": "Watch list (Incident)", + "id": "ebd98cba-b969-ab25-a1ec-f9e699259ea5", + "name": "Active", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, "dataCategory": "NOMINAL", "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "dataType": "BOOLEAN", + "aggregation": null }, { "__typename": "ColumnField", - "id": "b22db38f-740d-2d76-b929-370248345099", - "name": "Delivery task", + "id": "f3d4aefe-efef-0eef-f741-12b236720626", + "name": "Number", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "06c3e060-8133-4b58-9b53-a0fced25e056", + "name": "Requests" + }, "dataCategory": "NOMINAL", "role": "DIMENSION", "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, + "aggregation": null + } + ] + }, + { + "id": "8385ea9a-0749-754f-7ad9-824433de2120", + "name": "Tooltip - Incident Breakdown by Priority", + "path": "ExecutiveDashboard/Tooltip-IncidentBreakdownbyPriority", + "createdAt": "2021-12-17T19:14:10Z", + "updatedAt": "2021-12-17T19:15:02Z", + "tags": [], + "containedInDashboards": [], + "datasourceFields": [ { "__typename": "ColumnField", - "id": "b28fcdc2-bcd6-42aa-4e64-f2b4b176324d", - "name": "Fault count", + "id": "2faad672-a1ff-95d1-67c9-2fd6bda9e8b9", + "name": "Priority", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, + "dataCategory": "ORDINAL", + "role": "DIMENSION", "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "aggregation": "Sum" }, { "__typename": "ColumnField", - "id": "b30f2384-7e6f-f13e-f57b-f810985e7cd9", - "name": "Caused by Change (Incident)", + "id": "9d228629-7bd0-42df-3b44-b7900f4c1e48", + "name": "Number", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, "dataCategory": "NOMINAL", "role": "DIMENSION", "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "aggregation": null }, { "__typename": "ColumnField", - "id": "b31e32f3-3e3d-01f1-a54c-453aa77a3297", - "name": "Updated (Incident)", + "id": "a1a22d48-f456-97d0-c098-5fd70f09ff7f", + "name": "Opened", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, "dataCategory": "ORDINAL", "role": "DIMENSION", "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "aggregation": null }, { - "__typename": "ColumnField", - "id": "b73460b5-51fe-5c8f-61b0-7e9da12244fa", - "name": "Sys ID (Configuration Item)", + "__typename": "CalculatedField", + "id": "ad2cbb7c-aaad-12d3-36ef-179ff1cfa1ff", + "name": "Max Year?", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, + "dataType": "BOOLEAN", "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "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])})" }, { "__typename": "ColumnField", - "id": "b880aec8-de45-999b-d664-588f4856c472", - "name": "MAC Address", + "id": "ebd98cba-b969-ab25-a1ec-f9e699259ea5", + "name": "Active", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, "dataCategory": "NOMINAL", "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, + "dataType": "BOOLEAN", + "aggregation": null + } + ] + }, + { + "id": "b207c2f2-b675-32e3-2663-17bb836a018b", + "name": "Overdue Problems", + "path": "", + "createdAt": "2021-12-17T19:14:10Z", + "updatedAt": "2021-12-17T19:15:02Z", + "tags": [], + "containedInDashboards": [ { - "__typename": "ColumnField", - "id": "baa349ea-198a-29da-9dae-f10f31a12cad", - "name": "Name", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, + "name": "Executive Dashboard", + "path": "ExecutiveDashboard/ExecutiveDashboard" + } + ], + "datasourceFields": [ { - "__typename": "ColumnField", - "id": "bb459069-04ab-3bd8-a9ed-dc5573834a34", - "name": "Approval group", + "__typename": "CalculatedField", + "id": "1b0ade5c-b27a-37c9-3777-5f1b10db972e", + "name": "Overdue", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", + "name": "Problems" + }, "role": "DIMENSION", "dataType": "STRING", - "defaultFormat": null, "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "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}" }, { "__typename": "ColumnField", - "id": "bd513be6-26ba-b62a-74bc-adab1fb6488c", - "name": "Approval", + "id": "204940b8-ad53-93bc-7f4e-0c49a1ced7c8", + "name": "Number", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", + "name": "Problems" + }, "dataCategory": "NOMINAL", "role": "DIMENSION", "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "bdd48dd3-e4e3-ef05-b63f-e2a6fbff3fd1", - "name": "Priority (Incident)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "aggregation": null }, { "__typename": "ColumnField", - "id": "bfb0ac8a-31a2-7024-45f3-49996be2df88", - "name": "Urgency", + "id": "2faad672-a1ff-95d1-67c9-2fd6bda9e8b9", + "name": "Priority", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, + "dataCategory": "ORDINAL", + "role": "DIMENSION", "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "aggregation": "Sum" }, { "__typename": "ColumnField", - "id": "c199dd42-7e3d-ee43-7497-5c878129a3aa", - "name": "Delivery plan (Incident)", + "id": "3a946020-200f-ef9c-3ffb-dc3d1d7f8d83", + "name": "Due date", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", + "name": "Problems" + }, + "dataCategory": "ORDINAL", "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "dataType": "DATETIME", + "aggregation": null }, { - "__typename": "ColumnField", - "id": "c204f108-6aaa-1157-6649-c1e68bf42ad3", - "name": "Company (Incident)", + "__typename": "CalculatedField", + "id": "545b9d43-eae2-8cbc-99d0-27058e192e95", + "name": "% of Overdue", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", + "name": "Problems" + }, + "role": "MEASURE", + "dataType": "REAL", "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "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])})" }, { "__typename": "ColumnField", - "id": "c4f111b2-0b44-14c8-46ad-a2d5ffa99c39", - "name": "Additional comments (Incident)", + "id": "a1a22d48-f456-97d0-c098-5fd70f09ff7f", + "name": "Opened", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, + "dataCategory": "ORDINAL", "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "dataType": "DATETIME", + "aggregation": null }, { "__typename": "ColumnField", - "id": "c5d5443a-e3d4-b1d5-484f-326d66905887", - "name": "Business service (Incident)", + "id": "ab2aa63d-c73a-9cf9-9a54-9d469d47e890", + "name": "Opened", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", + "name": "Problems" + }, + "dataCategory": "ORDINAL", "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "dataType": "DATETIME", + "aggregation": null }, { - "__typename": "ColumnField", - "id": "c79ce6cd-b9dd-6734-e452-aeaca19e82bd", - "name": "Schedule", + "__typename": "CalculatedField", + "id": "c64607f1-c00a-88b8-b4ea-4018f7dff6f0", + "name": "Max Year?", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", + "name": "Problems" + }, "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, + "dataType": "BOOLEAN", "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "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])})" }, { "__typename": "ColumnField", - "id": "c8cfca57-a823-37a7-4414-6d0b682a8024", - "name": "Sys ID (Incident)", + "id": "cffb2549-3525-3117-9d65-855e28d41fdd", + "name": "Priority", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", + "name": "Problems" + }, + "dataCategory": "ORDINAL", "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "dataType": "INTEGER", + "aggregation": "Sum" }, { "__typename": "ColumnField", - "id": "c958daf4-da7c-229e-390c-f1d81c6dde2a", - "name": "Supported by", + "id": "de60a6dd-ae9a-3b7c-edf8-d24f5f53fa89", + "name": "Closed", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", + "name": "Problems" + }, + "dataCategory": "ORDINAL", "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "dataType": "DATETIME", + "aggregation": null }, { "__typename": "ColumnField", - "id": "c988934d-d4a5-3b7c-83e8-b383a8f8419b", - "name": "Configuration item (Incident)", + "id": "ebd98cba-b969-ab25-a1ec-f9e699259ea5", + "name": "Active", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, "dataCategory": "NOMINAL", "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "dataType": "BOOLEAN", + "aggregation": null }, { "__typename": "ColumnField", - "id": "c9beabbf-d9d4-56a1-09d1-a8a0be3078cc", - "name": "Task type", + "id": "ff4371e0-3575-3686-23d1-4d035db44f33", + "name": "Active", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", + "name": "Problems" + }, "dataCategory": "NOMINAL", "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, + "dataType": "BOOLEAN", + "aggregation": null + } + ] + }, + { + "id": "b679da5e-7d03-f01e-b2ea-01fb3c1926dc", + "name": "Tooltip - Problem Breakdown by Priority", + "path": "ExecutiveDashboard/Tooltip-ProblemBreakdownbyPriority", + "createdAt": "2021-12-17T19:14:10Z", + "updatedAt": "2021-12-17T19:15:02Z", + "tags": [], + "containedInDashboards": [], + "datasourceFields": [ { "__typename": "ColumnField", - "id": "ca51fe9b-f1e4-f6f9-ee9e-2961a3fd0ac9", - "name": "Support group", + "id": "204940b8-ad53-93bc-7f4e-0c49a1ced7c8", + "name": "Number", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", + "name": "Problems" + }, "dataCategory": "NOMINAL", "role": "DIMENSION", "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "aggregation": null }, { "__typename": "ColumnField", - "id": "ca52cc66-4c1b-83ea-41b1-bc14348096b8", - "name": "Active (Incident)", + "id": "2faad672-a1ff-95d1-67c9-2fd6bda9e8b9", + "name": "Priority", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, + "dataCategory": "ORDINAL", "role": "DIMENSION", - "dataType": "BOOLEAN", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "dataType": "INTEGER", + "aggregation": "Sum" }, { "__typename": "ColumnField", - "id": "cb8052a6-0871-69b3-b212-62b7c74bf205", - "name": "Correlation display (Incident)", + "id": "a1a22d48-f456-97d0-c098-5fd70f09ff7f", + "name": "Opened", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, + "dataCategory": "ORDINAL", "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "dataType": "DATETIME", + "aggregation": null }, { "__typename": "ColumnField", - "id": "cbd71d39-25b7-3854-6fac-6fa834cce1ee", - "name": "Justification", + "id": "ab2aa63d-c73a-9cf9-9a54-9d469d47e890", + "name": "Opened", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", + "name": "Problems" + }, + "dataCategory": "ORDINAL", "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "dataType": "DATETIME", + "aggregation": null }, { - "__typename": "ColumnField", - "id": "cbfef2b1-a95c-02e9-4c5e-c162e84d7341", - "name": "Change Request (Incident)", + "__typename": "CalculatedField", + "id": "c64607f1-c00a-88b8-b4ea-4018f7dff6f0", + "name": "Max Year?", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", + "name": "Problems" + }, "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, - { - "__typename": "ColumnField", - "id": "cd1619c4-dd7a-fa47-e171-78e7ddb57879", - "name": "Updates", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, + "dataType": "BOOLEAN", "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "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])})" }, { "__typename": "ColumnField", - "id": "cd5bb434-957d-79da-2438-89161a10c0f6", - "name": "Incident state (Incident)", + "id": "cffb2549-3525-3117-9d65-855e28d41fdd", + "name": "Priority", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", + "name": "Problems" + }, + "dataCategory": "ORDINAL", + "role": "DIMENSION", "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "aggregation": "Sum" }, { "__typename": "ColumnField", - "id": "cf6943b4-a34c-1fcd-f032-a09219619d29", - "name": "Domain (Incident)", + "id": "ebd98cba-b969-ab25-a1ec-f9e699259ea5", + "name": "Active", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, "dataCategory": "NOMINAL", "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "dataType": "BOOLEAN", + "aggregation": null }, { "__typename": "ColumnField", - "id": "cf931c80-aa6a-9a08-26f2-f0bf383fa918", - "name": "Made SLA (Incident)", + "id": "ff4371e0-3575-3686-23d1-4d035db44f33", + "name": "Active", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", + "name": "Problems" + }, "dataCategory": "NOMINAL", "role": "DIMENSION", "dataType": "BOOLEAN", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, + "aggregation": null + } + ] + }, + { + "id": "c14973c2-e1c3-563a-a9c1-8a408396d22a", + "name": "Tooltip - Request Breakdown by Priority", + "path": "ExecutiveDashboard/Tooltip-RequestBreakdownbyPriority", + "createdAt": "2021-12-17T19:14:10Z", + "updatedAt": "2021-12-17T19:15:02Z", + "tags": [], + "containedInDashboards": [], + "datasourceFields": [ { - "__typename": "CalculatedField", - "id": "d2678e95-9a3b-ae61-a30e-a4fc3ce9985d", - "name": "Opened Month Tooltip", + "__typename": "ColumnField", + "id": "04dc385d-8417-aa5f-3f4c-27c4333fdb5e", + "name": "Opened", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "06c3e060-8133-4b58-9b53-a0fced25e056", + "name": "Requests" + }, + "dataCategory": "ORDINAL", "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "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" + "dataType": "DATETIME", + "aggregation": null }, { "__typename": "ColumnField", - "id": "d2753f51-27e6-bd3c-d86f-c1ac5056f743", - "name": "Problem (Incident)", + "id": "2faad672-a1ff-95d1-67c9-2fd6bda9e8b9", + "name": "Priority", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, + "dataCategory": "ORDINAL", "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "dataType": "INTEGER", + "aggregation": "Sum" }, { "__typename": "ColumnField", - "id": "d3a25e7f-4a67-7985-0fad-5325a221613d", - "name": "Measure Values", + "id": "4f4cb0a0-d290-f269-6306-ffbda0b59bb9", + "name": "Priority", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "REAL", - "defaultFormat": null, - "aggregation": null, - "columns": [] + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "06c3e060-8133-4b58-9b53-a0fced25e056", + "name": "Requests" + }, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "INTEGER", + "aggregation": "Sum" }, { "__typename": "ColumnField", - "id": "d451fb73-04ee-6e91-2b5e-7a619ec49318", - "name": "Group list", + "id": "848b5022-e769-97ac-34ab-4855920f60f6", + "name": "Active", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "06c3e060-8133-4b58-9b53-a0fced25e056", + "name": "Requests" + }, "dataCategory": "NOMINAL", "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "dataType": "BOOLEAN", + "aggregation": null }, { "__typename": "ColumnField", - "id": "d487e44d-11ff-6c48-9c12-9a94f368e2e4", - "name": "Checked in", + "id": "a1a22d48-f456-97d0-c098-5fd70f09ff7f", + "name": "Opened", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, "dataCategory": "ORDINAL", "role": "DIMENSION", "dataType": "DATETIME", - "defaultFormat": null, + "aggregation": null + }, + { + "__typename": "CalculatedField", + "id": "a88003b6-66c0-f362-a977-2d5d9c6dd3db", + "name": "Max Year?", + "description": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "06c3e060-8133-4b58-9b53-a0fced25e056", + "name": "Requests" + }, + "role": "DIMENSION", + "dataType": "BOOLEAN", "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "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])})" }, { - "__typename": "ColumnField", - "id": "d5384062-e552-923e-a612-ca291854b4ca", - "name": "Severity (Incident)", + "__typename": "CalculatedField", + "id": "ad2cbb7c-aaad-12d3-36ef-179ff1cfa1ff", + "name": "Max Year?", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, + "role": "DIMENSION", + "dataType": "BOOLEAN", "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "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])})" }, { - "__typename": "CalculatedField", - "id": "d5e37fc7-6a27-f00d-492b-5a04b3aa853e", - "name": "Number of Records", + "__typename": "ColumnField", + "id": "ebd98cba-b969-ab25-a1ec-f9e699259ea5", + "name": "Active", "description": null, - "isHidden": true, - "folderName": null, - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "formula": "1" + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, + "dataCategory": "NOMINAL", + "role": "DIMENSION", + "dataType": "BOOLEAN", + "aggregation": null }, { "__typename": "ColumnField", - "id": "d5f83f0b-2b83-3723-f0f2-210beaf4ebc9", - "name": "Time worked (Incident)", + "id": "f3d4aefe-efef-0eef-f741-12b236720626", + "name": "Number", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "06c3e060-8133-4b58-9b53-a0fced25e056", + "name": "Requests" + }, "dataCategory": "NOMINAL", "role": "DIMENSION", "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, + "aggregation": null + } + ] + }, + { + "id": "e70a540d-55ed-b9cc-5a3c-01ebe81a1274", + "name": "Age of Active Problems", + "path": "", + "createdAt": "2021-12-17T19:14:10Z", + "updatedAt": "2021-12-17T19:15:02Z", + "tags": [], + "containedInDashboards": [ + { + "name": "Executive Dashboard", + "path": "ExecutiveDashboard/ExecutiveDashboard" + } + ], + "datasourceFields": [ { "__typename": "ColumnField", - "id": "da02b984-48fa-76e6-061c-b1462813432b", - "name": "Cost center", + "id": "204940b8-ad53-93bc-7f4e-0c49a1ced7c8", + "name": "Number", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", + "name": "Problems" + }, "dataCategory": "NOMINAL", "role": "DIMENSION", "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "aggregation": null }, { "__typename": "ColumnField", - "id": "da62c9c2-0ca6-a8ab-e518-3fe3959983ba", - "name": "Work end (Incident)", + "id": "2faad672-a1ff-95d1-67c9-2fd6bda9e8b9", + "name": "Priority", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, "dataCategory": "ORDINAL", "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "dataType": "INTEGER", + "aggregation": "Sum" }, { - "__typename": "ColumnField", - "id": "db0bf429-31ae-7a84-7016-343e9631f0cb", - "name": "Domain Path", + "__typename": "CalculatedField", + "id": "3ca79cbf-1f11-1c6b-8cff-8809fb78847d", + "name": "Time Span Breakdown", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", + "name": "Problems" + }, "role": "DIMENSION", "dataType": "STRING", - "defaultFormat": null, "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "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" }, { "__typename": "ColumnField", - "id": "dc36513d-648a-03f4-6983-d60b911212ea", - "name": "Due date", + "id": "a1a22d48-f456-97d0-c098-5fd70f09ff7f", + "name": "Opened", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, "dataCategory": "ORDINAL", "role": "DIMENSION", "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "aggregation": null }, { "__typename": "ColumnField", - "id": "dfcd0d64-ca18-e181-bd07-a2a2528ea65b", - "name": "Contact type", + "id": "ab2aa63d-c73a-9cf9-9a54-9d469d47e890", + "name": "Opened", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", + "name": "Problems" + }, + "dataCategory": "ORDINAL", "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "dataType": "DATETIME", + "aggregation": null }, { - "__typename": "ColumnField", - "id": "e0e4e50f-5bbc-9b6c-b61c-18c3bead6985", - "name": "Created (Configuration Item)", + "__typename": "CalculatedField", + "id": "c64607f1-c00a-88b8-b4ea-4018f7dff6f0", + "name": "Max Year?", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", + "name": "Problems" + }, "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, + "dataType": "BOOLEAN", "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "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])})" }, { - "__typename": "ColumnField", - "id": "e107947e-cc43-8d74-bef5-1219b6f26acc", - "name": "Delivery plan", + "__typename": "CalculatedField", + "id": "cff99350-e836-7226-8050-3163d587b479", + "name": "Age of Problems", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", + "name": "Problems" + }, + "role": "MEASURE", + "dataType": "INTEGER", "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "formula": "//Calculates the age of active problems since opened until now\r\n\r\nDATEDIFF('second', [Opened], NOW())" }, { "__typename": "ColumnField", - "id": "e2d64ef4-51dd-351b-1a41-34c331438b03", - "name": "Subcategory (Configuration Item)", + "id": "cffb2549-3525-3117-9d65-855e28d41fdd", + "name": "Priority", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", + "name": "Problems" + }, + "dataCategory": "ORDINAL", "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "dataType": "INTEGER", + "aggregation": "Sum" }, { "__typename": "ColumnField", - "id": "e2f0512c-5ae3-b551-c540-7f7e9d4e2891", - "name": "Description", + "id": "ebd98cba-b969-ab25-a1ec-f9e699259ea5", + "name": "Active", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, "dataCategory": "NOMINAL", "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "dataType": "BOOLEAN", + "aggregation": null }, { "__typename": "ColumnField", - "id": "e3fbc2ec-3c5f-fd89-fee7-a7018f62b8f9", - "name": "Sys ID", + "id": "ff4371e0-3575-3686-23d1-4d035db44f33", + "name": "Active", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "3ade7817-ae27-259e-8e48-1570e7f932f6", + "name": "Problems" + }, "dataCategory": "NOMINAL", "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] - }, + "dataType": "BOOLEAN", + "aggregation": null + } + ] + }, + { + "id": "f76d3570-23b8-f74b-d85c-cc5484c2079c", + "name": "Opened Incidents", + "path": "", + "createdAt": "2021-12-17T19:14:10Z", + "updatedAt": "2021-12-17T19:15:02Z", + "tags": [], + "containedInDashboards": [ + { + "name": "Executive Dashboard", + "path": "ExecutiveDashboard/ExecutiveDashboard" + } + ], + "datasourceFields": [ { "__typename": "ColumnField", - "id": "e8f1f323-2a8a-9f76-a6f1-1b9475149bbb", - "name": "Comments and Work notes (Incident)", + "id": "2faad672-a1ff-95d1-67c9-2fd6bda9e8b9", + "name": "Priority", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, + "dataCategory": "ORDINAL", "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "dataType": "INTEGER", + "aggregation": "Sum" }, { - "__typename": "ColumnField", - "id": "eb75ad3f-7e12-c6b7-816f-f0cc036587d0", - "name": "Can Print", + "__typename": "CalculatedField", + "id": "3ac8f5aa-1260-dabf-c762-3ba52fdfc2c0", + "name": "Current Year Total Cases", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "BOOLEAN", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, + "role": "MEASURE", + "dataType": "INTEGER", + "aggregation": "Attribute", + "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}" }, { "__typename": "ColumnField", - "id": "ebd98cba-b969-ab25-a1ec-f9e699259ea5", - "name": "Active", + "id": "5dbafcd1-d8d2-68cc-fde3-20e8c7b26ff8", + "name": "Category (Incident)", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, "dataCategory": "NOMINAL", "role": "DIMENSION", - "dataType": "BOOLEAN", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "dataType": "STRING", + "aggregation": null }, { - "__typename": "ColumnField", - "id": "ed27d249-10e9-e6ab-7d4d-2b804e8c1969", - "name": "Correlation ID (Incident)", + "__typename": "CalculatedField", + "id": "636235a9-4709-04e1-eef2-67ac7c194eb4", + "name": "Overdue", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, "role": "DIMENSION", "dataType": "STRING", - "defaultFormat": null, "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "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}" + }, + { + "__typename": "CalculatedField", + "id": "9b35c0be-0f76-63a1-445d-9872a1465154", + "name": "Total Active Incidents", + "description": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, + "role": "MEASURE", + "dataType": "INTEGER", + "aggregation": "Attribute", + "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}" }, { "__typename": "ColumnField", - "id": "f1e27f80-b699-f683-cf3b-0ebc53d0dfe2", - "name": "Number (Incident)", + "id": "9d228629-7bd0-42df-3b44-b7900f4c1e48", + "name": "Number", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, "dataCategory": "NOMINAL", "role": "DIMENSION", "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "aggregation": null }, { "__typename": "ColumnField", - "id": "f26d57ca-a698-b5e8-b254-65cf3de14a98", - "name": "Follow up (Incident)", + "id": "a1a22d48-f456-97d0-c098-5fd70f09ff7f", + "name": "Opened", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, "dataCategory": "ORDINAL", "role": "DIMENSION", "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "aggregation": null }, { - "__typename": "ColumnField", - "id": "f3298925-2b95-aa53-b2aa-f83feee7a83f", - "name": "Task type (Incident)", + "__typename": "CalculatedField", + "id": "ad2cbb7c-aaad-12d3-36ef-179ff1cfa1ff", + "name": "Max Year?", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, + "dataType": "BOOLEAN", "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "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])})" }, { - "__typename": "ColumnField", - "id": "f49bdb6d-26a4-56c1-319c-ecdff5632164", - "name": "Domain Path (Incident)", + "__typename": "CalculatedField", + "id": "d2678e95-9a3b-ae61-a30e-a4fc3ce9985d", + "name": "Opened Month Tooltip", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, "role": "DIMENSION", "dataType": "STRING", - "defaultFormat": null, "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "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" }, { "__typename": "ColumnField", - "id": "f59d94c1-f580-0384-8272-ac4be3edd163", - "name": "Closed", + "id": "dc36513d-648a-03f4-6983-d60b911212ea", + "name": "Due date", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, "dataCategory": "ORDINAL", "role": "DIMENSION", "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "aggregation": null }, { "__typename": "ColumnField", - "id": "f5f1f0a8-580d-c862-bad4-f0e50aa3f8bc", - "name": "Description (Incident)", + "id": "ebd98cba-b969-ab25-a1ec-f9e699259ea5", + "name": "Active", "description": null, - "isHidden": false, - "folderName": null, + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, "dataCategory": "NOMINAL", "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "dataType": "BOOLEAN", + "aggregation": null }, { "__typename": "ColumnField", - "id": "f6a05d7e-6f18-f9c7-a424-3f1742a16167", - "name": "Reassignment count", + "id": "f59d94c1-f580-0384-8272-ac4be3edd163", + "name": "Closed", "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "datasource": { + "__typename": "EmbeddedDatasource", + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8", + "name": "Incidents" + }, + "dataCategory": "ORDINAL", + "role": "DIMENSION", + "dataType": "DATETIME", + "aggregation": null + } + ] + } + ], + "dashboards": [ + { + "id": "5dcaaf46-e6fb-2548-e763-272a7ab2c9b1", + "name": "Executive Dashboard", + "path": "ExecutiveDashboard/ExecutiveDashboard", + "createdAt": "2021-12-17T19:14:10Z", + "updatedAt": "2021-12-17T19:15:02Z", + "sheets": [ + { + "id": "20fc5eb7-81eb-aa18-8c39-af501c62d085", + "name": "Opened Requests" }, { - "__typename": "ColumnField", - "id": "f92f9515-c6c9-e857-438f-3f4103e34c09", - "name": "Contact type (Incident)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "id": "2b5351c1-535d-4a4a-1339-c51ddd6abf8a", + "name": "Top 10 Items by Requests and YoY Change" }, { - "__typename": "ColumnField", - "id": "f97631bf-8375-1560-7883-278f9d6b53fc", - "name": "Assignment group (Incident)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "id": "2b73b9dd-4ec7-75ca-f2e9-fa1984ca8b72", + "name": "Opened Problems" }, { - "__typename": "ColumnField", - "id": "f97fd94e-f5d6-8f68-457b-dfacd40fd7f9", - "name": "Comments", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "id": "373c6466-bb0c-b319-8752-632456349261", + "name": "Overdue" }, { - "__typename": "ColumnField", - "id": "fba5a588-b3aa-6033-e01c-0bcd4554f3f1", - "name": "State", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "id": "53b8dc2f-8ada-51f7-7422-fe82e9b803cc", + "name": "High and Critical Priority Problems" }, { - "__typename": "ColumnField", - "id": "fbd3c962-218c-de6d-a11c-da9e2e249f16", - "name": "Work start (Incident)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "id": "58af9ecf-b839-da50-65e1-2e1fa20e3362", + "name": "Total Incidents by Category and YoY Change" }, { - "__typename": "ColumnField", - "id": "fc35b28d-0112-dbd0-960e-8d1a6d3bf2be", - "name": "Correlation ID", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "id": "618b3e76-75c1-cb31-0c61-3f4890b72c31", + "name": "Known Errors" }, { - "__typename": "ColumnField", - "id": "fc7a1dae-abc6-8574-b17e-d996e4f57bb9", - "name": "State (Incident)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "QUANTITATIVE", - "role": "MEASURE", - "dataType": "INTEGER", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "id": "721c3c41-7a2b-16a8-3281-6f948a44be96", + "name": "Overdue Requests" }, { - "__typename": "ColumnField", - "id": "fc82ee6e-5518-0b99-5a3e-f11320190dc2", - "name": "Resolved (Incident)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "id": "7ef184c1-5a41-5ec8-723e-ae44c20aa335", + "name": "AVG Time to Solve an Incident" }, { - "__typename": "ColumnField", - "id": "fd5c51a2-8000-9c11-f3f7-b3b8eae0b50e", - "name": "Assigned", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "ORDINAL", - "role": "DIMENSION", - "dataType": "DATETIME", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "id": "7fbc77ba-0ab6-3727-0db3-d8402a804da5", + "name": "Made SLA?" }, { - "__typename": "CalculatedField", - "id": "ff51c0e0-4b09-ab90-9dca-6b7c9de8f135", - "name": "Time to Close an Incident", - "description": null, - "isHidden": false, - "folderName": null, - "role": "MEASURE", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "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))" + "id": "b207c2f2-b675-32e3-2663-17bb836a018b", + "name": "Overdue Problems" }, { - "__typename": "ColumnField", - "id": "ff85fc4f-2886-a45a-1e12-e5f0aa87abd2", - "name": "Upon approval (Incident)", - "description": null, - "isHidden": false, - "folderName": null, - "dataCategory": "NOMINAL", - "role": "DIMENSION", - "dataType": "STRING", - "defaultFormat": null, - "aggregation": null, - "columns": [ - { - "table": {} - } - ] + "id": "e70a540d-55ed-b9cc-5a3c-01ebe81a1274", + "name": "Age of Active Problems" + }, + { + "id": "f76d3570-23b8-f74b-d85c-cc5484c2079c", + "name": "Opened Incidents" } - ], - "upstreamDatasources": [], - "workbook": { - "name": "Executive Dashboard", - "projectName": "default" - } + ] + } + ], + "embeddedDatasources": [ + { + "id": "06c3e060-8133-4b58-9b53-a0fced25e056" + }, + { + "id": "3ade7817-ae27-259e-8e48-1570e7f932f6" + }, + { + "id": "dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8" } ] }, @@ -21538,141 +4186,7 @@ "dashboards": [], "embeddedDatasources": [ { - "__typename": "EmbeddedDatasource", - "id": "d8d4c0ea-3162-fa11-31e6-26675da44a38", - "name": "test publish datasource", - "hasExtracts": false, - "extractLastRefreshTime": null, - "extractLastIncrementalUpdateTime": null, - "extractLastUpdateTime": null, - "upstreamDatabases": [ - { - "id": "a7825692-7de9-113d-5377-ae113331a9ec", - "name": "dvdrental", - "connectionType": "postgres", - "isEmbedded": false - } - ], - "upstreamTables": [ - { - "id": "39657832-0769-6372-60c3-687a51e2a772", - "name": "customer", - "database": { - "name": "ven01911" - }, - "schema": "", - "fullName": "customer", - "connectionType": "postgres", - "description": "", - "columns": [] - }, - { - "id": "3cdd0522-44ef-62eb-ba52-71545c258344", - "name": "payment", - "database": { - "name": "ven01911" - }, - "schema": "", - "fullName": "payment", - "connectionType": "postgres", - "description": "", - "columns": [] - }, - { - "id": "7df39af9-6767-4c9c-4120-155a024de062", - "name": "staff", - "database": { - "name": "ven01911" - }, - "schema": "", - "fullName": "staff", - "connectionType": "postgres", - "description": "", - "columns": [] - } - ], - "downstreamSheets": [ - { - "id": "130496dc-29ca-8a89-e32b-d73c4d8b65ff", - "name": "published sheet ds" - } - ], - "fields": [ - { - "__typename": "DatasourceField", - "id": "0235103b-b83a-1380-8357-45b6e458202d", - "name": "customer_id", - "description": null, - "isHidden": false, - "folderName": null - }, - { - "__typename": "DatasourceField", - "id": "494eb750-ceb8-5000-e42b-f5889389c62b", - "name": "Custom SQL Query", - "description": null, - "isHidden": false, - "folderName": null - }, - { - "__typename": "DatasourceField", - "id": "60ca9dc0-f867-01a1-6d9f-e196636c0f08", - "name": "staff_last_name", - "description": null, - "isHidden": false, - "folderName": null - }, - { - "__typename": "DatasourceField", - "id": "79ab36f4-e1f3-ec9a-13c6-e7658f3ed563", - "name": "staff_first_name", - "description": null, - "isHidden": false, - "folderName": null - }, - { - "__typename": "DatasourceField", - "id": "8dbd31bb-460f-bb52-3b26-d0b4b5df875e", - "name": "customer_last_name", - "description": null, - "isHidden": false, - "folderName": null - }, - { - "__typename": "DatasourceField", - "id": "c058d792-9f88-8642-4e63-682cfb6382af", - "name": "amount", - "description": null, - "isHidden": false, - "folderName": null - }, - { - "__typename": "DatasourceField", - "id": "d432bec7-b5cf-7891-3a47-087a65f3679b", - "name": "customer_first_name", - "description": null, - "isHidden": false, - "folderName": null - }, - { - "__typename": "DatasourceField", - "id": "ddadd012-bcdb-2ddd-9021-c590410c3e59", - "name": "payment_date", - "description": null, - "isHidden": false, - "folderName": null - } - ], - "upstreamDatasources": [ - { - "id": "00cce29f-b561-bb41-3557-8e19660bb5dd", - "name": "test publish datasource" - } - ], - "workbook": { - "name": "Workbook published ds", - "projectName": "default" - } + "id": "d8d4c0ea-3162-fa11-31e6-26675da44a38" } ], "upstreamDatasources": [ diff --git a/metadata-ingestion/tests/integration/tableau/tableau_mces_golden.json b/metadata-ingestion/tests/integration/tableau/tableau_mces_golden.json index db69d5cbdc365e..34bb2f6711d73b 100644 --- a/metadata-ingestion/tests/integration/tableau/tableau_mces_golden.json +++ b/metadata-ingestion/tests/integration/tableau/tableau_mces_golden.json @@ -1,9 +1,7 @@ [ { - "auditHeader": null, "entityType": "container", "entityUrn": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "containerProperties", "aspect": { @@ -12,17 +10,12 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "container", "entityUrn": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "dataPlatformInstance", "aspect": { @@ -31,17 +24,12 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "container", "entityUrn": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "subTypes", "aspect": { @@ -50,17 +38,12 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "container", "entityUrn": "urn:li:container:008e111aa1d250dd52e0fd5d4b307b1a", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "ownership", "aspect": { @@ -69,14 +52,10 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { "urn": "urn:li:chart:(tableau,222d1406-de0e-cd8d-0b94-9b45a0007e59)", @@ -97,25 +76,18 @@ "lastModified": { "created": { "time": 1640200234000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" }, "lastModified": { "time": 1640200234000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" + } }, - "chartUrl": null, "inputs": [ { "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD)" } - ], - "type": null, - "access": null, - "lastRefreshed": null + ] } }, { @@ -130,34 +102,26 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "chart", "entityUrn": "urn:li:chart:(tableau,222d1406-de0e-cd8d-0b94-9b45a0007e59)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "container", "aspect": { @@ -166,14 +130,10 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { "urn": "urn:li:chart:(tableau,38130558-4194-2e2a-3046-c0d887829cb4)", @@ -205,25 +165,18 @@ "lastModified": { "created": { "time": 1640200234000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" }, "lastModified": { "time": 1640200234000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" + } }, - "chartUrl": null, "inputs": [ { "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD)" } - ], - "type": null, - "access": null, - "lastRefreshed": null + ] } }, { @@ -238,34 +191,26 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "chart", "entityUrn": "urn:li:chart:(tableau,38130558-4194-2e2a-3046-c0d887829cb4)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "container", "aspect": { @@ -274,14 +219,10 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { "urn": "urn:li:chart:(tableau,692a2da4-2a82-32c1-f713-63b8e4325d86)", @@ -315,25 +256,18 @@ "lastModified": { "created": { "time": 1640200234000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" }, "lastModified": { "time": 1640200234000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" + } }, - "chartUrl": null, "inputs": [ { "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD)" } - ], - "type": null, - "access": null, - "lastRefreshed": null + ] } }, { @@ -348,34 +282,26 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "chart", "entityUrn": "urn:li:chart:(tableau,692a2da4-2a82-32c1-f713-63b8e4325d86)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "container", "aspect": { @@ -384,14 +310,10 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { "urn": "urn:li:chart:(tableau,f4317efd-c3e6-6ace-8fe6-e71b590bbbcc)", @@ -421,25 +343,18 @@ "lastModified": { "created": { "time": 1640200234000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" }, "lastModified": { "time": 1640200234000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" + } }, - "chartUrl": null, "inputs": [ { "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD)" } - ], - "type": null, - "access": null, - "lastRefreshed": null + ] } }, { @@ -454,34 +369,26 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "chart", "entityUrn": "urn:li:chart:(tableau,f4317efd-c3e6-6ace-8fe6-e71b590bbbcc)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "container", "aspect": { @@ -490,14 +397,10 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.DashboardSnapshot": { "urn": "urn:li:dashboard:(tableau,8f7dd564-36b6-593f-3c6f-687ad06cd40b)", @@ -505,7 +408,6 @@ { "com.linkedin.pegasus2avro.dashboard.DashboardInfo": { "customProperties": {}, - "externalUrl": null, "title": "Email Performance by Campaign", "description": "", "charts": [ @@ -518,19 +420,14 @@ "lastModified": { "created": { "time": 1640200234000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" }, "lastModified": { "time": 1640200234000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" + } }, - "dashboardUrl": "https://do-not-connect/#/site/acryl/views/EmailPerformancebyCampaign/EmailPerformancebyCampaign", - "access": null, - "lastRefreshed": null + "dashboardUrl": "https://do-not-connect/#/site/acryl/views/EmailPerformancebyCampaign/EmailPerformancebyCampaign" } }, { @@ -545,34 +442,26 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "dashboard", "entityUrn": "urn:li:dashboard:(tableau,8f7dd564-36b6-593f-3c6f-687ad06cd40b)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "container", "aspect": { @@ -581,17 +470,12 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "dataset", "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "upstreamLineage", "aspect": { @@ -600,14 +484,10 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD)", @@ -624,14 +504,12 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } }, @@ -644,11 +522,7 @@ "extractLastUpdateTime": "2018-02-09T00:05:25Z", "type": "EmbeddedDatasource" }, - "externalUrl": null, "name": "Marketo", - "qualifiedName": null, - "description": null, - "uri": null, "tags": [] } }, @@ -659,17 +533,12 @@ "version": 0, "created": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, - "deleted": null, - "dataset": null, - "cluster": null, "hash": "", "platformSchema": { "com.linkedin.pegasus2avro.schema.OtherSchema": { @@ -679,7 +548,6 @@ "fields": [ { "fieldPath": "Delivery Rate", - "jsonPath": null, "nullable": false, "description": "formula: ZN([Delivered Email]/[Sent Email])", "type": { @@ -692,23 +560,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Program ID", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -721,23 +583,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Platform (Activity - Click Email)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -750,27 +606,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" }, { - "tag": "urn:li:tag:COUNT", - "context": null + "tag": "urn:li:tag:COUNT" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Updated At", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -783,23 +632,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Workspace Name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -812,23 +655,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Mailing ID (Activity - Email Delivered)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -841,23 +678,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Campaign ID (Activity - Email Delivered)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -870,23 +701,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Number of Records", - "jsonPath": null, "nullable": false, "description": "formula: 1", "type": { @@ -899,23 +724,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Campaign Run ID", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -928,23 +747,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "User Agent (Activity - Click Email)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -957,23 +770,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Choice Number (Activity - Email Delivered)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -986,23 +793,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Campaign ID", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -1015,23 +816,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -1044,23 +839,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Is Predictive", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -1073,23 +862,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Campaign ID (Activity - Click Email)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -1102,23 +885,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Activity Date (Activity - Click Email)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -1131,23 +908,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Has Predictive (Activity - Open Email)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -1160,23 +931,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Step ID (Activity - Open Email)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -1189,23 +954,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Id (Activity - Click Email)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -1218,23 +977,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Step ID (Activity - Click Email)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -1247,23 +1000,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Activity Date", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -1276,23 +1023,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Clickthrough Rate", - "jsonPath": null, "nullable": false, "description": "formula: [Clickthrough Emails]/[Delivered Email]", "type": { @@ -1305,23 +1046,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Open Rate", - "jsonPath": null, "nullable": false, "description": "formula: ZN([Opened Email]/[Delivered Email])", "type": { @@ -1334,23 +1069,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Measure Names", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -1363,23 +1092,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Sent Email", - "jsonPath": null, "nullable": false, "description": "formula: COUNTD([Id])", "type": { @@ -1392,23 +1115,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Delivered Email", - "jsonPath": null, "nullable": false, "description": "formula: COUNTD([Id (Activity - Email Delivered)])", "type": { @@ -1421,23 +1138,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Lead ID (Activity - Click Email)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -1450,23 +1161,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Choice Number", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -1479,23 +1184,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Is Mobile Device", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -1508,23 +1207,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Platform", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -1537,27 +1230,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" }, { - "tag": "urn:li:tag:COUNT", - "context": null + "tag": "urn:li:tag:COUNT" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Mailing ID (Activity - Open Email)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -1570,23 +1256,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Lead ID (Activity - Open Email)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -1599,23 +1279,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Test Variant (Activity - Email Delivered)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -1628,23 +1302,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "ID", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -1657,23 +1325,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Campaign Run ID (Activity - Email Delivered)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -1686,23 +1348,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Id (Activity - Open Email)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -1715,23 +1371,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Activity Date (Activity - Open Email)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -1744,23 +1394,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Description", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -1773,23 +1417,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Campaign Run ID (Activity - Click Email)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -1802,23 +1440,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Created At", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -1831,23 +1463,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Clickthrough Emails", - "jsonPath": null, "nullable": false, "description": "formula: COUNTD([Id (Activity - Click Email)])", "type": { @@ -1860,23 +1486,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Is Mobile Device (Activity - Click Email)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -1889,23 +1509,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Mailing ID", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -1918,23 +1532,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Device (Activity - Click Email)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -1947,27 +1555,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" }, { - "tag": "urn:li:tag:COUNT", - "context": null + "tag": "urn:li:tag:COUNT" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Mailing ID (Activity - Click Email)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -1980,23 +1581,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Choice Number (Activity - Click Email)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -2009,23 +1604,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Test Variant", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -2038,23 +1627,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Link ID", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -2067,23 +1650,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Click-to-Open", - "jsonPath": null, "nullable": false, "description": "formula: ZN([Clickthrough Emails]\r\n/ \r\n[Opened Email])", "type": { @@ -2096,23 +1673,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Opened Email", - "jsonPath": null, "nullable": false, "description": "formula: COUNTD([Id (Activity - Open Email)])", "type": { @@ -2125,23 +1696,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Link", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -2154,27 +1719,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" }, { - "tag": "urn:li:tag:COUNT", - "context": null + "tag": "urn:li:tag:COUNT" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Lead ID", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -2187,23 +1745,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Campaign Run ID (Activity - Open Email)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -2216,23 +1768,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Opened Non Clicked Emails", - "jsonPath": null, "nullable": false, "description": "formula: [Opened Email]-[Clickthrough Emails]", "type": { @@ -2245,23 +1791,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Test Variant (Activity - Open Email)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -2274,23 +1814,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Step ID (Activity - Email Delivered)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -2303,23 +1837,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Non Clickthrough Email", - "jsonPath": null, "nullable": false, "description": "formula: [Delivered Email]-[Clickthrough Emails]", "type": { @@ -2332,23 +1860,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Device", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -2361,27 +1883,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" }, { - "tag": "urn:li:tag:COUNT", - "context": null + "tag": "urn:li:tag:COUNT" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Lead ID (Activity - Email Delivered)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -2394,23 +1909,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Id (Activity - Email Delivered)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -2423,23 +1932,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Program Name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -2452,23 +1955,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Campaign ID (Activity - Open Email)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -2481,23 +1978,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Activity Date (Activity - Email Delivered)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -2510,23 +2001,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Test Variant (Activity - Click Email)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -2539,23 +2024,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Has Predictive", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -2568,23 +2047,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Non Opened Email", - "jsonPath": null, "nullable": false, "description": "formula: [Delivered Email]-[Opened Email]", "type": { @@ -2597,23 +2070,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Measure Values", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -2626,23 +2093,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Has Predictive (Activity - Email Delivered)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -2655,23 +2116,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "User Agent", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -2684,23 +2139,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Active", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -2713,23 +2162,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Step ID", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -2742,23 +2185,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Bounceback", - "jsonPath": null, "nullable": false, "description": "formula: [Sent Email] - [Delivered Email]", "type": { @@ -2771,23 +2208,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Choice Number (Activity - Open Email)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -2800,23 +2231,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Id", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -2829,43 +2254,29 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false } - ], - "primaryKeys": null, - "foreignKeysSpecs": null, - "foreignKeys": null + ] } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "dataset", "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "subTypes", "aspect": { @@ -2874,17 +2285,12 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "dataset", "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,801c95e3-b07e-7bfe-3789-a561c7beccd3,PROD)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "container", "aspect": { @@ -2893,17 +2299,12 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "container", "entityUrn": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "containerProperties", "aspect": { @@ -2912,17 +2313,12 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "container", "entityUrn": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "dataPlatformInstance", "aspect": { @@ -2931,17 +2327,12 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "container", "entityUrn": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "subTypes", "aspect": { @@ -2950,17 +2341,12 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "container", "entityUrn": "urn:li:container:fad3de4b86519c3edeb685215fe0bab1", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "ownership", "aspect": { @@ -2969,14 +2355,10 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { "urn": "urn:li:chart:(tableau,8a6a269a-d6de-fae4-5050-513255b40ffc)", @@ -2992,25 +2374,18 @@ "lastModified": { "created": { "time": 1639772911000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" }, "lastModified": { "time": 1642199995000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" + } }, - "chartUrl": null, "inputs": [ { "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD)" } - ], - "type": null, - "access": null, - "lastRefreshed": null + ] } }, { @@ -3025,34 +2400,26 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "chart", "entityUrn": "urn:li:chart:(tableau,8a6a269a-d6de-fae4-5050-513255b40ffc)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "container", "aspect": { @@ -3061,14 +2428,10 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { "urn": "urn:li:chart:(tableau,c57a5574-db47-46df-677f-0b708dab14db)", @@ -3090,25 +2453,18 @@ "lastModified": { "created": { "time": 1639773415000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" }, "lastModified": { "time": 1642199995000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" + } }, - "chartUrl": null, "inputs": [ { "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD)" } - ], - "type": null, - "access": null, - "lastRefreshed": null + ] } }, { @@ -3123,34 +2479,26 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "chart", "entityUrn": "urn:li:chart:(tableau,c57a5574-db47-46df-677f-0b708dab14db)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "container", "aspect": { @@ -3159,14 +2507,10 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { "urn": "urn:li:chart:(tableau,e604255e-0573-3951-6db7-05bee48116c1)", @@ -3184,25 +2528,18 @@ "lastModified": { "created": { "time": 1640375456000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" }, "lastModified": { "time": 1642199995000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" + } }, - "chartUrl": null, "inputs": [ { "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD)" } - ], - "type": null, - "access": null, - "lastRefreshed": null + ] } }, { @@ -3217,14 +2554,12 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } }, @@ -3232,8 +2567,7 @@ "com.linkedin.pegasus2avro.common.GlobalTags": { "tags": [ { - "tag": "urn:li:tag:TAGSHEET3", - "context": null + "tag": "urn:li:tag:TAGSHEET3" } ] } @@ -3241,20 +2575,14 @@ ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "chart", "entityUrn": "urn:li:chart:(tableau,e604255e-0573-3951-6db7-05bee48116c1)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "container", "aspect": { @@ -3263,14 +2591,10 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.DashboardSnapshot": { "urn": "urn:li:dashboard:(tableau,20e44c22-1ccd-301a-220c-7b6837d09a52)", @@ -3278,7 +2602,6 @@ { "com.linkedin.pegasus2avro.dashboard.DashboardInfo": { "customProperties": {}, - "externalUrl": null, "title": "dvd Rental Dashboard", "description": "", "charts": [ @@ -3288,19 +2611,14 @@ "lastModified": { "created": { "time": 1639773866000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" }, "lastModified": { "time": 1642199995000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" + } }, - "dashboardUrl": "https://do-not-connect/#/site/acryl/views/dvdrental/dvdRentalDashboard", - "access": null, - "lastRefreshed": null + "dashboardUrl": "https://do-not-connect/#/site/acryl/views/dvdrental/dvdRentalDashboard" } }, { @@ -3315,34 +2633,26 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "dashboard", "entityUrn": "urn:li:dashboard:(tableau,20e44c22-1ccd-301a-220c-7b6837d09a52)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "container", "aspect": { @@ -3351,14 +2661,10 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.DashboardSnapshot": { "urn": "urn:li:dashboard:(tableau,39b7a1de-6276-cfc7-9b59-1d22f3bbb06b)", @@ -3366,7 +2672,6 @@ { "com.linkedin.pegasus2avro.dashboard.DashboardInfo": { "customProperties": {}, - "externalUrl": null, "title": "Story 1", "description": "", "charts": [], @@ -3374,19 +2679,14 @@ "lastModified": { "created": { "time": 1639773866000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" }, "lastModified": { "time": 1642199995000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" + } }, - "dashboardUrl": "https://do-not-connect/#/site/acryl/views/dvdrental/Story1", - "access": null, - "lastRefreshed": null + "dashboardUrl": "https://do-not-connect/#/site/acryl/views/dvdrental/Story1" } }, { @@ -3401,34 +2701,26 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "dashboard", "entityUrn": "urn:li:dashboard:(tableau,39b7a1de-6276-cfc7-9b59-1d22f3bbb06b)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "container", "aspect": { @@ -3437,14 +2729,10 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD)", @@ -3461,14 +2749,12 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } }, @@ -3481,11 +2767,7 @@ "extractLastUpdateTime": "", "type": "EmbeddedDatasource" }, - "externalUrl": null, "name": "Customer Payment Query", - "qualifiedName": null, - "description": null, - "uri": null, "tags": [] } }, @@ -3496,17 +2778,12 @@ "version": 0, "created": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, - "deleted": null, - "dataset": null, - "cluster": null, "hash": "", "platformSchema": { "com.linkedin.pegasus2avro.schema.OtherSchema": { @@ -3516,7 +2793,6 @@ "fields": [ { "fieldPath": "payment_date", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -3529,27 +2805,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" }, { - "tag": "urn:li:tag:YEAR", - "context": null + "tag": "urn:li:tag:YEAR" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "amount", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -3562,34 +2831,25 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" }, { - "tag": "urn:li:tag:SUM", - "context": null + "tag": "urn:li:tag:SUM" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Custom SQL Query", - "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.ArrayType": { - "nestedType": null - } + "com.linkedin.pegasus2avro.schema.ArrayType": {} } }, "nativeDataType": "TABLE", @@ -3597,23 +2857,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "First Name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -3626,23 +2880,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "customer_id", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -3655,27 +2903,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" }, { - "tag": "urn:li:tag:SUM", - "context": null + "tag": "urn:li:tag:SUM" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "rental_id", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -3688,27 +2929,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" }, { - "tag": "urn:li:tag:SUM", - "context": null + "tag": "urn:li:tag:SUM" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Last Name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -3721,43 +2955,29 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false } - ], - "primaryKeys": null, - "foreignKeysSpecs": null, - "foreignKeys": null + ] } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "dataset", "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "subTypes", "aspect": { @@ -3766,17 +2986,12 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "dataset", "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "container", "aspect": { @@ -3785,33 +3000,24 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "dataset", "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,618c87db-5959-338b-bcc7-6f5f4cc0b6c6,PROD)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "upstreamLineage", "aspect": { - "value": "{\"upstreams\": [{\"auditStamp\": {\"time\": 0, \"actor\": \"urn:li:corpuser:unknown\"}, \"dataset\": \"urn:li:dataset:(urn:li:dataPlatform:postgres,dvdrental.public.address,PROD)\", \"type\": \"TRANSFORMED\"}, {\"auditStamp\": {\"time\": 0, \"actor\": \"urn:li:corpuser:unknown\"}, \"dataset\": \"urn:li:dataset:(urn:li:dataPlatform:postgres,dvdrental.public.actor,PROD)\", \"type\": \"TRANSFORMED\"}]}", + "value": "{\"upstreams\": [{\"auditStamp\": {\"time\": 0, \"actor\": \"urn:li:corpuser:unknown\"}, \"dataset\": \"urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.address,PROD)\", \"type\": \"TRANSFORMED\"}, {\"auditStamp\": {\"time\": 0, \"actor\": \"urn:li:corpuser:unknown\"}, \"dataset\": \"urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.actor,PROD)\", \"type\": \"TRANSFORMED\"}]}", "contentType": "application/json" }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,618c87db-5959-338b-bcc7-6f5f4cc0b6c6,PROD)", @@ -3828,14 +3034,12 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } }, @@ -3848,11 +3052,7 @@ "extractLastUpdateTime": "", "type": "EmbeddedDatasource" }, - "externalUrl": null, "name": "actor+ (dvdrental)", - "qualifiedName": null, - "description": null, - "uri": null, "tags": [] } }, @@ -3863,17 +3063,12 @@ "version": 0, "created": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, - "deleted": null, - "dataset": null, - "cluster": null, "hash": "", "platformSchema": { "com.linkedin.pegasus2avro.schema.OtherSchema": { @@ -3883,7 +3078,6 @@ "fields": [ { "fieldPath": "Address2", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -3896,23 +3090,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Last Update", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -3925,30 +3113,22 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "address", - "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.ArrayType": { - "nestedType": null - } + "com.linkedin.pegasus2avro.schema.ArrayType": {} } }, "nativeDataType": "TABLE", @@ -3956,23 +3136,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "District", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -3985,23 +3159,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "First Name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -4014,23 +3182,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Address", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -4043,23 +3205,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Postal Code", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -4072,23 +3228,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "country, city", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -4101,19 +3251,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:HIERARCHYFIELD", - "context": null + "tag": "urn:li:tag:HIERARCHYFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Phone", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -4126,23 +3271,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Last Update (Address)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -4155,23 +3294,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Address Id", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -4184,23 +3317,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Actor Id", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -4213,30 +3340,22 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "actor", - "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.ArrayType": { - "nestedType": null - } + "com.linkedin.pegasus2avro.schema.ArrayType": {} } }, "nativeDataType": "TABLE", @@ -4244,23 +3363,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Last Name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -4273,23 +3386,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "City Id", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -4302,47 +3409,32 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" }, { - "tag": "urn:li:tag:SUM", - "context": null + "tag": "urn:li:tag:SUM" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false } - ], - "primaryKeys": null, - "foreignKeysSpecs": null, - "foreignKeys": null + ] } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "dataset", "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,618c87db-5959-338b-bcc7-6f5f4cc0b6c6,PROD)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "subTypes", "aspect": { @@ -4351,17 +3443,12 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "dataset", "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,618c87db-5959-338b-bcc7-6f5f4cc0b6c6,PROD)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "container", "aspect": { @@ -4370,17 +3457,12 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "dataset", "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "upstreamLineage", "aspect": { @@ -4389,14 +3471,10 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD)", @@ -4413,14 +3491,12 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } }, @@ -4433,11 +3509,7 @@ "extractLastUpdateTime": "", "type": "EmbeddedDatasource" }, - "externalUrl": null, "name": "Superstore Datasource", - "qualifiedName": null, - "description": null, - "uri": null, "tags": [] } }, @@ -4448,17 +3520,12 @@ "version": 0, "created": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, - "deleted": null, - "dataset": null, - "cluster": null, "hash": "", "platformSchema": { "com.linkedin.pegasus2avro.schema.OtherSchema": { @@ -4468,7 +3535,6 @@ "fields": [ { "fieldPath": "Region (People)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -4481,19 +3547,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Product ID", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -4506,19 +3567,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Profit", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -4531,19 +3587,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Product", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -4556,19 +3607,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Sub-Category", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -4581,19 +3627,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Row ID", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -4606,19 +3647,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Order ID", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -4631,19 +3667,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Customer ID", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -4656,19 +3687,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Ship Mode", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -4681,19 +3707,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "People", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -4706,19 +3727,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Order ID (Returns)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -4731,19 +3747,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "City", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -4756,19 +3767,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Sales", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -4781,19 +3787,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Region", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -4806,19 +3807,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Quantity", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -4831,19 +3827,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Ship Date", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -4856,19 +3847,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Orders", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -4881,19 +3867,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Profit Ratio", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -4906,19 +3887,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Returns", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -4931,19 +3907,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Manufacturer", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -4956,19 +3927,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Location", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -4981,19 +3947,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Returned", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -5006,19 +3967,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Category", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -5031,19 +3987,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Regional Manager", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -5056,19 +4007,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Postal Code", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -5081,19 +4027,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Profit (bin)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -5106,19 +4047,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Segment", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -5131,19 +4067,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Top Customers by Profit", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -5156,19 +4087,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Country/Region", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -5181,19 +4107,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Discount", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -5206,19 +4127,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Order Date", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -5231,19 +4147,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Product Name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -5256,19 +4167,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Customer Name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -5281,19 +4187,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "State", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -5306,39 +4207,26 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null + "tag": "urn:li:tag:DATASOURCEFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false } - ], - "primaryKeys": null, - "foreignKeysSpecs": null, - "foreignKeys": null + ] } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "dataset", "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "subTypes", "aspect": { @@ -5347,17 +4235,12 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "dataset", "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,d00f4ba6-707e-4684-20af-69eb47587cc2,PROD)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "container", "aspect": { @@ -5366,235 +4249,12 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } -}, -{ - "auditHeader": null, - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { - "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.campaignstable,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Marketo/campaignsTable" - ] - } - }, - { - "com.linkedin.pegasus2avro.schema.SchemaMetadata": { - "schemaName": "test", - "platform": "urn:li:dataPlatform:tableau", - "version": 0, - "created": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - }, - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - }, - "deleted": null, - "dataset": null, - "cluster": null, - "hash": "", - "platformSchema": { - "com.linkedin.pegasus2avro.schema.OtherSchema": { - "rawSchema": "" - } - }, - "fields": [ - { - "fieldPath": "programName", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "programId", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "description", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "createdAt", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "workspaceName", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "updatedAt", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "active", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - } - ], - "primaryKeys": null, - "foreignKeysSpecs": null, - "foreignKeys": null - } - } - ] - } - }, - "proposedDelta": null, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "container", "entityUrn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "containerProperties", "aspect": { @@ -5603,17 +4263,12 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "container", "entityUrn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "dataPlatformInstance", "aspect": { @@ -5622,17 +4277,12 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "container", "entityUrn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "subTypes", "aspect": { @@ -5641,17 +4291,12 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "container", "entityUrn": "urn:li:container:047691e9c16bec8fb08e1df0f5d71c4d", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "ownership", "aspect": { @@ -5660,14 +4305,10 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { "urn": "urn:li:chart:(tableau,20fc5eb7-81eb-aa18-8c39-af501c62d085)", @@ -5693,17 +4334,13 @@ "lastModified": { "created": { "time": 1639768450000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" }, "lastModified": { "time": 1639768502000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" + } }, - "chartUrl": null, "inputs": [ { "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD)" @@ -5711,10 +4348,7 @@ { "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)" } - ], - "type": null, - "access": null, - "lastRefreshed": null + ] } }, { @@ -5729,34 +4363,26 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "chart", "entityUrn": "urn:li:chart:(tableau,20fc5eb7-81eb-aa18-8c39-af501c62d085)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "container", "aspect": { @@ -5765,14 +4391,10 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { "urn": "urn:li:chart:(tableau,2b5351c1-535d-4a4a-1339-c51ddd6abf8a)", @@ -5797,17 +4419,13 @@ "lastModified": { "created": { "time": 1639768450000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" }, "lastModified": { "time": 1639768502000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" + } }, - "chartUrl": null, "inputs": [ { "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD)" @@ -5815,10 +4433,7 @@ { "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)" } - ], - "type": null, - "access": null, - "lastRefreshed": null + ] } }, { @@ -5833,34 +4448,26 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "chart", "entityUrn": "urn:li:chart:(tableau,2b5351c1-535d-4a4a-1339-c51ddd6abf8a)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "container", "aspect": { @@ -5869,14 +4476,10 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { "urn": "urn:li:chart:(tableau,2b73b9dd-4ec7-75ca-f2e9-fa1984ca8b72)", @@ -5902,17 +4505,13 @@ "lastModified": { "created": { "time": 1639768450000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" }, "lastModified": { "time": 1639768502000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" + } }, - "chartUrl": null, "inputs": [ { "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD)" @@ -5920,10 +4519,7 @@ { "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)" } - ], - "type": null, - "access": null, - "lastRefreshed": null + ] } }, { @@ -5938,34 +4534,26 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "chart", "entityUrn": "urn:li:chart:(tableau,2b73b9dd-4ec7-75ca-f2e9-fa1984ca8b72)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "container", "aspect": { @@ -5974,14 +4562,10 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { "urn": "urn:li:chart:(tableau,373c6466-bb0c-b319-8752-632456349261)", @@ -6006,25 +4590,18 @@ "lastModified": { "created": { "time": 1639768450000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" }, "lastModified": { "time": 1639768502000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" + } }, - "chartUrl": null, "inputs": [ { "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)" } - ], - "type": null, - "access": null, - "lastRefreshed": null + ] } }, { @@ -6039,34 +4616,26 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "chart", "entityUrn": "urn:li:chart:(tableau,373c6466-bb0c-b319-8752-632456349261)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "container", "aspect": { @@ -6075,14 +4644,10 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { "urn": "urn:li:chart:(tableau,53b8dc2f-8ada-51f7-7422-fe82e9b803cc)", @@ -6103,17 +4668,13 @@ "lastModified": { "created": { "time": 1639768450000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" }, "lastModified": { "time": 1639768502000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" + } }, - "chartUrl": null, "inputs": [ { "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD)" @@ -6121,10 +4682,7 @@ { "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)" } - ], - "type": null, - "access": null, - "lastRefreshed": null + ] } }, { @@ -6139,34 +4697,26 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "chart", "entityUrn": "urn:li:chart:(tableau,53b8dc2f-8ada-51f7-7422-fe82e9b803cc)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "container", "aspect": { @@ -6175,14 +4725,10 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { "urn": "urn:li:chart:(tableau,58af9ecf-b839-da50-65e1-2e1fa20e3362)", @@ -6207,25 +4753,18 @@ "lastModified": { "created": { "time": 1639768450000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" }, "lastModified": { "time": 1639768502000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" + } }, - "chartUrl": null, "inputs": [ { "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)" } - ], - "type": null, - "access": null, - "lastRefreshed": null + ] } }, { @@ -6240,34 +4779,26 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "chart", "entityUrn": "urn:li:chart:(tableau,58af9ecf-b839-da50-65e1-2e1fa20e3362)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "container", "aspect": { @@ -6276,14 +4807,10 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { "urn": "urn:li:chart:(tableau,618b3e76-75c1-cb31-0c61-3f4890b72c31)", @@ -6307,17 +4834,13 @@ "lastModified": { "created": { "time": 1639768450000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" }, "lastModified": { "time": 1639768502000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" + } }, - "chartUrl": null, "inputs": [ { "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD)" @@ -6325,10 +4848,7 @@ { "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)" } - ], - "type": null, - "access": null, - "lastRefreshed": null + ] } }, { @@ -6343,34 +4863,26 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "chart", "entityUrn": "urn:li:chart:(tableau,618b3e76-75c1-cb31-0c61-3f4890b72c31)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "container", "aspect": { @@ -6379,14 +4891,10 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { "urn": "urn:li:chart:(tableau,721c3c41-7a2b-16a8-3281-6f948a44be96)", @@ -6409,17 +4917,13 @@ "lastModified": { "created": { "time": 1639768450000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" }, "lastModified": { "time": 1639768502000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" + } }, - "chartUrl": null, "inputs": [ { "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD)" @@ -6427,10 +4931,7 @@ { "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)" } - ], - "type": null, - "access": null, - "lastRefreshed": null + ] } }, { @@ -6445,34 +4946,26 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "chart", "entityUrn": "urn:li:chart:(tableau,721c3c41-7a2b-16a8-3281-6f948a44be96)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "container", "aspect": { @@ -6481,14 +4974,10 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { "urn": "urn:li:chart:(tableau,7ef184c1-5a41-5ec8-723e-ae44c20aa335)", @@ -6511,25 +5000,18 @@ "lastModified": { "created": { "time": 1639768450000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" }, "lastModified": { "time": 1639768502000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" + } }, - "chartUrl": null, "inputs": [ { "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)" } - ], - "type": null, - "access": null, - "lastRefreshed": null + ] } }, { @@ -6544,34 +5026,26 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "chart", "entityUrn": "urn:li:chart:(tableau,7ef184c1-5a41-5ec8-723e-ae44c20aa335)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "container", "aspect": { @@ -6580,14 +5054,10 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { "urn": "urn:li:chart:(tableau,7fbc77ba-0ab6-3727-0db3-d8402a804da5)", @@ -6608,17 +5078,13 @@ "lastModified": { "created": { "time": 1639768450000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" }, "lastModified": { "time": 1639768502000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" + } }, - "chartUrl": null, "inputs": [ { "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD)" @@ -6626,10 +5092,7 @@ { "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)" } - ], - "type": null, - "access": null, - "lastRefreshed": null + ] } }, { @@ -6644,34 +5107,26 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "chart", "entityUrn": "urn:li:chart:(tableau,7fbc77ba-0ab6-3727-0db3-d8402a804da5)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "container", "aspect": { @@ -6680,14 +5135,10 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { "urn": "urn:li:chart:(tableau,8385ea9a-0749-754f-7ad9-824433de2120)", @@ -6707,25 +5158,18 @@ "lastModified": { "created": { "time": 1639768450000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" }, "lastModified": { "time": 1639768502000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" + } }, - "chartUrl": null, "inputs": [ { "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)" } - ], - "type": null, - "access": null, - "lastRefreshed": null + ] } }, { @@ -6740,34 +5184,26 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "chart", "entityUrn": "urn:li:chart:(tableau,8385ea9a-0749-754f-7ad9-824433de2120)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "container", "aspect": { @@ -6776,14 +5212,10 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { "urn": "urn:li:chart:(tableau,b207c2f2-b675-32e3-2663-17bb836a018b)", @@ -6807,17 +5239,13 @@ "lastModified": { "created": { "time": 1639768450000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" }, "lastModified": { "time": 1639768502000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" + } }, - "chartUrl": null, "inputs": [ { "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD)" @@ -6825,10 +5253,7 @@ { "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)" } - ], - "type": null, - "access": null, - "lastRefreshed": null + ] } }, { @@ -6843,34 +5268,26 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "chart", "entityUrn": "urn:li:chart:(tableau,b207c2f2-b675-32e3-2663-17bb836a018b)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "container", "aspect": { @@ -6879,14 +5296,10 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { "urn": "urn:li:chart:(tableau,b679da5e-7d03-f01e-b2ea-01fb3c1926dc)", @@ -6906,17 +5319,13 @@ "lastModified": { "created": { "time": 1639768450000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" }, "lastModified": { "time": 1639768502000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" + } }, - "chartUrl": null, "inputs": [ { "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD)" @@ -6924,10 +5333,7 @@ { "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)" } - ], - "type": null, - "access": null, - "lastRefreshed": null + ] } }, { @@ -6942,34 +5348,26 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "chart", "entityUrn": "urn:li:chart:(tableau,b679da5e-7d03-f01e-b2ea-01fb3c1926dc)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "container", "aspect": { @@ -6978,14 +5376,10 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { "urn": "urn:li:chart:(tableau,c14973c2-e1c3-563a-a9c1-8a408396d22a)", @@ -7005,17 +5399,13 @@ "lastModified": { "created": { "time": 1639768450000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" }, "lastModified": { "time": 1639768502000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" + } }, - "chartUrl": null, "inputs": [ { "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD)" @@ -7023,10 +5413,7 @@ { "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)" } - ], - "type": null, - "access": null, - "lastRefreshed": null + ] } }, { @@ -7041,34 +5428,26 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "chart", "entityUrn": "urn:li:chart:(tableau,c14973c2-e1c3-563a-a9c1-8a408396d22a)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "container", "aspect": { @@ -7077,14 +5456,10 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { "urn": "urn:li:chart:(tableau,e70a540d-55ed-b9cc-5a3c-01ebe81a1274)", @@ -7106,17 +5481,13 @@ "lastModified": { "created": { "time": 1639768450000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" }, "lastModified": { "time": 1639768502000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" + } }, - "chartUrl": null, "inputs": [ { "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD)" @@ -7124,10 +5495,7 @@ { "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)" } - ], - "type": null, - "access": null, - "lastRefreshed": null + ] } }, { @@ -7142,34 +5510,26 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "chart", "entityUrn": "urn:li:chart:(tableau,e70a540d-55ed-b9cc-5a3c-01ebe81a1274)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "container", "aspect": { @@ -7178,14 +5538,10 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { "urn": "urn:li:chart:(tableau,f76d3570-23b8-f74b-d85c-cc5484c2079c)", @@ -7212,25 +5568,18 @@ "lastModified": { "created": { "time": 1639768450000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" }, "lastModified": { "time": 1639768502000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" + } }, - "chartUrl": null, "inputs": [ { "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)" } - ], - "type": null, - "access": null, - "lastRefreshed": null + ] } }, { @@ -7245,34 +5594,26 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "chart", "entityUrn": "urn:li:chart:(tableau,f76d3570-23b8-f74b-d85c-cc5484c2079c)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "container", "aspect": { @@ -7281,14 +5622,10 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.DashboardSnapshot": { "urn": "urn:li:dashboard:(tableau,5dcaaf46-e6fb-2548-e763-272a7ab2c9b1)", @@ -7296,7 +5633,6 @@ { "com.linkedin.pegasus2avro.dashboard.DashboardInfo": { "customProperties": {}, - "externalUrl": null, "title": "Executive Dashboard", "description": "", "charts": [ @@ -7318,19 +5654,14 @@ "lastModified": { "created": { "time": 1639768450000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" }, "lastModified": { "time": 1639768502000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null + "actor": "urn:li:corpuser:jawadqu@gmail.com" + } }, - "dashboardUrl": "https://do-not-connect/#/site/acryl/views/ExecutiveDashboard/ExecutiveDashboard", - "access": null, - "lastRefreshed": null + "dashboardUrl": "https://do-not-connect/#/site/acryl/views/ExecutiveDashboard/ExecutiveDashboard" } }, { @@ -7345,34 +5676,26 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "dashboard", "entityUrn": "urn:li:dashboard:(tableau,5dcaaf46-e6fb-2548-e763-272a7ab2c9b1)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "container", "aspect": { @@ -7381,17 +5704,12 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "dataset", "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "upstreamLineage", "aspect": { @@ -7400,14 +5718,10 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD)", @@ -7424,14 +5738,12 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } }, @@ -7444,11 +5756,7 @@ "extractLastUpdateTime": "2018-01-18T19:35:39Z", "type": "EmbeddedDatasource" }, - "externalUrl": null, "name": "Requests", - "qualifiedName": null, - "description": null, - "uri": null, "tags": [] } }, @@ -7459,17 +5767,12 @@ "version": 0, "created": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, - "deleted": null, - "dataset": null, - "cluster": null, "hash": "", "platformSchema": { "com.linkedin.pegasus2avro.schema.OtherSchema": { @@ -7479,7 +5782,6 @@ "fields": [ { "fieldPath": "Closed by (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -7492,23 +5794,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Location", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -7521,23 +5817,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Opened", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -7550,23 +5840,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Mobile Picture", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -7579,23 +5863,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Delivery task", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -7608,23 +5886,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "% made SLA", - "jsonPath": null, "nullable": false, "description": "formula: // This is a calculated field\r\n// It shows the percentage of requests which made SLA\r\n\r\nCOUNTD(IF [Made SLA]= TRUE\r\nTHEN [Number]\r\nEND)\r\n/\r\nCOUNTD([Number])", "type": { @@ -7637,23 +5909,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Meta", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -7666,23 +5932,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Correlation ID (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -7695,23 +5955,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Domain Path (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -7724,23 +5978,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Work notes (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -7753,23 +6001,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Domain", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -7782,23 +6024,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Short description", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -7811,23 +6047,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Domain Path (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -7840,23 +6070,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Updated by (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -7869,23 +6093,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Additional comments (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -7898,23 +6116,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Recurring price", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -7927,23 +6139,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Duration (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -7956,23 +6162,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Contact type", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -7985,23 +6185,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Total # Request", - "jsonPath": null, "nullable": false, "description": "formula: // This is a calculated field\r\n// It shows the total number of problems ignoring opened date\r\n\r\n{ EXCLUDE [Opened]: COUNTD([Number])}", "type": { @@ -8014,27 +6208,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" }, { - "tag": "urn:li:tag:ATTRIBUTE", - "context": null + "tag": "urn:li:tag:ATTRIBUTE" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Requested for date", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -8047,23 +6234,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Upon approval", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -8076,23 +6257,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Ordered item link", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -8105,23 +6280,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Visible elsewhere", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -8134,23 +6303,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Price", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -8163,23 +6326,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Updated (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -8192,23 +6349,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Recurring Price Frequency (Catalog Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -8221,23 +6372,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Correlation display (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -8250,23 +6395,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Order (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -8279,23 +6418,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Group list", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -8308,23 +6441,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Update name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -8337,23 +6464,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Special instructions", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -8366,23 +6487,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Execution Plan", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -8395,23 +6510,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Visible on Bundles", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -8424,23 +6533,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Approval set (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -8453,23 +6556,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "No search", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -8482,23 +6579,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Active (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -8511,23 +6602,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Configuration item (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -8540,23 +6625,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Due date", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -8569,23 +6648,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "List Price", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -8598,23 +6671,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Company (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -8627,23 +6694,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Additional assignee list", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -8656,23 +6717,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Expected start (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -8685,23 +6740,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Task type (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -8714,23 +6763,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Description (Catalog Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -8743,23 +6786,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Escalation (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -8772,23 +6809,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Customer update", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -8801,23 +6832,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Time worked", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -8830,23 +6855,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Price (Catalog Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -8859,23 +6878,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Approval (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -8888,23 +6901,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Due date (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -8917,23 +6924,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Order Guide", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -8946,23 +6947,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Package", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -8975,23 +6970,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Watch list (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -9004,23 +6993,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Delivery plan (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -9033,23 +7016,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Parent (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -9062,23 +7039,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Urgency", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -9091,23 +7062,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Delivery address", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -9120,23 +7085,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Domain (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -9149,23 +7108,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Work notes list (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -9178,23 +7131,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Estimated Delivery", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -9207,23 +7154,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Activity due (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -9236,23 +7177,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Model", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -9265,23 +7200,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Billable", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -9294,23 +7223,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Created (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -9323,23 +7246,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Opened by (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -9352,23 +7269,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Recurring Price Frequency", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -9381,23 +7292,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Recurring Price", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -9410,23 +7315,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Fulfillment group", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -9439,23 +7338,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -9468,23 +7361,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Additional comments (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -9497,23 +7384,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Created (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -9526,23 +7407,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Work notes (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -9555,23 +7430,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Parent", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -9584,23 +7453,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Opened by (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -9613,23 +7476,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Backordered", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -9642,23 +7499,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "No cart", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -9671,23 +7522,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Ignore price", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -9700,23 +7545,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Follow up (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -9729,23 +7568,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Number (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -9758,23 +7591,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Approval set (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -9787,23 +7614,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Priority", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -9816,27 +7637,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" }, { - "tag": "urn:li:tag:SUM", - "context": null + "tag": "urn:li:tag:SUM" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Opened (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -9849,23 +7663,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Correlation ID (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -9878,23 +7686,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Created by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -9907,23 +7709,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Short description (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -9936,23 +7732,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Close notes (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -9965,23 +7755,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Duration (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -9994,23 +7778,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Overdue", - "jsonPath": null, "nullable": false, "description": "formula: // This is a calculated field\r\n// It shows if an accident is overdue\r\n\r\n//Check overdue cases among inactive incidents\r\nIF [Active]=FALSE \r\nAND\r\n[Closed]>[Due date]\r\n\r\nOR\r\n//Check overdue cases among active incidents\r\n[Active]=TRUE \r\nAND NOW()>[Due date]\r\n\r\nTHEN \"Overdue\"\r\nELSE \"Non Overdue\"\r\nEND", "type": { @@ -10023,23 +7801,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Task type", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -10052,23 +7824,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Location (Catalog Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -10081,23 +7847,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Measure Names", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -10110,23 +7870,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Upon approval (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -10139,23 +7893,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Cart", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -10168,23 +7916,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Contact type (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -10197,23 +7939,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Assigned to (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -10226,23 +7962,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Replace on upgrade", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -10255,23 +7985,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Impact (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -10284,23 +8008,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Additional assignee list (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -10313,23 +8031,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Context", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -10342,23 +8054,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Order (Catalog Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -10371,23 +8077,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Priority (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -10400,23 +8100,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Correlation display (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -10429,23 +8123,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Requested for", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -10458,23 +8146,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Configuration item (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -10487,23 +8169,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "No order", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -10516,23 +8192,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Billable (Catalog Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -10545,23 +8215,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Created (Catalog Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -10574,23 +8238,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Upon reject", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -10603,23 +8261,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Assignment group (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -10632,23 +8284,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Sys ID (Catalog Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -10661,23 +8307,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Updated", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -10690,23 +8330,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "No quantity", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -10719,23 +8353,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Mobile Picture Type", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -10748,23 +8376,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Quantity", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -10777,23 +8399,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Delivery plan", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -10806,23 +8422,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Business duration (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -10835,23 +8445,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Protection policy", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -10864,23 +8468,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Follow up", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -10893,23 +8491,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Location (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -10922,23 +8514,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Omit price in cart", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -10951,23 +8537,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Catalogs", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -10980,23 +8560,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Urgency (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -11009,23 +8583,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "User input (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -11038,23 +8606,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Updates (Catalog Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -11067,23 +8629,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Work notes", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -11096,23 +8652,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Entitlement script", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -11125,23 +8675,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Follow up (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -11154,23 +8698,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Company", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -11183,23 +8721,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Work start (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -11212,23 +8744,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Published version", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -11241,23 +8767,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Preview link", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -11270,23 +8790,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Updates (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -11299,23 +8813,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Updates", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -11328,23 +8836,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Closed (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -11357,23 +8859,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Assignment group (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -11386,23 +8882,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Comments and Work notes", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -11415,23 +8905,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Price (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -11444,23 +8928,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Active (Catalog Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -11473,23 +8951,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Stage (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -11502,23 +8974,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Visible on Guides", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -11531,23 +8997,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Active", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -11560,23 +9020,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Configuration item (Requested Item) 1", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -11589,23 +9043,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Due date (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -11618,23 +9066,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Assigned to", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -11647,23 +9089,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Escalation (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -11676,23 +9112,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Updated (Catalog Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -11705,23 +9135,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Created", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -11734,23 +9158,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Type", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -11763,23 +9181,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Category", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -11792,23 +9204,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Delivery time", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -11821,23 +9227,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Item", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -11850,23 +9250,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Expected start (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -11879,23 +9273,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Expected start", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -11908,23 +9296,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Updated (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -11937,23 +9319,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Stage", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -11966,23 +9342,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Delivery task (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -11995,23 +9365,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Request", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -12024,23 +9388,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Description (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -12053,23 +9411,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Created by (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -12082,23 +9434,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Active (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -12111,23 +9457,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Short description (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -12140,23 +9480,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Correlation display", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -12169,23 +9503,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Reassignment count (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -12198,23 +9526,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Work end", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -12227,23 +9549,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Current Year Total Cases", - "jsonPath": null, "nullable": false, "description": "formula: // This is a calculated field\r\n// It counts each distinct request made in the last year. The \"exclude\" is used to avoid filters interfering in the final result\r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Max Year?]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}", "type": { @@ -12256,27 +9572,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" }, { - "tag": "urn:li:tag:ATTRIBUTE", - "context": null + "tag": "urn:li:tag:ATTRIBUTE" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Approval", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -12289,23 +9598,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Close notes", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -12318,23 +9621,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Updates (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -12347,23 +9644,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Closed by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -12376,23 +9667,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Delivery plan (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -12405,23 +9690,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Resolve Time", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -12434,23 +9713,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Business duration", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -12463,23 +9736,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Max Year?", - "jsonPath": null, "nullable": false, "description": "formula: // This is a calculated field\r\n// It shows TRUE/FALSE if the year of opened is equal the maximum year in the dataset\r\n\r\nDATEPART(\"year\", [Opened]) = DATEPART(\"year\", {MAX([Opened])})", "type": { @@ -12492,23 +9759,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Updated by (Catalog Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -12521,23 +9782,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Task type (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -12550,23 +9805,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Time worked (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -12579,23 +9828,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Comments and Work notes (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -12608,23 +9851,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Time worked (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -12637,23 +9874,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Contact type (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -12666,23 +9897,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Additional assignee list (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -12695,23 +9920,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Approval history", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -12724,23 +9943,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "State", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -12753,23 +9966,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Group list (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -12782,23 +9989,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Made SLA", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -12811,23 +10012,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Knowledge (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -12840,23 +10035,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Icon", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -12869,23 +10058,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "User input (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -12898,23 +10081,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Display name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -12927,23 +10104,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Business service (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -12956,23 +10127,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Reassignment count", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -12985,23 +10150,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Number (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -13014,23 +10173,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Duration", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -13043,23 +10196,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Escalation", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -13072,23 +10219,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Comments and Work notes (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -13101,23 +10242,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Number of Records", - "jsonPath": null, "nullable": false, "description": "formula: 1", "type": { @@ -13130,23 +10265,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Work start (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -13159,23 +10288,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Close notes (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -13188,23 +10311,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "State (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -13217,23 +10334,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Description (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -13246,23 +10357,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "State (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -13275,23 +10380,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "No proceed checkout", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -13304,23 +10403,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Measure Values", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -13333,23 +10426,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Watch list (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -13362,23 +10449,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "SLA due (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -13391,23 +10472,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Impact (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -13420,23 +10495,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Updated by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -13449,23 +10518,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Sys ID (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -13478,23 +10541,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Closed (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -13507,23 +10564,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Activity due (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -13536,23 +10587,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Use cart layout", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -13565,23 +10610,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "No order now", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -13594,23 +10633,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "SLA due (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -13623,23 +10656,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Application", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -13652,23 +10679,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "User input", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -13681,23 +10702,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Additional comments", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -13710,23 +10725,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Approval (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -13739,23 +10748,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Reassignment count (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -13768,23 +10771,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Template", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -13797,23 +10794,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Urgency (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -13826,23 +10817,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Catalog", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -13855,23 +10840,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Image", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -13884,23 +10863,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Knowledge", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -13913,23 +10886,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Impact", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -13942,23 +10909,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Created by (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -13971,23 +10932,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Priority (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -14000,23 +10955,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Updated by (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -14029,23 +10978,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Approval history (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -14058,23 +11001,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Made SLA (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -14087,23 +11024,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "% of Overdue", - "jsonPath": null, "nullable": false, "description": "formula: // This is a calculated field\r\n// It shows the percentage of incidents which are overdue\r\n\r\n(IF ATTR([Overdue]= \"Overdue\")\r\nTHEN COUNTD([Number])\r\nEND)\r\n/\r\nATTR({ EXCLUDE [Overdue]:\r\nCOUNTD([Number])})", "type": { @@ -14116,23 +11047,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Workflow", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -14145,23 +11070,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Location (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -14174,23 +11093,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Class", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -14203,23 +11116,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Created from item design", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -14232,23 +11139,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Business service", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -14261,23 +11162,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Upon approval (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -14290,23 +11185,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Knowledge (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -14319,30 +11208,22 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Migrated Data", - "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.ArrayType": { - "nestedType": null - } + "com.linkedin.pegasus2avro.schema.ArrayType": {} } }, "nativeDataType": "TABLE", @@ -14350,23 +11231,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Parent (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -14379,23 +11254,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Company (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -14408,23 +11277,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Assigned to (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -14437,23 +11300,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Closed by (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -14466,23 +11323,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Roles", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -14495,23 +11346,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "SLA due", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -14524,23 +11369,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Short description (Catalog Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -14553,23 +11392,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Hide price (mobile listings)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -14582,23 +11415,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Work start", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -14611,23 +11438,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Business duration (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -14640,23 +11461,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Assignment group", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -14669,23 +11484,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Upon reject (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -14698,23 +11507,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Availability", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -14727,23 +11530,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Vendor", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -14756,23 +11553,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Work notes list", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -14785,23 +11576,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Picture", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -14814,23 +11599,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Group list (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -14843,23 +11622,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Work notes list (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -14872,23 +11645,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Opened by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -14901,23 +11668,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Watch list", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -14930,23 +11691,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Upon reject (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -14959,23 +11714,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Delivery plan script", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -14988,23 +11737,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Order (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -15017,23 +11760,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Work end (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -15046,23 +11783,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Sys ID", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -15075,23 +11806,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Opened (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -15104,23 +11829,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Made SLA (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -15133,23 +11852,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Approval set", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -15162,23 +11875,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Approval history (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -15191,23 +11898,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Sys ID (Requested Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -15220,23 +11921,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Work end (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -15249,23 +11944,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Total Active Requests", - "jsonPath": null, "nullable": false, "description": "formula: // This is a calculated field\r\n// It counts each distinct active request. The \"exclude\" is used to avoid filters interfering with the final result \r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Active]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}", "type": { @@ -15278,27 +11967,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" }, { - "tag": "urn:li:tag:ATTRIBUTE", - "context": null + "tag": "urn:li:tag:ATTRIBUTE" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Delivery task (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -15311,23 +11993,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Start closed", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -15340,23 +12016,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Domain (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -15369,23 +12039,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Correlation ID", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -15398,23 +12062,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Number", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -15427,23 +12085,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Closed", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -15456,23 +12108,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Request state", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -15485,23 +12131,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Business service (Request)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -15514,23 +12154,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Configuration item", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -15543,23 +12177,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Description", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -15572,23 +12200,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Activity due", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -15601,23 +12223,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Cost", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -15630,23 +12246,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Domain Path", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -15659,23 +12269,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Order", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -15688,23 +12292,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Created by (Catalog Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -15717,43 +12315,29 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false } - ], - "primaryKeys": null, - "foreignKeysSpecs": null, - "foreignKeys": null + ] } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "dataset", "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "subTypes", "aspect": { @@ -15762,17 +12346,12 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "dataset", "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,06c3e060-8133-4b58-9b53-a0fced25e056,PROD)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "container", "aspect": { @@ -15781,17 +12360,12 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "dataset", "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "upstreamLineage", "aspect": { @@ -15800,14 +12374,10 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD)", @@ -15824,14 +12394,12 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } }, @@ -15844,11 +12412,7 @@ "extractLastUpdateTime": "2018-01-18T20:21:33Z", "type": "EmbeddedDatasource" }, - "externalUrl": null, "name": "Problems", - "qualifiedName": null, - "description": null, - "uri": null, "tags": [] } }, @@ -15859,17 +12423,12 @@ "version": 0, "created": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, - "deleted": null, - "dataset": null, - "cluster": null, "hash": "", "platformSchema": { "com.linkedin.pegasus2avro.schema.OtherSchema": { @@ -15879,7 +12438,6 @@ "fields": [ { "fieldPath": "SLA due (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -15892,23 +12450,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Reassignment count", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -15921,23 +12473,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Active (Group)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -15950,23 +12496,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Expected start", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -15979,23 +12519,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Expected start (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -16008,23 +12542,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Description", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -16037,23 +12565,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Impact", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -16066,23 +12588,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Location (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -16095,23 +12611,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Created by (Group)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -16124,23 +12634,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Time worked", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -16153,23 +12657,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Active (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -16182,23 +12680,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Duration", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -16211,23 +12703,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Default assignee", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -16240,23 +12726,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Updates", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -16269,23 +12749,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Workaround", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -16298,23 +12772,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Overdue", - "jsonPath": null, "nullable": false, "description": "formula: // This is a calculated field\r\n// It checks if an incident is overdue\r\n\r\n//Check overdue cases among inactive incidents\r\n{ FIXED [Number]:\r\n\r\nIF MAX([Active]=FALSE) \r\nAND\r\nmax([Closed])> max([Due date])\r\n\r\nOR\r\n//Check overdue cases among active incidents\r\nMAX([Active]=TRUE) \r\nAND NOW()> MAX([Due date]) \r\n\r\nTHEN \"Overdue\"\r\nEND\r\n}", "type": { @@ -16327,23 +12795,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Domain Path", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -16356,23 +12818,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Number", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -16385,23 +12841,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Approval", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -16414,23 +12864,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Created by (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -16443,23 +12887,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Closed by (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -16472,23 +12910,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Approval set", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -16501,23 +12933,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Short description (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -16530,23 +12956,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Updated by (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -16559,23 +12979,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Sys ID (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -16588,23 +13002,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Work notes (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -16617,23 +13025,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Escalation", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -16646,30 +13048,22 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Migrated Data", - "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.ArrayType": { - "nestedType": null - } + "com.linkedin.pegasus2avro.schema.ArrayType": {} } }, "nativeDataType": "TABLE", @@ -16677,23 +13071,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Correlation display", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -16706,23 +13094,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Business service", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -16735,23 +13117,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Knowledge", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -16764,23 +13140,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Comments and Work notes (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -16793,23 +13163,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Delivery task (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -16822,23 +13186,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Delivery task", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -16851,23 +13209,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Work notes list (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -16880,23 +13232,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Work notes list", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -16909,23 +13255,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Opened by (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -16938,23 +13278,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Parent (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -16967,23 +13301,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Escalation (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -16996,23 +13324,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "u", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -17025,23 +13347,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Due date", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -17054,23 +13370,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Time Span Breakdown", - "jsonPath": null, "nullable": false, "description": "formula: // This is a calculated field\r\n// It groups problems accordingly with their ages\r\n\r\nIF [Age of Problems]< 2592000\r\nTHEN \"Under 30 d\"\r\nELSEIF [Age of Problems] > 7776000\r\nTHEN \"+ than 90d\"\r\nELSE \" 30-90 d\"\r\nEND", "type": { @@ -17083,23 +13393,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Activity due", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -17112,23 +13416,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Made SLA (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -17141,23 +13439,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Business duration", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -17170,23 +13462,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "u_", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -17199,23 +13485,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Change request", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -17228,23 +13508,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Close notes (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -17257,23 +13531,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Correlation display (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -17286,23 +13554,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Approval set (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -17315,23 +13577,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Upon approval (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -17344,23 +13600,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Follow up (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -17373,23 +13623,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Updates (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -17402,23 +13646,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Assigned to (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -17431,23 +13669,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "% of Overdue", - "jsonPath": null, "nullable": false, "description": "formula: // This is a calculated field\r\n// It shows the percentage of incidents that are overdue\r\n\r\nIFNULL((IF ATTR([Overdue]= \"Overdue\")\r\nTHEN COUNTD([Number])\r\nEND),0)\r\n/\r\nATTR({ EXCLUDE [Overdue]:\r\nCOUNTD([Number])})", "type": { @@ -17460,23 +13692,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Sys ID (Group)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -17489,23 +13715,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Updated (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -17518,23 +13738,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Approval (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -17547,23 +13761,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Time worked (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -17576,23 +13784,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Assignment group", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -17605,23 +13807,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "SLA due", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -17634,23 +13830,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Created", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -17663,23 +13853,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Created by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -17692,23 +13876,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Cost center", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -17721,23 +13899,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Delivery plan (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -17750,23 +13922,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Domain (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -17779,23 +13945,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Activity due (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -17808,23 +13968,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Group list", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -17837,23 +13991,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Roles", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -17866,23 +14014,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Total # Problems", - "jsonPath": null, "nullable": false, "description": "formula: // This is a calculated field using a level of detail calculation (LOD)\r\n// It counts each distinct problems ignoring date\r\n\r\n{ EXCLUDE [Opened]: COUNTD([Number])}", "type": { @@ -17895,27 +14037,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" }, { - "tag": "urn:li:tag:ATTRIBUTE", - "context": null + "tag": "urn:li:tag:ATTRIBUTE" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Additional comments", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -17928,23 +14063,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Duration (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -17957,23 +14086,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Updated by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -17986,23 +14109,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Domain Path (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -18015,23 +14132,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Parent (Group)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -18044,23 +14155,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Watch list", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -18073,23 +14178,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Due date (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -18102,23 +14201,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Business duration (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -18131,23 +14224,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Urgency (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -18160,23 +14247,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Correlation ID", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -18189,23 +14270,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Work start (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -18218,23 +14293,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Contact type", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -18247,23 +14316,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Urgency", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -18276,23 +14339,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Number of Records", - "jsonPath": null, "nullable": false, "description": "formula: 1", "type": { @@ -18305,23 +14362,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Opened (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -18334,23 +14385,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Sys ID", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -18363,23 +14408,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Manager", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -18392,23 +14431,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Exclude manager", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -18421,23 +14454,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Lucha", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -18450,23 +14477,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Task type", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -18479,23 +14500,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Made SLA", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -18508,23 +14523,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Priority (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -18537,23 +14546,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Description (Group)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -18566,23 +14569,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Created (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -18595,23 +14592,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Order (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -18624,23 +14615,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Company", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -18653,23 +14638,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Problems with Related Incidents", - "jsonPath": null, "nullable": false, "description": "formula: // This is a calculated field\r\n// It counts each distinct problems which has a related incident\r\n\r\nCOUNT(IF ([Related Incidents]>0\r\nAND NOT ISNULL([Related Incidents]))=true\r\nTHEN [Number]\r\nEND)", "type": { @@ -18682,23 +14661,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Follow up", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -18711,23 +14684,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "User input (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -18740,23 +14707,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -18769,23 +14730,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Parent", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -18798,23 +14753,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Related Incidents", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -18827,23 +14776,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Watch list (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -18856,23 +14799,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Updated", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -18885,23 +14822,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "State (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -18914,23 +14845,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Closed by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -18943,23 +14868,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Task type (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -18972,23 +14891,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Group list (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -19001,23 +14914,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Opened", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -19030,23 +14937,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "User input", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -19059,23 +14960,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Source", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -19088,23 +14983,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Closed (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -19117,23 +15006,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Opened by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -19146,23 +15029,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Work start", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -19175,23 +15052,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Additional assignee list (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -19204,23 +15075,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "% of known error", - "jsonPath": null, "nullable": false, "description": "formula: // This is a calculated field\r\n// It shows the percentage of problems that are known errors\r\n\r\nCOUNTD(IF [Known error]=TRUE\r\nTHEN [Number] END)\r\n/\r\nCOUNTD([Number])", "type": { @@ -19233,23 +15098,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Work end", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -19262,23 +15121,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Problem state", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -19291,23 +15144,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Upon approval", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -19320,23 +15167,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Domain", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -19349,23 +15190,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Reassignment count (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -19378,23 +15213,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Contact type (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -19407,23 +15236,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Upon reject (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -19436,23 +15259,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Close notes", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -19465,23 +15282,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Max Year?", - "jsonPath": null, "nullable": false, "description": "formula: // This is a calculated field\r\n// It shows TRUE/FALSE if the year of opened is equal the max year of the dataset \r\n\r\nDATEPART(\"year\", [Opened]) = DATEPART(\"year\", {MAX([Opened])})", "type": { @@ -19494,23 +15305,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Configuration item (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -19523,23 +15328,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Short description", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -19552,23 +15351,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Company (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -19581,23 +15374,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Work notes", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -19610,23 +15397,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Delivery plan", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -19639,23 +15420,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Additional comments (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -19668,23 +15443,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Knowledge (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -19697,23 +15466,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Known error", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -19726,23 +15489,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Group email", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -19755,23 +15512,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Age of Problems", - "jsonPath": null, "nullable": false, "description": "formula: //Calculates the age of active problems since opened until now\r\n\r\nDATEDIFF('second', [Opened], NOW())", "type": { @@ -19784,23 +15535,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Priority", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -19813,27 +15558,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" }, { - "tag": "urn:li:tag:SUM", - "context": null + "tag": "urn:li:tag:SUM" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Comments and Work notes", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -19846,23 +15584,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Measure Values", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -19875,23 +15607,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Approval history", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -19904,23 +15630,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Assigned to", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -19933,23 +15653,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Impact (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -19962,23 +15676,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Updated (Group)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -19991,23 +15699,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "% of critical and high priority", - "jsonPath": null, "nullable": false, "description": "formula: // This is a calculated field\r\n// It shows the percentage of critical or high priority problems\r\n\r\nCOUNTD(IF [Priority]=1\r\nOR [Priority]=2\r\nTHEN [Number]\r\nEND)\r\n/\r\nCOUNTD([Number])", "type": { @@ -20020,23 +15722,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Closed", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -20049,23 +15745,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Configuration item", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -20078,23 +15768,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Business service (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -20107,23 +15791,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Additional assignee list", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -20136,23 +15814,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Include members", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -20165,23 +15837,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Order", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -20194,23 +15860,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Measure Names", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -20223,23 +15883,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Location", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -20252,23 +15906,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Description (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -20281,23 +15929,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Current Year Total Cases", - "jsonPath": null, "nullable": false, "description": "formula: // This is a calculated field\r\n// It counts each disctinct problem. The \"exclude\" is used to avoid filters interfering with the result\r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Max Year?]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}", "type": { @@ -20310,27 +15952,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" }, { - "tag": "urn:li:tag:ATTRIBUTE", - "context": null + "tag": "urn:li:tag:ATTRIBUTE" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Created (Group)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -20343,23 +15978,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Updated by (Group)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -20372,23 +16001,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Number (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -20401,23 +16024,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "State", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -20430,23 +16047,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Approval history (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -20459,23 +16070,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Type", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -20488,23 +16093,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Work end (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -20517,23 +16116,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Upon reject", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -20546,23 +16139,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Correlation ID (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -20575,23 +16162,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Assignment group (Problem)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -20604,23 +16185,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Total Active Problems", - "jsonPath": null, "nullable": false, "description": "formula: // This is a calculated field using a level of detail calculation (LOD)\r\n// It counts each distinct active problem. The \"exclude\" is used to avoid filters interfering with the result \r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Active]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}", "type": { @@ -20633,27 +16208,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" }, { - "tag": "urn:li:tag:ATTRIBUTE", - "context": null + "tag": "urn:li:tag:ATTRIBUTE" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Active", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -20666,23 +16234,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Updates (Group)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -20695,43 +16257,29 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false } - ], - "primaryKeys": null, - "foreignKeysSpecs": null, - "foreignKeys": null + ] } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "dataset", "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "subTypes", "aspect": { @@ -20740,17 +16288,12 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "dataset", "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,3ade7817-ae27-259e-8e48-1570e7f932f6,PROD)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "container", "aspect": { @@ -20759,17 +16302,12 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "dataset", "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "upstreamLineage", "aspect": { @@ -20778,14 +16316,10 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)", @@ -20802,14 +16336,12 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } }, @@ -20822,11 +16354,7 @@ "extractLastUpdateTime": "2018-01-18T20:13:08Z", "type": "EmbeddedDatasource" }, - "externalUrl": null, "name": "Incidents", - "qualifiedName": null, - "description": null, - "uri": null, "tags": [] } }, @@ -20837,17 +16365,12 @@ "version": 0, "created": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, - "deleted": null, - "dataset": null, - "cluster": null, "hash": "", "platformSchema": { "com.linkedin.pegasus2avro.schema.OtherSchema": { @@ -20857,7 +16380,6 @@ "fields": [ { "fieldPath": "Assignment group", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -20870,23 +16392,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Closed (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -20899,23 +16415,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Updates (Configuration Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -20928,23 +16438,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Attributes", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -20957,23 +16461,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "User input", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -20986,23 +16484,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "User input (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -21015,23 +16507,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Short description (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -21044,23 +16530,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Close notes", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -21073,23 +16553,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Escalation (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -21102,23 +16576,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Impact", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -21131,23 +16599,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Close code (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -21160,30 +16622,22 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Migrated Data", - "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.ArrayType": { - "nestedType": null - } + "com.linkedin.pegasus2avro.schema.ArrayType": {} } }, "nativeDataType": "TABLE", @@ -21191,23 +16645,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Delivery task (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -21220,23 +16668,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Created by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -21249,23 +16691,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Updated by (Configuration Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -21278,23 +16714,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Expected start", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -21307,23 +16737,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Status", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -21336,23 +16760,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Notify (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -21365,23 +16783,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Due", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -21394,23 +16806,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Closed by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -21423,23 +16829,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Upon approval", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -21452,23 +16852,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Requires verification", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -21481,23 +16875,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Maintenance schedule", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -21510,23 +16898,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Escalation", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -21539,23 +16921,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Updates (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -21568,23 +16944,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Parent", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -21597,23 +16967,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Domain Path (Configuration Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -21626,23 +16990,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Location (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -21655,23 +17013,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Upon reject", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -21684,23 +17036,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Warranty expiration", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -21713,23 +17059,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "GL account", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -21742,23 +17082,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Additional assignee list (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -21771,23 +17105,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Opened by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -21800,23 +17128,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Work notes", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -21829,23 +17151,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Additional assignee list", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -21858,23 +17174,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Work notes (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -21887,23 +17197,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Company", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -21916,23 +17220,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Knowledge", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -21945,23 +17243,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Made SLA", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -21974,23 +17266,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "First discovered", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -22003,23 +17289,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Approval history (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -22032,23 +17312,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Asset", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -22061,23 +17335,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "% of Overdue", - "jsonPath": null, "nullable": false, "description": "formula: // This is a calculated field\r\n// It show the percentage incidents which are overdue\r\n\r\n(IF ATTR([Overdue]=\"Overdue\")\r\nTHEN COUNTD([Number])\r\nEND)\r\n/\r\nATTR({ EXCLUDE [Overdue]:\r\nCOUNTD([Number])})", "type": { @@ -22090,23 +17358,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Work start", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -22119,23 +17381,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Domain", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -22148,23 +17404,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "SLA due", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -22177,23 +17427,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Group list (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -22206,23 +17450,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Priority", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -22235,27 +17473,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" }, { - "tag": "urn:li:tag:SUM", - "context": null + "tag": "urn:li:tag:SUM" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Duration (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -22268,23 +17499,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Assigned to (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -22297,23 +17522,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Skip sync", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -22326,23 +17545,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "DNS Domain", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -22355,23 +17568,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Updated", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -22384,23 +17591,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Caller (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -22413,23 +17614,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Department", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -22442,23 +17637,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Resolved by (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -22471,23 +17660,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Correlation ID (Configuration Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -22500,23 +17683,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Opened (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -22529,23 +17706,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Current Year Total Cases", - "jsonPath": null, "nullable": false, "description": "formula: // This is a calculated field using level of detail calculation\r\n// It counts each distinct incident. The exclude is used to guarantee that filters will not interfere in the result\r\n\r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Max Year?]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}", "type": { @@ -22558,27 +17729,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" }, { - "tag": "urn:li:tag:ATTRIBUTE", - "context": null + "tag": "urn:li:tag:ATTRIBUTE" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Close notes (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -22591,23 +17755,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Managed by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -22620,23 +17778,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Measure Names", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -22649,23 +17801,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Model number", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -22678,23 +17824,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Created by (Configuration Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -22707,23 +17847,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Created", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -22736,23 +17870,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Assignment group (Configuration Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -22765,23 +17893,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Location", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -22794,23 +17916,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "PO number", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -22823,23 +17939,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Short description", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -22852,23 +17962,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Business resolve time (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -22881,23 +17985,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Child Incidents (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -22910,23 +18008,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "IP Address", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -22939,23 +18031,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Created (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -22968,23 +18054,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Configuration item", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -22997,23 +18077,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Order (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -23026,23 +18100,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Asset tag", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -23055,23 +18123,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Due in", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -23084,23 +18146,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Updated by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -23113,23 +18169,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Manufacturer", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -23142,23 +18192,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Correlation display", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -23171,23 +18215,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Business duration", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -23200,23 +18238,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Business service", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -23229,23 +18261,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Checked out", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -23258,23 +18284,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Category (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -23287,23 +18307,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Fully qualified domain name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -23316,23 +18330,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Installed", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -23345,23 +18353,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Order", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -23374,23 +18376,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Purchased", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -23403,23 +18399,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Lease contract", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -23432,23 +18422,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Vendor", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -23461,23 +18445,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Overdue", - "jsonPath": null, "nullable": false, "description": "formula: // This is a calculated field\r\n// It shows if an incident is overdue\r\n\r\n//Check overdue cases among inactive incidents\r\n{ FIXED [Number]:\r\n\r\nIF MAX([Active]=FALSE) \r\nAND\r\nmax([Closed])>max([Due date])\r\n\r\nOR\r\n//Check overdue cases among active incidents\r\nMAX([Active] = TRUE) \r\nAND NOW() > MAX([Due date]) \r\n\r\nTHEN \"Overdue\"\r\nEND\r\n}", "type": { @@ -23490,23 +18468,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Due date (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -23519,23 +18491,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Additional comments", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -23548,23 +18514,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Approval history", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -23577,23 +18537,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Category (Configuration Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -23606,23 +18560,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Parent Incident (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -23635,23 +18583,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Updated (Configuration Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -23664,23 +18606,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Cost currency", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -23693,23 +18629,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "SLA due (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -23722,23 +18652,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Impact (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -23751,23 +18675,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Approval (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -23780,23 +18698,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Subcategory (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -23809,23 +18721,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Opened by (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -23838,23 +18744,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Activity due (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -23867,23 +18767,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Comments and Work notes", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -23896,23 +18790,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Cost", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -23925,23 +18813,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Reassignment count (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -23954,23 +18836,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Urgency (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -23983,23 +18859,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Monitor", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -24012,23 +18882,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Watch list", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -24041,23 +18905,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Approval set", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -24070,23 +18928,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Time worked", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -24099,23 +18951,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Serial number", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -24128,23 +18974,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Model ID", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -24157,23 +18997,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Parent (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -24186,23 +19020,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Time to Close an Incident (seconds)", - "jsonPath": null, "nullable": false, "description": "formula: // This is a calculated field\r\n// It calculates the difference in seconds between opening and closing an incident\r\n\r\n// Check if closed date is valid\r\nIF [Closed]>[Opened]\r\nTHEN\r\n//Calculate difference\r\nDATEDIFF('second', [Opened], [Closed])\r\nEND", "type": { @@ -24215,23 +19043,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Owned by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -24244,23 +19066,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Activity due", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -24273,23 +19089,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Invoice number", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -24302,23 +19112,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Updated by (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -24331,23 +19135,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Approval set (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -24360,23 +19158,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Duration", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -24389,23 +19181,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Start date", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -24418,23 +19204,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Ordered", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -24447,23 +19227,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Assigned to", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -24476,23 +19250,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Follow up", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -24505,23 +19273,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Business duration (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -24534,23 +19296,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Order received", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -24563,23 +19319,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Discovery source", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -24592,23 +19342,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Closed by (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -24621,23 +19365,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Work notes list", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -24650,23 +19388,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Total Active Incidents", - "jsonPath": null, "nullable": false, "description": "formula: // This is a calculated field\r\n// It counts each distinct incident. The \"exclude\" is used to avoid filters interfering in the final result\r\n\r\n{EXCLUDE [Opened], [Overdue], [Max Year?]: \r\nCOUNTD(IF [Active]=TRUE\r\nTHEN [Number]\r\nEND)\r\n}", "type": { @@ -24679,27 +19411,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" }, { - "tag": "urn:li:tag:ATTRIBUTE", - "context": null + "tag": "urn:li:tag:ATTRIBUTE" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Number", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -24712,23 +19437,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Class", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -24741,23 +19460,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Description (Configuration Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -24770,23 +19483,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Operational status", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -24799,23 +19506,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Expected start (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -24828,23 +19529,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Work notes list (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -24857,23 +19552,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Opened", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -24886,23 +19575,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Resolve time (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -24915,23 +19598,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Reopen count (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -24944,23 +19621,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Created by (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -24973,23 +19644,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Assigned to (Configuration Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -25002,23 +19667,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Most recent discovery", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -25031,23 +19690,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Domain (Configuration Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -25060,23 +19713,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Upon reject (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -25089,23 +19736,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Work end", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -25118,23 +19759,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Company (Configuration Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -25147,23 +19782,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Knowledge (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -25176,23 +19805,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Max Year?", - "jsonPath": null, "nullable": false, "description": "formula: // This is a calculated field\r\n// It shows TRUE/FALSE if opened date equals maximum year in the dataset\r\n\r\nDATEPART(\"year\", [Opened]) = DATEPART(\"year\", {MAX([Opened])})", "type": { @@ -25205,23 +19828,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Location (Configuration Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -25234,23 +19851,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Watch list (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -25263,23 +19874,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Delivery task", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -25292,23 +19897,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Fault count", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -25321,23 +19920,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Caused by Change (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -25350,23 +19943,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Updated (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -25379,23 +19966,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Sys ID (Configuration Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -25408,23 +19989,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "MAC Address", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -25437,23 +20012,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -25466,23 +20035,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Approval group", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -25495,23 +20058,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Approval", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -25524,23 +20081,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Priority (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -25553,23 +20104,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Urgency", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -25582,23 +20127,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Delivery plan (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -25611,23 +20150,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Company (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -25640,23 +20173,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Additional comments (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -25669,23 +20196,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Business service (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -25698,23 +20219,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Schedule", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -25727,23 +20242,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Sys ID (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -25756,23 +20265,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Supported by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -25785,23 +20288,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Configuration item (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -25814,23 +20311,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Task type", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -25843,23 +20334,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Support group", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -25872,23 +20357,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Active (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -25901,23 +20380,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Correlation display (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -25930,23 +20403,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Justification", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -25959,23 +20426,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Change Request (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -25988,23 +20449,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Updates", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -26017,23 +20472,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Incident state (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -26046,23 +20495,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Domain (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -26075,23 +20518,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Made SLA (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -26104,23 +20541,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Opened Month Tooltip", - "jsonPath": null, "nullable": false, "description": "formula: // This is an IF statment using the opened field to allow for different formats\r\n// original used on columns for line charts are formatted in starting letter of month i.e. J for January\r\n// This version formats to full month name for the tooltip \r\n\r\n\r\n// The IF statement names the month based on the month number of the datefield\r\nIF DATEPART('month', [Opened]) = 1 THEN 'January'\r\nELSEIF DATEPART('month', [Opened]) = 2 THEN 'February'\r\nELSEIF DATEPART('month', [Opened]) = 3 THEN 'March'\r\nELSEIF DATEPART('month', [Opened]) = 4 THEN 'April'\r\nELSEIF DATEPART('month', [Opened]) = 5 THEN 'May'\r\nELSEIF DATEPART('month', [Opened]) = 6 THEN 'June'\r\nELSEIF DATEPART('month', [Opened]) = 7 THEN 'July'\r\nELSEIF DATEPART('month', [Opened]) = 8 THEN 'August'\r\nELSEIF DATEPART('month', [Opened]) = 9 THEN 'September'\r\nELSEIF DATEPART('month', [Opened]) = 10 THEN 'October'\r\nELSEIF DATEPART('month', [Opened]) = 11 THEN 'Novemeber'\r\nELSEIF DATEPART('month', [Opened]) = 12 THEN 'December'\r\nELSE NULL\r\nEND", "type": { @@ -26133,23 +20564,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Problem (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -26162,23 +20587,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Measure Values", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -26191,23 +20610,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Group list", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -26220,23 +20633,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Checked in", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -26249,23 +20656,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Severity (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -26278,23 +20679,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Number of Records", - "jsonPath": null, "nullable": false, "description": "formula: 1", "type": { @@ -26307,23 +20702,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Time worked (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -26336,23 +20725,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Cost center", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -26365,23 +20748,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Work end (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -26394,23 +20771,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Domain Path", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -26423,23 +20794,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Due date", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -26452,23 +20817,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Contact type", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -26481,23 +20840,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Created (Configuration Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -26510,23 +20863,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Delivery plan", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -26539,23 +20886,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Subcategory (Configuration Item)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -26568,23 +20909,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Description", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -26597,23 +20932,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Sys ID", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -26626,23 +20955,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Comments and Work notes (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -26655,23 +20978,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Can Print", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -26684,23 +21001,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Active", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -26713,23 +21024,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Correlation ID (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -26742,23 +21047,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Number (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -26771,23 +21070,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Follow up (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -26800,23 +21093,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Task type (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -26829,23 +21116,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Domain Path (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -26858,23 +21139,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Closed", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -26887,23 +21162,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Description (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -26916,23 +21185,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Reassignment count", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -26945,23 +21208,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Contact type (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -26974,23 +21231,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Assignment group (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -27003,23 +21254,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Comments", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -27032,23 +21277,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "State", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -27061,23 +21300,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Work start (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -27090,23 +21323,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Correlation ID", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -27119,23 +21346,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "State (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -27148,23 +21369,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Resolved (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -27177,23 +21392,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Assigned", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -27206,23 +21415,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Time to Close an Incident", - "jsonPath": null, "nullable": false, "description": "formula: // This is a calculated field\r\n// It transforms time in seconds into DD:HH:MM:SS format\r\nSTR(INT(AVG([Time to Close an Incident (seconds)])/86400)) \r\n \r\n+ \" day(s) \" + \r\n \r\nIF (INT(AVG([Time to Close an Incident (seconds)])%86400/3600)) \r\n< 10 THEN \"0\" ELSE \"\" END + STR(INT(AVG([Time to Close an Incident (seconds)])%86400/3600))\r\n \r\n+ \":\" + \r\n \r\nIF INT(AVG([Time to Close an Incident (seconds)])%3600/60) \r\n< 10 THEN \"0\" ELSE \"\" END + STR(INT(AVG([Time to Close an Incident (seconds)])%3600/60)) \r\n \r\n \r\n+ \":\" + \r\n \r\nIF INT(AVG([Time to Close an Incident (seconds)]) %3600 %60) \r\n< 10 THEN \"0\" ELSE \"\" END + STR(INT(AVG([Time to Close an Incident (seconds)]) %3600 %60))", "type": { @@ -27235,23 +21438,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Upon approval (Incident)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -27264,43 +21461,29 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false } - ], - "primaryKeys": null, - "foreignKeysSpecs": null, - "foreignKeys": null + ] } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "dataset", "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "subTypes", "aspect": { @@ -27309,17 +21492,12 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "dataset", "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,dfe2c02a-54b7-f7a2-39fc-c651da2f6ad8,PROD)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "container", "aspect": { @@ -27328,25 +21506,193 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "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": "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.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/published sheet 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,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" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { - "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.task,PROD)", + "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD)", "aspects": [ { "com.linkedin.pegasus2avro.common.BrowsePaths": { "paths": [ - "/prod/tableau/default/Incidents/task" + "/prod/tableau/default/Workbook published ds/test publish datasource" ] } }, + { + "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", @@ -27354,17 +21700,12 @@ "version": 0, "created": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, - "deleted": null, - "dataset": null, - "cluster": null, "hash": "", "platformSchema": { "com.linkedin.pegasus2avro.schema.OtherSchema": { @@ -27373,224 +21714,264 @@ }, "fields": [ { - "fieldPath": "time_worked", - "jsonPath": null, + "fieldPath": "customer_id", "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NullType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "UNKNOWN", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:DATASOURCEFIELD" + } + ] + }, + "isPartOfKey": false }, { - "fieldPath": "work_notes_list", - "jsonPath": null, + "fieldPath": "Custom SQL Query", "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NullType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "UNKNOWN", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:DATASOURCEFIELD" + } + ] + }, + "isPartOfKey": false }, { - "fieldPath": "group_list", - "jsonPath": null, + "fieldPath": "staff_last_name", "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NullType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "UNKNOWN", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:DATASOURCEFIELD" + } + ] + }, + "isPartOfKey": false }, { - "fieldPath": "parent", - "jsonPath": null, + "fieldPath": "staff_first_name", "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NullType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "UNKNOWN", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:DATASOURCEFIELD" + } + ] + }, + "isPartOfKey": false }, { - "fieldPath": "expected_start", - "jsonPath": null, + "fieldPath": "customer_last_name", "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} + "com.linkedin.pegasus2avro.schema.NullType": {} } }, - "nativeDataType": "WDC_DATETIME", + "nativeDataType": "UNKNOWN", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:DATASOURCEFIELD" + } + ] + }, + "isPartOfKey": false }, { - "fieldPath": "due_date", - "jsonPath": null, + "fieldPath": "amount", "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} + "com.linkedin.pegasus2avro.schema.NullType": {} } }, - "nativeDataType": "WDC_DATETIME", + "nativeDataType": "UNKNOWN", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:DATASOURCEFIELD" + } + ] + }, + "isPartOfKey": false }, { - "fieldPath": "work_end", - "jsonPath": null, + "fieldPath": "customer_first_name", "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} + "com.linkedin.pegasus2avro.schema.NullType": {} } }, - "nativeDataType": "WDC_DATETIME", + "nativeDataType": "UNKNOWN", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "cmdb_ci", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:DATASOURCEFIELD" + } + ] }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "business_duration", - "jsonPath": null, + "fieldPath": "payment_date", "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} + "com.linkedin.pegasus2avro.schema.NullType": {} } }, - "nativeDataType": "WDC_DATETIME", + "nativeDataType": "UNKNOWN", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "work_start", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:DATASOURCEFIELD" + } + ] }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, + "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:webdata-direct:marketo-marketo,marketo.activity6,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.BrowsePaths": { + "paths": [ + "/prod/tableau/default/Marketo/activity6" + ] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "test", + "platform": "urn:li:dataPlatform:tableau", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.OtherSchema": { + "rawSchema": "" + } + }, + "fields": [ { - "fieldPath": "closed_at", - "jsonPath": null, + "fieldPath": "Test_Variant", "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_DATETIME", + "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "user_input", - "jsonPath": null, + "fieldPath": "Mailing_ID", "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "reassignment_count", - "jsonPath": null, + "fieldPath": "Campaign_Run_ID", "nullable": false, "description": "", "type": { @@ -27600,51 +21981,36 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "approval", - "jsonPath": null, + "fieldPath": "id", "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "short_description", - "jsonPath": null, + "fieldPath": "Activity_Date", "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "impact", - "jsonPath": null, + "fieldPath": "Choice_Number", "nullable": false, "description": "", "type": { @@ -27654,123 +22020,131 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "knowledge", - "jsonPath": null, + "fieldPath": "Step_ID", "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_BOOL", + "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "closed_by", - "jsonPath": null, + "fieldPath": "Campaign_ID", "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "calendar_duration", - "jsonPath": null, + "fieldPath": "Lead_ID", "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_DATETIME", + "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "delivery_task", - "jsonPath": null, + "fieldPath": "Has_Predictive", "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.BooleanType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, + "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/activity11" + ] + } + }, + { + "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", - "jsonPath": null, + "fieldPath": "Campaign_ID", "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_DATETIME", + "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "sys_class_name", - "jsonPath": null, + "fieldPath": "Campaign_Run_ID", "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "comments", - "jsonPath": null, + "fieldPath": "Link", "nullable": false, "description": "", "type": { @@ -27780,33 +22154,23 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "upon_reject", - "jsonPath": null, + "fieldPath": "Test_Variant", "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "upon_approval", - "jsonPath": null, + "fieldPath": "Platform", "nullable": false, "description": "", "type": { @@ -27816,33 +22180,23 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "approval_history", - "jsonPath": null, + "fieldPath": "id", "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "sys_created_on", - "jsonPath": null, + "fieldPath": "Activity_Date", "nullable": false, "description": "", "type": { @@ -27852,69 +22206,49 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "correlation_id", - "jsonPath": null, + "fieldPath": "Choice_Number", "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "opened_at", - "jsonPath": null, + "fieldPath": "Mailing_ID", "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_DATETIME", + "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "approval_set", - "jsonPath": null, + "fieldPath": "Step_ID", "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_DATETIME", + "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "escalation", - "jsonPath": null, + "fieldPath": "Lead_ID", "nullable": false, "description": "", "type": { @@ -27924,15 +22258,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "sys_id", - "jsonPath": null, + "fieldPath": "Link_ID", "nullable": false, "description": "", "type": { @@ -27942,105 +22271,23 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "delivery_plan", - "jsonPath": null, + "fieldPath": "Is_Predictive", "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.BooleanType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "comments_and_work_notes", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "close_notes", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "watch_list", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "description", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "opened_by", - "jsonPath": null, + "fieldPath": "Device", "nullable": false, "description": "", "type": { @@ -28050,69 +22297,23 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "activity_due", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_updated_on", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "work_notes", - "jsonPath": null, + "fieldPath": "Is_Mobile_Device", "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.BooleanType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "sys_updated_by", - "jsonPath": null, + "fieldPath": "User_Agent", "nullable": false, "description": "", "type": { @@ -28122,15 +22323,53 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, + "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/activity10" + ] + } + }, + { + "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": "assigned_to", - "jsonPath": null, + "fieldPath": "Platform", "nullable": false, "description": "", "type": { @@ -28140,15 +22379,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "assignment_group", - "jsonPath": null, + "fieldPath": "Device", "nullable": false, "description": "", "type": { @@ -28158,15 +22392,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "order", - "jsonPath": null, + "fieldPath": "Choice_Number", "nullable": false, "description": "", "type": { @@ -28176,33 +22405,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_domain_path", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "sys_mod_count", - "jsonPath": null, + "fieldPath": "Lead_ID", "nullable": false, "description": "", "type": { @@ -28212,33 +22418,23 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "business_service", - "jsonPath": null, + "fieldPath": "Activity_Date", "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "priority", - "jsonPath": null, + "fieldPath": "Test_Variant", "nullable": false, "description": "", "type": { @@ -28248,33 +22444,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "correlation_display", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "active", - "jsonPath": null, + "fieldPath": "Is_Mobile_Device", "nullable": false, "description": "", "type": { @@ -28284,51 +22457,23 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_domain", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "company", - "jsonPath": null, + "fieldPath": "Has_Predictive", "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} + "com.linkedin.pegasus2avro.schema.BooleanType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "urgency", - "jsonPath": null, + "fieldPath": "Step_ID", "nullable": false, "description": "", "type": { @@ -28338,15 +22483,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "number", - "jsonPath": null, + "fieldPath": "User_Agent", "nullable": false, "description": "", "type": { @@ -28356,15 +22496,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "state", - "jsonPath": null, + "fieldPath": "Mailing_ID", "nullable": false, "description": "", "type": { @@ -28374,9102 +22509,67 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "made_sla", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_created_by", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "additional_assignee_list", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "contact_type", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "location", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "follow_up", - "jsonPath": null, + "fieldPath": "Campaign_ID", "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - } - ], - "primaryKeys": null, - "foreignKeysSpecs": null, - "foreignKeys": null - } - } - ] - } - }, - "proposedDelta": null, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } -}, -{ - "auditHeader": null, - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { - "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sc_request,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Requests/sc_request" - ] - } - }, - { - "com.linkedin.pegasus2avro.schema.SchemaMetadata": { - "schemaName": "test", - "platform": "urn:li:dataPlatform:tableau", - "version": 0, - "created": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - }, - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - }, - "deleted": null, - "dataset": null, - "cluster": null, - "hash": "", - "platformSchema": { - "com.linkedin.pegasus2avro.schema.OtherSchema": { - "rawSchema": "" - } - }, - "fields": [ - { - "fieldPath": "work_notes_list", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "closed_at", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "user_input", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "requested_for", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "opened_at", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "price", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "assigned_to", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "number", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "delivery_plan", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "delivery_address", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "business_duration", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "urgency", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "work_end", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "due_date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "parent", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "made_sla", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "assignment_group", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_class_name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "additional_assignee_list", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "work_start", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_domain_path", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "time_worked", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "comments_and_work_notes", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "group_list", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "business_service", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "correlation_id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "cmdb_ci", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "requested_date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.DateType": {} - } - }, - "nativeDataType": "WDC_DATE", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "follow_up", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_updated_on", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "state", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "comments", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "approval_set", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "close_notes", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "upon_approval", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "company", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "activity_due", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "contact_type", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "approval", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "calendar_duration", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "reassignment_count", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "delivery_task", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "approval_history", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_created_on", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "request_state", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "watch_list", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "upon_reject", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "expected_start", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "active", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "opened_by", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "work_notes", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "impact", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "description", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sla_due", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "correlation_display", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "priority", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "stage", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_created_by", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "escalation", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "closed_by", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "short_description", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "location", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "special_instructions", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "order", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_updated_by", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_mod_count", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "knowledge", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_domain", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "calendar_stc", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - } - ], - "primaryKeys": null, - "foreignKeysSpecs": null, - "foreignKeys": null - } - } - ] - } - }, - "proposedDelta": null, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } -}, -{ - "auditHeader": null, - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { - "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sc_req_item,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Requests/sc_req_item" - ] - } - }, - { - "com.linkedin.pegasus2avro.schema.SchemaMetadata": { - "schemaName": "test", - "platform": "urn:li:dataPlatform:tableau", - "version": 0, - "created": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - }, - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - }, - "deleted": null, - "dataset": null, - "cluster": null, - "hash": "", - "platformSchema": { - "com.linkedin.pegasus2avro.schema.OtherSchema": { - "rawSchema": "" - } - }, - "fields": [ - { - "fieldPath": "watch_list", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "due_date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "made_sla", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "parent", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "assigned_to", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_mod_count", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "cmdb_ci", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_domain", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "configuration_item", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "closed_by", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "active", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "expected_start", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "recurring_price", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "work_end", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "short_description", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "approval", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "opened_at", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "order", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "assignment_group", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sc_catalog", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "knowledge", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "stage", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "correlation_display", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "reassignment_count", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "delivery_plan", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_class_name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "user_input", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "description", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "activity_due", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "price", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "work_notes_list", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "estimated_delivery", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "additional_assignee_list", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "context", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "business_duration", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "approval_set", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "priority", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_updated_on", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "state", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "business_service", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "billable", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "approval_history", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "recurring_frequency", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "contact_type", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "cat_item", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_updated_by", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_domain_path", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "comments", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "impact", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "order_guide", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sla_due", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_created_by", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "comments_and_work_notes", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "opened_by", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "backordered", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "correlation_id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "group_list", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "delivery_task", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "number", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_created_on", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "company", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "work_start", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "request", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "close_notes", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "work_notes", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "calendar_duration", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "quantity", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "follow_up", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "location", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "upon_reject", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "closed_at", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "time_worked", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "escalation", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "urgency", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "upon_approval", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - } - ], - "primaryKeys": null, - "foreignKeysSpecs": null, - "foreignKeys": null - } - } - ] - } - }, - "proposedDelta": null, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } -}, -{ - "auditHeader": null, - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { - "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sc_cat_item,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Requests/sc_cat_item" - ] - } - }, - { - "com.linkedin.pegasus2avro.schema.SchemaMetadata": { - "schemaName": "test", - "platform": "urn:li:dataPlatform:tableau", - "version": 0, - "created": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - }, - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - }, - "deleted": null, - "dataset": null, - "cluster": null, - "hash": "", - "platformSchema": { - "com.linkedin.pegasus2avro.schema.OtherSchema": { - "rawSchema": "" - } - }, - "fields": [ - { - "fieldPath": "sc_catalogs", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_updated_by", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "type", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "mobile_picture_type", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "workflow", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_customer_update", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_class_name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "visible_standalone", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "no_quantity", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "order", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_updated_on", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_scope", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "template", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "no_proceed_checkout", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "billable", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "delivery_plan", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "description", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "meta", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "ordered_item_link", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_mod_count", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sc_ic_version", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "image", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "short_description", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_policy", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "roles", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "picture", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "list_price", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "no_order_now", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "vendor", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sc_ic_item_staging", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "no_order", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "entitlement_script", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "active", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "icon", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "ignore_price", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "start_closed", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_package", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "group", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_replace_on_upgrade", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "cost", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_FLOAT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "use_sc_layout", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "location", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "availability", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "model", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "custom_cart", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "mobile_picture", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "category", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "no_cart", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "mobile_hide_price", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_created_by", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "price", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "delivery_time", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "no_search", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_created_on", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "recurring_frequency", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "recurring_price", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "delivery_plan_script", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "visible_bundle", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_update_name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "visible_guide", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "preview", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "omit_price", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - } - ], - "primaryKeys": null, - "foreignKeysSpecs": null, - "foreignKeys": null - } - } - ] - } - }, - "proposedDelta": null, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } -}, -{ - "auditHeader": null, - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { - "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sys_user_group,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Problems/sys_user_group" - ] - } - }, - { - "com.linkedin.pegasus2avro.schema.SchemaMetadata": { - "schemaName": "test", - "platform": "urn:li:dataPlatform:tableau", - "version": 0, - "created": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - }, - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - }, - "deleted": null, - "dataset": null, - "cluster": null, - "hash": "", - "platformSchema": { - "com.linkedin.pegasus2avro.schema.OtherSchema": { - "rawSchema": "" - } - }, - "fields": [ - { - "fieldPath": "u_u", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_updated_by", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "source", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "exclude_manager", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "description", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "cost_center", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_created_by", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "parent", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_mod_count", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_updated_on", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "u_lucha", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "u_lu2", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "type", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "roles", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_created_on", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "default_assignee", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "email", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "manager", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "active", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "include_members", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - } - ], - "primaryKeys": null, - "foreignKeysSpecs": null, - "foreignKeys": null - } - } - ] - } - }, - "proposedDelta": null, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } -}, -{ - "auditHeader": null, - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { - "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.problem,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Problems/problem" - ] - } - }, - { - "com.linkedin.pegasus2avro.schema.SchemaMetadata": { - "schemaName": "test", - "platform": "urn:li:dataPlatform:tableau", - "version": 0, - "created": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - }, - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - }, - "deleted": null, - "dataset": null, - "cluster": null, - "hash": "", - "platformSchema": { - "com.linkedin.pegasus2avro.schema.OtherSchema": { - "rawSchema": "" - } - }, - "fields": [ - { - "fieldPath": "opened_by", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_class_name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_created_by", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_updated_on", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "closed_by", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "close_notes", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "made_sla", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "state", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "related_incidents", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "business_duration", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_domain", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "delivery_task", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "priority", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_created_on", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "escalation", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "business_service", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "comments_and_work_notes", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "rfc", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_domain_path", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "cmdb_ci", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "problem_state", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "delivery_plan", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "user_input", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "active", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "location", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "expected_start", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "calendar_duration", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "number", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sla_due", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "work_notes_list", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "knowledge", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_updated_by", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "time_worked", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "order", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "assignment_group", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "upon_approval", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "company", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "opened_at", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "group_list", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "work_around", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "description", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "work_end", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "correlation_id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "approval_set", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "urgency", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "impact", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "short_description", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "approval", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "closed_at", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "known_error", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "due_date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "work_start", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "activity_due", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_mod_count", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "correlation_display", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "contact_type", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "additional_assignee_list", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "approval_history", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "reassignment_count", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "follow_up", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "comments", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "work_notes", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "parent", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "assigned_to", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "watch_list", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "upon_reject", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - } - ], - "primaryKeys": null, - "foreignKeysSpecs": null, - "foreignKeys": null - } - } - ] - } - }, - "proposedDelta": null, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } -}, -{ - "auditHeader": null, - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { - "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.incident,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Incidents/incident" - ] - } - }, - { - "com.linkedin.pegasus2avro.schema.SchemaMetadata": { - "schemaName": "test", - "platform": "urn:li:dataPlatform:tableau", - "version": 0, - "created": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - }, - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - }, - "deleted": null, - "dataset": null, - "cluster": null, - "hash": "", - "platformSchema": { - "com.linkedin.pegasus2avro.schema.OtherSchema": { - "rawSchema": "" - } - }, - "fields": [ - { - "fieldPath": "sys_id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "correlation_id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "urgency", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "severity", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "business_service", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "location", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "approval_set", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "closed_at", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "parent_incident", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "subcategory", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "company", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "caller_id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "resolved_at", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "group_list", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "correlation_display", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "resolved_by", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_created_on", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "business_stc", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_domain_path", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "parent", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "category", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "user_input", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "number", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "escalation", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "state", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "approval_history", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "impact", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "expected_start", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "additional_assignee_list", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "child_incidents", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "cmdb_ci", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "incident_state", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "notify", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "work_notes", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "reassignment_count", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "contact_type", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "opened_by", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_class_name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "problem_id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "due_date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "approval", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "description", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "order", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "opened_at", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "work_notes_list", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "priority", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "time_worked", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_domain", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "caused_by", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_updated_by", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "upon_reject", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "delivery_task", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "knowledge", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_updated_on", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "calendar_duration", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "closed_by", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "comments", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "short_description", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "assigned_to", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "assignment_group", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "work_end", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "reopen_count", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "work_start", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "made_sla", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_mod_count", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "calendar_stc", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "rfc", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "delivery_plan", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "close_code", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "close_notes", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "activity_due", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_created_by", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "active", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "business_duration", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "follow_up", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "comments_and_work_notes", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "upon_approval", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "watch_list", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sla_due", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - } - ], - "primaryKeys": null, - "foreignKeysSpecs": null, - "foreignKeys": null - } - } - ] - } - }, - "proposedDelta": null, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } -}, -{ - "auditHeader": null, - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { - "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.cmdb_ci,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Incidents/cmdb_ci" - ] - } - }, - { - "com.linkedin.pegasus2avro.schema.SchemaMetadata": { - "schemaName": "test", - "platform": "urn:li:dataPlatform:tableau", - "version": 0, - "created": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - }, - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - }, - "deleted": null, - "dataset": null, - "cluster": null, - "hash": "", - "platformSchema": { - "com.linkedin.pegasus2avro.schema.OtherSchema": { - "rawSchema": "" - } - }, - "fields": [ - { - "fieldPath": "first_discovered", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "operational_status", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "last_discovered", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "cost_cc", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "checked_in", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "attributes", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "serial_number", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "vendor", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "ip_address", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "support_group", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_updated_by", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "asset", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_domain", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "supported_by", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "invoice_number", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "managed_by", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "fault_count", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "due_in", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "cost", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "correlation_id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "justification", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_created_on", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "assigned", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "model_id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_class_name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "comments", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "company", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "lease_id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "monitor", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "cost_center", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "subcategory", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "delivery_date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "assignment_group", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "can_print", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "short_description", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "model_number", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "start_date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "discovery_source", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_domain_path", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "assigned_to", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "category", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "schedule", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "fqdn", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "warranty_expiration", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.DateType": {} - } - }, - "nativeDataType": "WDC_DATE", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "owned_by", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "asset_tag", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "manufacturer", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "purchase_date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.DateType": {} - } - }, - "nativeDataType": "WDC_DATE", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "location", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "department", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_updated_on", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "checked_out", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "unverified", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "skip_sync", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "po_number", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "order_date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "gl_account", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "maintenance_schedule", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "install_date", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "dns_domain", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_created_by", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "mac_address", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "change_control", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.StringType": {} - } - }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "install_status", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "due", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} - } - }, - "nativeDataType": "WDC_DATETIME", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "sys_mod_count", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - } - ], - "primaryKeys": null, - "foreignKeysSpecs": null, - "foreignKeys": null - } - } - ] - } - }, - "proposedDelta": null, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } -}, -{ - "auditHeader": null, - "entityType": "container", - "entityUrn": "urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "containerProperties", - "aspect": { - "value": "{\"customProperties\": {\"platform\": \"tableau\", \"workbook_id\": \"bd040833-8f66-22c0-1b51-bd4ccf5eef7c\"}, \"externalUrl\": \"https://do-not-connect/#/site/acryl/workbooks/17904\", \"name\": \"Workbook published ds\", \"description\": \"\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } -}, -{ - "auditHeader": null, - "entityType": "container", - "entityUrn": "urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "dataPlatformInstance", - "aspect": { - "value": "{\"platform\": \"urn:li:dataPlatform:tableau\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } -}, -{ - "auditHeader": null, - "entityType": "container", - "entityUrn": "urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "subTypes", - "aspect": { - "value": "{\"typeNames\": [\"Workbook\"]}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } -}, -{ - "auditHeader": null, - "entityType": "container", - "entityUrn": "urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "ownership", - "aspect": { - "value": "{\"owners\": [{\"owner\": \"urn:li:corpuser:jawadqu@gmail.com\", \"type\": \"DATAOWNER\"}], \"lastModified\": {\"time\": 0, \"actor\": \"urn:li:corpuser:unknown\"}}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } -}, -{ - "auditHeader": null, - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.ChartSnapshot": { - "urn": "urn:li:chart:(tableau,130496dc-29ca-8a89-e32b-d73c4d8b65ff)", - "aspects": [ - { - "com.linkedin.pegasus2avro.chart.ChartInfo": { - "customProperties": { - "staff_last_name": "", - "amount": "", - "customer_first_name": "" - }, - "externalUrl": "https://do-not-connect/#/site/acryl/views/Workbookpublishedds/Sheet1", - "title": "published sheet ds", - "description": "", - "lastModified": { - "created": { - "time": 1641951867000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "lastModified": { - "time": 1642658093000, - "actor": "urn:li:corpuser:jawadqu@gmail.com", - "impersonator": null - }, - "deleted": null - }, - "chartUrl": null, - "inputs": [ - { - "string": "urn:li:dataset:(urn:li:dataPlatform:tableau,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD)" - } - ], - "type": null, - "access": null, - "lastRefreshed": null - } - }, - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/tableau/default/Workbook published ds/published sheet ds" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - } - } - } - ] - } - }, - "proposedDelta": null, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } -}, -{ - "auditHeader": null, - "entityType": "chart", - "entityUrn": "urn:li:chart:(tableau,130496dc-29ca-8a89-e32b-d73c4d8b65ff)", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9\"}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } -}, -{ - "auditHeader": null, - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD)", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "upstreamLineage", - "aspect": { - "value": "{\"upstreams\": [{\"auditStamp\": {\"time\": 0, \"actor\": \"urn:li:corpuser:unknown\"}, \"dataset\": \"urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD)\", \"type\": \"TRANSFORMED\"}]}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } -}, -{ - "auditHeader": null, - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { - "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Workbook published ds/test publish datasource" - ] - } - }, - { - "com.linkedin.pegasus2avro.common.Ownership": { - "owners": [ - { - "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null - } - ], - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - } - } - }, - { - "com.linkedin.pegasus2avro.dataset.DatasetProperties": { - "customProperties": { - "hasExtracts": "False", - "extractLastRefreshTime": "", - "extractLastIncrementalUpdateTime": "", - "extractLastUpdateTime": "", - "type": "EmbeddedDatasource" - }, - "externalUrl": null, - "name": "test publish datasource", - "qualifiedName": null, - "description": null, - "uri": null, - "tags": [] - } - }, - { - "com.linkedin.pegasus2avro.schema.SchemaMetadata": { - "schemaName": "test", - "platform": "urn:li:dataPlatform:tableau", - "version": 0, - "created": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - }, - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - }, - "deleted": null, - "dataset": null, - "cluster": null, - "hash": "", - "platformSchema": { - "com.linkedin.pegasus2avro.schema.OtherSchema": { - "rawSchema": "" - } - }, - "fields": [ - { - "fieldPath": "customer_id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NullType": {} - } - }, - "nativeDataType": "UNKNOWN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "Custom SQL Query", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NullType": {} - } - }, - "nativeDataType": "UNKNOWN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "staff_last_name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NullType": {} - } - }, - "nativeDataType": "UNKNOWN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "staff_first_name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NullType": {} - } - }, - "nativeDataType": "UNKNOWN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "customer_last_name", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NullType": {} - } - }, - "nativeDataType": "UNKNOWN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "amount", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NullType": {} - } - }, - "nativeDataType": "UNKNOWN", - "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null - } - ] + "com.linkedin.pegasus2avro.schema.NumberType": {} + } }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "nativeDataType": "WDC_INT", + "recursive": false, + "isPartOfKey": false }, { - "fieldPath": "customer_first_name", - "jsonPath": null, + "fieldPath": "Campaign_Run_ID", "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NullType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "UNKNOWN", + "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "payment_date", - "jsonPath": null, + "fieldPath": "id", "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NullType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "UNKNOWN", + "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": { - "tags": [ - { - "tag": "urn:li:tag:DATASOURCEFIELD", - "context": null - } - ] - }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false } - ], - "primaryKeys": null, - "foreignKeysSpecs": null, - "foreignKeys": null + ] } } ] } }, - "proposedDelta": null, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } -}, -{ - "auditHeader": null, - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD)", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "subTypes", - "aspect": { - "value": "{\"typeNames\": [\"Embedded Data Source\"]}", - "contentType": "application/json" - }, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } -}, -{ - "auditHeader": null, - "entityType": "dataset", - "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,d8d4c0ea-3162-fa11-31e6-26675da44a38,PROD)", - "entityKeyAspect": null, - "changeType": "UPSERT", - "aspectName": "container", - "aspect": { - "value": "{\"container\": \"urn:li:container:94e6e84b66f9ee8c70c22f06cfbad6a9\"}", - "contentType": "application/json" - }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { - "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity6,PROD)", + "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/activity6" + "/prod/tableau/default/Marketo/activity7" ] } }, @@ -37480,17 +22580,12 @@ "version": 0, "created": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, - "deleted": null, - "dataset": null, - "cluster": null, "hash": "", "platformSchema": { "com.linkedin.pegasus2avro.schema.OtherSchema": { @@ -37500,7 +22595,6 @@ "fields": [ { "fieldPath": "Test_Variant", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -37510,15 +22604,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "Mailing_ID", - "jsonPath": null, + "fieldPath": "Campaign_Run_ID", "nullable": false, "description": "", "type": { @@ -37528,33 +22617,23 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "Campaign_Run_ID", - "jsonPath": null, + "fieldPath": "Activity_Date", "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "WDC_INT", + "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "id", - "jsonPath": null, + "fieldPath": "Mailing_ID", "nullable": false, "description": "", "type": { @@ -37564,33 +22643,23 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "Activity_Date", - "jsonPath": null, + "fieldPath": "Has_Predictive", "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} + "com.linkedin.pegasus2avro.schema.BooleanType": {} } }, - "nativeDataType": "WDC_DATETIME", + "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "Choice_Number", - "jsonPath": null, + "fieldPath": "id", "nullable": false, "description": "", "type": { @@ -37600,15 +22669,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "Step_ID", - "jsonPath": null, + "fieldPath": "Campaign_ID", "nullable": false, "description": "", "type": { @@ -37618,15 +22682,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "Campaign_ID", - "jsonPath": null, + "fieldPath": "Step_ID", "nullable": false, "description": "", "type": { @@ -37636,15 +22695,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Lead_ID", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -37654,58 +22708,41 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "Has_Predictive", - "jsonPath": null, + "fieldPath": "Choice_Number", "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} + "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_BOOL", + "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false } - ], - "primaryKeys": null, - "foreignKeysSpecs": null, - "foreignKeys": null + ] } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { - "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity11,PROD)", + "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/activity11" + "/prod/tableau/default/Marketo/campaignsTable" ] } }, @@ -37716,17 +22753,12 @@ "version": 0, "created": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, - "deleted": null, - "dataset": null, - "cluster": null, "hash": "", "platformSchema": { "com.linkedin.pegasus2avro.schema.OtherSchema": { @@ -37735,44 +22767,20 @@ }, "fields": [ { - "fieldPath": "Campaign_ID", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "Campaign_Run_ID", - "jsonPath": null, + "fieldPath": "programName", "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_INT", + "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "Link", - "jsonPath": null, + "fieldPath": "name", "nullable": false, "description": "", "type": { @@ -37782,15 +22790,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "Test_Variant", - "jsonPath": null, + "fieldPath": "programId", "nullable": false, "description": "", "type": { @@ -37800,15 +22803,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "Platform", - "jsonPath": null, + "fieldPath": "description", "nullable": false, "description": "", "type": { @@ -37818,33 +22816,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "Activity_Date", - "jsonPath": null, + "fieldPath": "createdAt", "nullable": false, "description": "", "type": { @@ -37854,15 +22829,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "Choice_Number", - "jsonPath": null, + "fieldPath": "id", "nullable": false, "description": "", "type": { @@ -37872,69 +22842,92 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "Mailing_ID", - "jsonPath": null, + "fieldPath": "workspaceName", "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_INT", + "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "Step_ID", - "jsonPath": null, + "fieldPath": "updatedAt", "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.TimeType": {} } }, - "nativeDataType": "WDC_INT", + "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "Lead_ID", - "jsonPath": null, + "fieldPath": "active", "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.BooleanType": {} } }, - "nativeDataType": "WDC_INT", + "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, + "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.xls.people,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.BrowsePaths": { + "paths": [ + "/prod/tableau/Samples/Superstore Datasource/People" + ] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "test", + "platform": "urn:li:dataPlatform:tableau", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.OtherSchema": { + "rawSchema": "" + } + }, + "fields": [ { - "fieldPath": "Link_ID", - "jsonPath": null, + "fieldPath": "Person", "nullable": false, "description": "", "type": { @@ -37942,35 +22935,12 @@ "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "Is_Predictive", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", + "nativeDataType": "WSTR", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "Device", - "jsonPath": null, + "fieldPath": "Region", "nullable": false, "description": "", "type": { @@ -37978,35 +22948,68 @@ "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WSTR", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, + "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.xls.returns,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.BrowsePaths": { + "paths": [ + "/prod/tableau/Samples/Superstore Datasource/Returns" + ] + } + }, + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "schemaName": "test", + "platform": "urn:li:dataPlatform:tableau", + "version": 0, + "created": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "lastModified": { + "time": 0, + "actor": "urn:li:corpuser:unknown" + }, + "hash": "", + "platformSchema": { + "com.linkedin.pegasus2avro.schema.OtherSchema": { + "rawSchema": "" + } + }, + "fields": [ { - "fieldPath": "Is_Mobile_Device", - "jsonPath": null, + "fieldPath": "Returned", "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_BOOL", + "nativeDataType": "WSTR", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "User_Agent", - "jsonPath": null, + "fieldPath": "Order ID", "nullable": false, "description": "", "type": { @@ -38014,42 +23017,30 @@ "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WSTR", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false } - ], - "primaryKeys": null, - "foreignKeysSpecs": null, - "foreignKeys": null + ] } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { - "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity10,PROD)", + "urn": "urn:li:dataset:(urn:li:dataPlatform:external,sample - superstore.xls.orders,PROD)", "aspects": [ { "com.linkedin.pegasus2avro.common.BrowsePaths": { "paths": [ - "/prod/tableau/default/Marketo/activity10" + "/prod/tableau/Samples/Superstore Datasource/Orders" ] } }, @@ -38060,17 +23051,12 @@ "version": 0, "created": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, - "deleted": null, - "dataset": null, - "cluster": null, "hash": "", "platformSchema": { "com.linkedin.pegasus2avro.schema.OtherSchema": { @@ -38079,8 +23065,7 @@ }, "fields": [ { - "fieldPath": "Platform", - "jsonPath": null, + "fieldPath": "Product ID", "nullable": false, "description": "", "type": { @@ -38088,17 +23073,12 @@ "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WSTR", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "Device", - "jsonPath": null, + "fieldPath": "Category", "nullable": false, "description": "", "type": { @@ -38106,35 +23086,12 @@ "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_STRING", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "Choice_Number", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", + "nativeDataType": "WSTR", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "Lead_ID", - "jsonPath": null, + "fieldPath": "Postal Code", "nullable": false, "description": "", "type": { @@ -38142,35 +23099,25 @@ "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_INT", + "nativeDataType": "I8", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "Activity_Date", - "jsonPath": null, + "fieldPath": "City", "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_DATETIME", + "nativeDataType": "WSTR", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "Test_Variant", - "jsonPath": null, + "fieldPath": "Quantity", "nullable": false, "description": "", "type": { @@ -38178,71 +23125,38 @@ "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - }, - { - "fieldPath": "Is_Mobile_Device", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} - } - }, - "nativeDataType": "WDC_BOOL", + "nativeDataType": "I8", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "Has_Predictive", - "jsonPath": null, + "fieldPath": "State", "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_BOOL", + "nativeDataType": "WSTR", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "Step_ID", - "jsonPath": null, + "fieldPath": "Order Date", "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.DateType": {} } }, - "nativeDataType": "WDC_INT", + "nativeDataType": "DATE", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "User_Agent", - "jsonPath": null, + "fieldPath": "Customer Name", "nullable": false, "description": "", "type": { @@ -38250,35 +23164,25 @@ "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_STRING", + "nativeDataType": "WSTR", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "Mailing_ID", - "jsonPath": null, + "fieldPath": "Country/Region", "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_INT", + "nativeDataType": "WSTR", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "Campaign_ID", - "jsonPath": null, + "fieldPath": "Sales", "nullable": false, "description": "", "type": { @@ -38286,127 +23190,38 @@ "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_INT", + "nativeDataType": "R8", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "Campaign_Run_ID", - "jsonPath": null, + "fieldPath": "Segment", "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_INT", + "nativeDataType": "WSTR", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "id", - "jsonPath": null, - "nullable": false, - "description": "", - "type": { - "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} - } - }, - "nativeDataType": "WDC_INT", - "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null - } - ], - "primaryKeys": null, - "foreignKeysSpecs": null, - "foreignKeys": null - } - } - ] - } - }, - "proposedDelta": null, - "systemMetadata": { - "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null - } -}, -{ - "auditHeader": null, - "proposedSnapshot": { - "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { - "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:marketo-marketo,marketo.activity7,PROD)", - "aspects": [ - { - "com.linkedin.pegasus2avro.common.BrowsePaths": { - "paths": [ - "/prod/tableau/default/Marketo/activity7" - ] - } - }, - { - "com.linkedin.pegasus2avro.schema.SchemaMetadata": { - "schemaName": "test", - "platform": "urn:li:dataPlatform:tableau", - "version": 0, - "created": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - }, - "lastModified": { - "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null - }, - "deleted": null, - "dataset": null, - "cluster": null, - "hash": "", - "platformSchema": { - "com.linkedin.pegasus2avro.schema.OtherSchema": { - "rawSchema": "" - } - }, - "fields": [ - { - "fieldPath": "Test_Variant", - "jsonPath": null, + "fieldPath": "Sub-Category", "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_INT", + "nativeDataType": "WSTR", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "Campaign_Run_ID", - "jsonPath": null, + "fieldPath": "Profit", "nullable": false, "description": "", "type": { @@ -38414,71 +23229,51 @@ "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_INT", + "nativeDataType": "R8", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "Activity_Date", - "jsonPath": null, + "fieldPath": "Product Name", "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.TimeType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_DATETIME", + "nativeDataType": "WSTR", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "Mailing_ID", - "jsonPath": null, + "fieldPath": "Customer ID", "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_INT", + "nativeDataType": "WSTR", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "Has_Predictive", - "jsonPath": null, + "fieldPath": "Order ID", "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.BooleanType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_BOOL", + "nativeDataType": "WSTR", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "id", - "jsonPath": null, + "fieldPath": "Row ID", "nullable": false, "description": "", "type": { @@ -38486,17 +23281,12 @@ "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_INT", + "nativeDataType": "I8", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "Campaign_ID", - "jsonPath": null, + "fieldPath": "Discount", "nullable": false, "description": "", "type": { @@ -38504,91 +23294,124 @@ "com.linkedin.pegasus2avro.schema.NumberType": {} } }, - "nativeDataType": "WDC_INT", + "nativeDataType": "R8", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "Step_ID", - "jsonPath": null, + "fieldPath": "Ship Date", "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.DateType": {} } }, - "nativeDataType": "WDC_INT", + "nativeDataType": "DATE", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "Lead_ID", - "jsonPath": null, + "fieldPath": "Ship Mode", "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_INT", + "nativeDataType": "WSTR", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { - "fieldPath": "Choice_Number", - "jsonPath": null, + "fieldPath": "Region", "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.NumberType": {} + "com.linkedin.pegasus2avro.schema.StringType": {} } }, - "nativeDataType": "WDC_INT", + "nativeDataType": "WSTR", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false } - ], - "primaryKeys": null, - "foreignKeysSpecs": null, - "foreignKeys": null + ] + } + } + ] + } + }, + "systemMetadata": { + "lastObserved": 1638860400000, + "runId": "tableau-test" + } +}, +{ + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.customer,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.common.BrowsePaths": { + "paths": [ + "/prod/tableau/default/test publish datasource/customer" + ] + } + } + ] + } + }, + "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/payment" + ] + } + } + ] + } + }, + "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/staff" + ] } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { - "urn": "urn:li:dataset:(urn:li:dataPlatform:postgres,dvdrental.public.address,PROD)", + "urn": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.address,PROD)", "aspects": [ { "com.linkedin.pegasus2avro.common.BrowsePaths": { @@ -38604,17 +23427,12 @@ "version": 0, "created": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, - "deleted": null, - "dataset": null, - "cluster": null, "hash": "", "platformSchema": { "com.linkedin.pegasus2avro.schema.OtherSchema": { @@ -38624,7 +23442,6 @@ "fields": [ { "fieldPath": "postal_code", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -38634,15 +23451,10 @@ }, "nativeDataType": "STR", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "last_update", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -38652,15 +23464,10 @@ }, "nativeDataType": "DBTIMESTAMP", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "phone", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -38670,15 +23477,10 @@ }, "nativeDataType": "STR", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "address2", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -38688,15 +23490,10 @@ }, "nativeDataType": "STR", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "address", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -38706,15 +23503,10 @@ }, "nativeDataType": "STR", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "city_id", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -38724,15 +23516,10 @@ }, "nativeDataType": "I2", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "district", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -38742,15 +23529,10 @@ }, "nativeDataType": "STR", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "address_id", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -38760,35 +23542,23 @@ }, "nativeDataType": "I4", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false } - ], - "primaryKeys": null, - "foreignKeysSpecs": null, - "foreignKeys": null + ] } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { - "urn": "urn:li:dataset:(urn:li:dataPlatform:postgres,dvdrental.public.actor,PROD)", + "urn": "urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.actor,PROD)", "aspects": [ { "com.linkedin.pegasus2avro.common.BrowsePaths": { @@ -38804,17 +23574,12 @@ "version": 0, "created": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, - "deleted": null, - "dataset": null, - "cluster": null, "hash": "", "platformSchema": { "com.linkedin.pegasus2avro.schema.OtherSchema": { @@ -38824,7 +23589,6 @@ "fields": [ { "fieldPath": "last_update", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -38834,15 +23598,10 @@ }, "nativeDataType": "DBTIMESTAMP", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "last_name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -38852,15 +23611,10 @@ }, "nativeDataType": "STR", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "first_name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -38870,15 +23624,10 @@ }, "nativeDataType": "STR", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "actor_id", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -38888,32 +23637,20 @@ }, "nativeDataType": "I4", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false } - ], - "primaryKeys": null, - "foreignKeysSpecs": null, - "foreignKeys": null + ] } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.task,PROD)", @@ -38932,17 +23669,12 @@ "version": 0, "created": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, - "deleted": null, - "dataset": null, - "cluster": null, "hash": "", "platformSchema": { "com.linkedin.pegasus2avro.schema.OtherSchema": { @@ -38952,7 +23684,6 @@ "fields": [ { "fieldPath": "time_worked", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -38962,15 +23693,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "work_notes_list", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -38980,15 +23706,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "group_list", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -38998,15 +23719,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "parent", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39016,15 +23732,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "expected_start", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39034,15 +23745,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "due_date", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39052,15 +23758,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "work_end", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39070,15 +23771,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "cmdb_ci", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39088,15 +23784,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "business_duration", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39106,15 +23797,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "work_start", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39124,15 +23810,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "closed_at", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39142,15 +23823,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "user_input", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39160,15 +23836,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "reassignment_count", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39178,15 +23849,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "approval", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39196,15 +23862,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "short_description", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39214,15 +23875,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "impact", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39232,15 +23888,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "knowledge", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39250,15 +23901,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "closed_by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39268,15 +23914,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "calendar_duration", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39286,15 +23927,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "delivery_task", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39304,15 +23940,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sla_due", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39322,15 +23953,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_class_name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39340,15 +23966,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "comments", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39358,15 +23979,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "upon_reject", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39376,15 +23992,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "upon_approval", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39394,15 +24005,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "approval_history", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39412,15 +24018,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_created_on", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39430,15 +24031,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "correlation_id", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39448,15 +24044,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "opened_at", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39466,15 +24057,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "approval_set", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39484,15 +24070,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "escalation", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39502,15 +24083,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_id", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39520,15 +24096,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "delivery_plan", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39538,15 +24109,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "comments_and_work_notes", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39556,15 +24122,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "close_notes", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39574,15 +24135,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "watch_list", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39592,15 +24148,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "description", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39610,15 +24161,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "opened_by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39628,15 +24174,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "activity_due", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39646,15 +24187,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_updated_on", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39664,15 +24200,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "work_notes", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39682,15 +24213,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_updated_by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39700,15 +24226,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "assigned_to", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39718,15 +24239,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "assignment_group", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39736,15 +24252,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "order", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39754,15 +24265,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_domain_path", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39772,15 +24278,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_mod_count", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39790,15 +24291,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "business_service", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39808,15 +24304,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "priority", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39826,15 +24317,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "correlation_display", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39844,15 +24330,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "active", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39862,15 +24343,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_domain", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39880,15 +24356,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "company", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39898,15 +24369,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "urgency", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39916,15 +24382,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "number", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39934,15 +24395,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "state", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39952,15 +24408,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "made_sla", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39970,15 +24421,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_created_by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -39988,15 +24434,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "additional_assignee_list", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40006,15 +24447,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "contact_type", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40024,15 +24460,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "location", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40042,15 +24473,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "follow_up", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40060,32 +24486,20 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false } - ], - "primaryKeys": null, - "foreignKeysSpecs": null, - "foreignKeys": null + ] } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sc_request,PROD)", @@ -40104,17 +24518,12 @@ "version": 0, "created": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, - "deleted": null, - "dataset": null, - "cluster": null, "hash": "", "platformSchema": { "com.linkedin.pegasus2avro.schema.OtherSchema": { @@ -40124,7 +24533,6 @@ "fields": [ { "fieldPath": "work_notes_list", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40134,15 +24542,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "closed_at", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40152,15 +24555,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "user_input", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40170,15 +24568,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "requested_for", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40188,15 +24581,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "opened_at", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40206,15 +24594,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "price", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40224,15 +24607,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "assigned_to", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40242,15 +24620,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "number", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40260,15 +24633,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "delivery_plan", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40278,15 +24646,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "delivery_address", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40296,15 +24659,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "business_duration", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40314,15 +24672,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "urgency", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40332,15 +24685,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "work_end", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40350,15 +24698,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "due_date", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40368,15 +24711,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "parent", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40386,15 +24724,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "made_sla", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40404,15 +24737,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "assignment_group", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40422,15 +24750,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_class_name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40440,15 +24763,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "additional_assignee_list", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40458,15 +24776,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "work_start", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40476,15 +24789,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_domain_path", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40494,15 +24802,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "time_worked", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40512,15 +24815,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "comments_and_work_notes", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40530,15 +24828,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "group_list", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40548,15 +24841,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "business_service", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40566,15 +24854,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "correlation_id", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40584,15 +24867,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "cmdb_ci", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40602,15 +24880,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "requested_date", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40620,15 +24893,10 @@ }, "nativeDataType": "WDC_DATE", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "follow_up", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40638,15 +24906,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_updated_on", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40656,15 +24919,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "state", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40674,15 +24932,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "comments", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40692,15 +24945,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "approval_set", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40710,15 +24958,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "close_notes", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40728,15 +24971,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "upon_approval", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40746,15 +24984,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "company", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40764,15 +24997,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "activity_due", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40782,15 +25010,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "contact_type", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40800,15 +25023,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "approval", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40818,15 +25036,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "calendar_duration", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40836,15 +25049,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "reassignment_count", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40854,15 +25062,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "delivery_task", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40872,15 +25075,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "approval_history", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40890,15 +25088,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_created_on", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40908,15 +25101,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "request_state", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40926,15 +25114,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "watch_list", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40944,15 +25127,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "upon_reject", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40962,15 +25140,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "expected_start", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40980,15 +25153,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "active", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -40998,15 +25166,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "opened_by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41016,15 +25179,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "work_notes", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41034,15 +25192,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "impact", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41052,15 +25205,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "description", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41070,15 +25218,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sla_due", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41088,15 +25231,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "correlation_display", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41106,15 +25244,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "priority", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41124,15 +25257,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "stage", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41142,15 +25270,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_created_by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41160,15 +25283,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_id", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41178,15 +25296,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "escalation", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41196,15 +25309,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "closed_by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41214,15 +25322,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "short_description", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41232,15 +25335,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "location", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41250,15 +25348,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "special_instructions", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41268,15 +25361,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "order", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41286,15 +25374,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_updated_by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41304,15 +25387,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_mod_count", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41322,15 +25400,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "knowledge", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41340,15 +25413,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_domain", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41358,15 +25426,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "calendar_stc", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41376,32 +25439,20 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false } - ], - "primaryKeys": null, - "foreignKeysSpecs": null, - "foreignKeys": null + ] } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sc_req_item,PROD)", @@ -41420,17 +25471,12 @@ "version": 0, "created": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, - "deleted": null, - "dataset": null, - "cluster": null, "hash": "", "platformSchema": { "com.linkedin.pegasus2avro.schema.OtherSchema": { @@ -41440,7 +25486,6 @@ "fields": [ { "fieldPath": "watch_list", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41450,15 +25495,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "due_date", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41468,15 +25508,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "made_sla", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41486,15 +25521,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "parent", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41504,15 +25534,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "assigned_to", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41522,15 +25547,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_mod_count", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41540,15 +25560,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "cmdb_ci", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41558,15 +25573,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_domain", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41576,15 +25586,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "configuration_item", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41594,15 +25599,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "closed_by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41612,15 +25612,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "active", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41630,15 +25625,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "expected_start", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41648,15 +25638,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "recurring_price", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41666,15 +25651,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "work_end", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41684,15 +25664,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "short_description", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41702,15 +25677,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "approval", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41720,15 +25690,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "opened_at", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41738,15 +25703,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "order", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41756,15 +25716,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "assignment_group", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41774,15 +25729,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sc_catalog", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41792,15 +25742,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "knowledge", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41810,15 +25755,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "stage", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41828,15 +25768,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "correlation_display", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41846,15 +25781,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "reassignment_count", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41864,15 +25794,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "delivery_plan", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41882,15 +25807,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_class_name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41900,15 +25820,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "user_input", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41918,15 +25833,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "description", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41936,15 +25846,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "activity_due", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41954,15 +25859,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "price", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41972,15 +25872,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "work_notes_list", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -41990,15 +25885,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "estimated_delivery", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42008,15 +25898,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "additional_assignee_list", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42026,15 +25911,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "context", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42044,15 +25924,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "business_duration", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42062,15 +25937,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "approval_set", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42080,15 +25950,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "priority", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42098,15 +25963,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_updated_on", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42116,15 +25976,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_id", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42134,15 +25989,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "state", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42152,15 +26002,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "business_service", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42170,15 +26015,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "billable", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42188,15 +26028,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "approval_history", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42206,15 +26041,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "recurring_frequency", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42224,15 +26054,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "contact_type", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42242,15 +26067,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "cat_item", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42260,15 +26080,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_updated_by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42278,15 +26093,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_domain_path", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42296,15 +26106,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "comments", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42314,15 +26119,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "impact", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42332,15 +26132,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "order_guide", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42350,15 +26145,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sla_due", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42368,15 +26158,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_created_by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42386,15 +26171,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "comments_and_work_notes", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42404,15 +26184,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "opened_by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42422,15 +26197,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "backordered", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42440,15 +26210,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "correlation_id", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42458,15 +26223,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "group_list", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42476,15 +26236,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "delivery_task", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42494,15 +26249,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "number", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42512,15 +26262,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_created_on", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42530,15 +26275,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "company", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42548,15 +26288,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "work_start", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42566,15 +26301,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "request", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42584,15 +26314,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "close_notes", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42602,15 +26327,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "work_notes", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42620,15 +26340,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "calendar_duration", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42638,15 +26353,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "quantity", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42656,15 +26366,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "follow_up", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42674,15 +26379,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "location", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42692,15 +26392,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "upon_reject", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42710,15 +26405,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "closed_at", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42728,15 +26418,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "time_worked", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42746,15 +26431,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "escalation", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42764,15 +26444,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "urgency", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42782,15 +26457,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "upon_approval", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42800,32 +26470,20 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false } - ], - "primaryKeys": null, - "foreignKeysSpecs": null, - "foreignKeys": null + ] } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sc_cat_item,PROD)", @@ -42844,17 +26502,12 @@ "version": 0, "created": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, - "deleted": null, - "dataset": null, - "cluster": null, "hash": "", "platformSchema": { "com.linkedin.pegasus2avro.schema.OtherSchema": { @@ -42864,7 +26517,6 @@ "fields": [ { "fieldPath": "sc_catalogs", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42874,15 +26526,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_updated_by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42892,15 +26539,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "type", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42910,15 +26552,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "mobile_picture_type", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42928,15 +26565,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "workflow", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42946,15 +26578,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_customer_update", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42964,15 +26591,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_class_name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -42982,15 +26604,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "visible_standalone", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43000,15 +26617,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "no_quantity", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43018,15 +26630,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "order", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43036,15 +26643,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_updated_on", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43054,15 +26656,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_scope", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43072,15 +26669,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "template", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43090,15 +26682,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "no_proceed_checkout", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43108,15 +26695,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "billable", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43126,15 +26708,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43144,15 +26721,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "delivery_plan", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43162,15 +26734,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "description", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43180,15 +26747,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "meta", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43198,15 +26760,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "ordered_item_link", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43216,15 +26773,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_mod_count", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43234,15 +26786,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sc_ic_version", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43252,15 +26799,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "image", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43270,15 +26812,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_id", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43288,15 +26825,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "short_description", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43306,15 +26838,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_policy", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43324,15 +26851,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "roles", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43342,15 +26864,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "picture", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43360,15 +26877,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "list_price", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43378,15 +26890,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "no_order_now", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43396,15 +26903,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "vendor", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43414,15 +26916,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sc_ic_item_staging", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43432,15 +26929,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "no_order", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43450,15 +26942,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "entitlement_script", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43468,15 +26955,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "active", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43486,15 +26968,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "icon", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43504,15 +26981,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "ignore_price", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43522,15 +26994,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "start_closed", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43540,15 +27007,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_package", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43558,15 +27020,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "group", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43576,15 +27033,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_replace_on_upgrade", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43594,15 +27046,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "cost", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43612,15 +27059,10 @@ }, "nativeDataType": "WDC_FLOAT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "use_sc_layout", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43630,15 +27072,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "location", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43648,15 +27085,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "availability", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43666,15 +27098,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "model", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43684,15 +27111,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "custom_cart", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43702,15 +27124,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "mobile_picture", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43720,15 +27137,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "category", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43738,15 +27150,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "no_cart", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43756,15 +27163,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "mobile_hide_price", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43774,15 +27176,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_created_by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43792,15 +27189,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "price", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43810,15 +27202,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "delivery_time", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43828,15 +27215,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "no_search", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43846,15 +27228,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_created_on", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43864,15 +27241,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "recurring_frequency", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43882,15 +27254,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "recurring_price", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43900,15 +27267,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "delivery_plan_script", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43918,15 +27280,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "visible_bundle", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43936,15 +27293,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_update_name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43954,15 +27306,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43972,15 +27319,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "visible_guide", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -43990,15 +27332,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "preview", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44008,15 +27345,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "omit_price", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44026,32 +27358,20 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false } - ], - "primaryKeys": null, - "foreignKeysSpecs": null, - "foreignKeys": null + ] } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.sys_user_group,PROD)", @@ -44070,17 +27390,12 @@ "version": 0, "created": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, - "deleted": null, - "dataset": null, - "cluster": null, "hash": "", "platformSchema": { "com.linkedin.pegasus2avro.schema.OtherSchema": { @@ -44090,7 +27405,6 @@ "fields": [ { "fieldPath": "u_u", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44100,15 +27414,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_updated_by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44118,15 +27427,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "source", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44136,15 +27440,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "exclude_manager", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44154,15 +27453,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "description", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44172,15 +27466,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "cost_center", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44190,15 +27479,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_created_by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44208,15 +27492,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "parent", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44226,15 +27505,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_mod_count", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44244,15 +27518,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_updated_on", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44262,15 +27531,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "u_lucha", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44280,15 +27544,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_id", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44298,15 +27557,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "u_lu2", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44316,15 +27570,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "type", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44334,15 +27583,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "roles", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44352,15 +27596,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_created_on", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44370,15 +27609,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "default_assignee", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44388,15 +27622,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "email", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44406,15 +27635,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "manager", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44424,15 +27648,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44442,15 +27661,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "active", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44460,15 +27674,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "include_members", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44478,32 +27687,20 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false } - ], - "primaryKeys": null, - "foreignKeysSpecs": null, - "foreignKeys": null + ] } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.problem,PROD)", @@ -44522,17 +27719,12 @@ "version": 0, "created": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, - "deleted": null, - "dataset": null, - "cluster": null, "hash": "", "platformSchema": { "com.linkedin.pegasus2avro.schema.OtherSchema": { @@ -44542,7 +27734,6 @@ "fields": [ { "fieldPath": "opened_by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44552,15 +27743,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_class_name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44570,15 +27756,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_created_by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44588,15 +27769,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_updated_on", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44606,15 +27782,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "closed_by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44624,15 +27795,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "close_notes", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44642,15 +27808,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "made_sla", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44660,15 +27821,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "state", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44678,15 +27834,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "related_incidents", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44696,15 +27847,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "business_duration", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44714,15 +27860,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_domain", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44732,15 +27873,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "delivery_task", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44750,15 +27886,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "priority", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44768,15 +27899,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_created_on", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44786,15 +27912,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_id", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44804,15 +27925,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "escalation", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44822,15 +27938,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "business_service", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44840,15 +27951,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "comments_and_work_notes", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44858,15 +27964,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "rfc", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44876,15 +27977,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_domain_path", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44894,15 +27990,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "cmdb_ci", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44912,15 +28003,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "problem_state", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44930,15 +28016,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "delivery_plan", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44948,15 +28029,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "user_input", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44966,15 +28042,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "active", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -44984,15 +28055,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "location", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45002,15 +28068,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "expected_start", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45020,15 +28081,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "calendar_duration", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45038,15 +28094,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "number", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45056,15 +28107,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sla_due", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45074,15 +28120,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "work_notes_list", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45092,15 +28133,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "knowledge", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45110,15 +28146,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_updated_by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45128,15 +28159,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "time_worked", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45146,15 +28172,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "order", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45164,15 +28185,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "assignment_group", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45182,15 +28198,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "upon_approval", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45200,15 +28211,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "company", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45218,15 +28224,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "opened_at", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45236,15 +28237,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "group_list", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45254,15 +28250,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "work_around", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45272,15 +28263,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "description", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45290,15 +28276,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "work_end", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45308,15 +28289,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "correlation_id", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45326,15 +28302,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "approval_set", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45344,15 +28315,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "urgency", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45362,15 +28328,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "impact", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45380,15 +28341,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "short_description", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45398,15 +28354,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "approval", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45416,15 +28367,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "closed_at", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45434,15 +28380,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "known_error", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45452,15 +28393,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "due_date", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45470,15 +28406,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "work_start", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45488,15 +28419,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "activity_due", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45506,15 +28432,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_mod_count", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45524,15 +28445,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "correlation_display", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45542,15 +28458,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "contact_type", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45560,15 +28471,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "additional_assignee_list", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45578,15 +28484,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "approval_history", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45596,15 +28497,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "reassignment_count", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45614,15 +28510,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "follow_up", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45632,15 +28523,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "comments", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45650,15 +28536,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "work_notes", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45668,15 +28549,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "parent", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45686,15 +28562,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "assigned_to", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45704,15 +28575,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "watch_list", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45722,15 +28588,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "upon_reject", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45740,32 +28601,20 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false } - ], - "primaryKeys": null, - "foreignKeysSpecs": null, - "foreignKeys": null + ] } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.incident,PROD)", @@ -45784,17 +28633,12 @@ "version": 0, "created": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, - "deleted": null, - "dataset": null, - "cluster": null, "hash": "", "platformSchema": { "com.linkedin.pegasus2avro.schema.OtherSchema": { @@ -45804,7 +28648,6 @@ "fields": [ { "fieldPath": "sys_id", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45814,15 +28657,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "correlation_id", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45832,15 +28670,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "urgency", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45850,15 +28683,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "severity", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45868,15 +28696,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "business_service", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45886,15 +28709,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "location", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45904,15 +28722,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "approval_set", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45922,15 +28735,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "closed_at", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45940,15 +28748,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "parent_incident", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45958,15 +28761,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "subcategory", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45976,15 +28774,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "company", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -45994,15 +28787,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "caller_id", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46012,15 +28800,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "resolved_at", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46030,15 +28813,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "group_list", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46048,15 +28826,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "correlation_display", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46066,15 +28839,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "resolved_by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46084,15 +28852,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_created_on", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46102,15 +28865,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "business_stc", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46120,15 +28878,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_domain_path", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46138,15 +28891,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "parent", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46156,15 +28904,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "category", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46174,15 +28917,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "user_input", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46192,15 +28930,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "number", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46210,15 +28943,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "escalation", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46228,15 +28956,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "state", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46246,15 +28969,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "approval_history", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46264,15 +28982,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "impact", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46282,15 +28995,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "expected_start", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46300,15 +29008,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "additional_assignee_list", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46318,15 +29021,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "child_incidents", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46336,15 +29034,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "cmdb_ci", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46354,15 +29047,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "incident_state", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46372,15 +29060,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "notify", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46390,15 +29073,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "work_notes", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46408,15 +29086,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "reassignment_count", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46426,15 +29099,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "contact_type", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46444,15 +29112,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "opened_by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46462,15 +29125,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_class_name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46480,15 +29138,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "problem_id", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46498,15 +29151,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "due_date", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46516,15 +29164,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "approval", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46534,15 +29177,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "description", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46552,15 +29190,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "order", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46570,15 +29203,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "opened_at", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46588,15 +29216,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "work_notes_list", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46606,15 +29229,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "priority", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46624,15 +29242,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "time_worked", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46642,15 +29255,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_domain", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46660,15 +29268,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "caused_by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46678,15 +29281,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_updated_by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46696,15 +29294,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "upon_reject", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46714,15 +29307,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "delivery_task", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46732,15 +29320,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "knowledge", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46750,15 +29333,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_updated_on", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46768,15 +29346,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "calendar_duration", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46786,15 +29359,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "closed_by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46804,15 +29372,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "comments", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46822,15 +29385,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "short_description", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46840,15 +29398,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "assigned_to", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46858,15 +29411,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "assignment_group", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46876,15 +29424,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "work_end", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46894,15 +29437,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "reopen_count", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46912,15 +29450,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "work_start", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46930,15 +29463,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "made_sla", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46948,15 +29476,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_mod_count", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46966,15 +29489,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "calendar_stc", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -46984,15 +29502,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "rfc", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47002,15 +29515,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "delivery_plan", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47020,15 +29528,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "close_code", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47038,15 +29541,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "close_notes", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47056,15 +29554,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "activity_due", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47074,15 +29567,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_created_by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47092,15 +29580,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "active", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47110,15 +29593,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "business_duration", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47128,15 +29606,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "follow_up", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47146,15 +29619,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "comments_and_work_notes", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47164,15 +29632,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "upon_approval", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47182,15 +29645,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "watch_list", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47200,15 +29658,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sla_due", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47218,32 +29671,20 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false } - ], - "primaryKeys": null, - "foreignKeysSpecs": null, - "foreignKeys": null + ] } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { "urn": "urn:li:dataset:(urn:li:dataPlatform:webdata-direct:servicenowitsm-servicenowitsm,ven01911.cmdb_ci,PROD)", @@ -47262,17 +29703,12 @@ "version": 0, "created": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, - "deleted": null, - "dataset": null, - "cluster": null, "hash": "", "platformSchema": { "com.linkedin.pegasus2avro.schema.OtherSchema": { @@ -47282,7 +29718,6 @@ "fields": [ { "fieldPath": "first_discovered", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47292,15 +29727,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "operational_status", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47310,15 +29740,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "last_discovered", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47328,15 +29753,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "cost_cc", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47346,15 +29766,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "checked_in", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47364,15 +29779,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "attributes", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47382,15 +29792,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "serial_number", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47400,15 +29805,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "vendor", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47418,15 +29818,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "ip_address", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47436,15 +29831,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "support_group", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47454,15 +29844,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_updated_by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47472,15 +29857,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "asset", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47490,15 +29870,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_domain", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47508,15 +29883,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "supported_by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47526,15 +29896,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "invoice_number", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47544,15 +29909,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "managed_by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47562,15 +29922,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "fault_count", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47580,15 +29935,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "due_in", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47598,15 +29948,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "cost", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47616,15 +29961,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "correlation_id", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47634,15 +29974,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "justification", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47652,15 +29987,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_created_on", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47670,15 +30000,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "assigned", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47688,15 +30013,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "model_id", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47706,15 +30026,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_class_name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47724,15 +30039,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "comments", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47742,15 +30052,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_id", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47760,15 +30065,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "company", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47778,15 +30078,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "lease_id", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47796,15 +30091,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "monitor", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47814,15 +30104,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "cost_center", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47832,15 +30117,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "subcategory", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47850,15 +30130,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "delivery_date", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47868,15 +30143,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "assignment_group", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47886,15 +30156,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "can_print", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47904,15 +30169,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "short_description", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47922,15 +30182,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "model_number", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47940,15 +30195,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47958,15 +30208,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "start_date", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47976,15 +30221,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "discovery_source", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -47994,15 +30234,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_domain_path", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -48012,15 +30247,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "assigned_to", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -48030,15 +30260,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "category", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -48048,15 +30273,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "schedule", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -48066,15 +30286,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "fqdn", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -48084,15 +30299,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "warranty_expiration", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -48102,15 +30312,10 @@ }, "nativeDataType": "WDC_DATE", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "owned_by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -48120,15 +30325,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "asset_tag", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -48138,15 +30338,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "manufacturer", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -48156,15 +30351,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "purchase_date", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -48174,15 +30364,10 @@ }, "nativeDataType": "WDC_DATE", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "location", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -48192,15 +30377,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "department", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -48210,15 +30390,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_updated_on", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -48228,15 +30403,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "checked_out", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -48246,15 +30416,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "unverified", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -48264,15 +30429,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "skip_sync", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -48282,15 +30442,10 @@ }, "nativeDataType": "WDC_BOOL", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "po_number", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -48300,15 +30455,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "order_date", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -48318,15 +30468,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "gl_account", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -48336,15 +30481,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "maintenance_schedule", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -48354,15 +30494,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "install_date", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -48372,15 +30507,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "dns_domain", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -48390,15 +30520,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_created_by", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -48408,15 +30533,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "mac_address", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -48426,15 +30546,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "change_control", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -48444,15 +30559,10 @@ }, "nativeDataType": "WDC_STRING", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "install_status", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -48462,15 +30572,10 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "due", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -48480,15 +30585,10 @@ }, "nativeDataType": "WDC_DATETIME", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "sys_mod_count", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -48498,32 +30598,20 @@ }, "nativeDataType": "WDC_INT", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false } - ], - "primaryKeys": null, - "foreignKeysSpecs": null, - "foreignKeys": null + ] } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD)", @@ -48540,14 +30628,12 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } }, @@ -48560,11 +30646,8 @@ "extractLastUpdateTime": "", "type": "PublishedDatasource" }, - "externalUrl": null, "name": "test publish datasource", - "qualifiedName": null, "description": "description for test publish datasource", - "uri": null, "tags": [] } }, @@ -48575,17 +30658,12 @@ "version": 0, "created": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, - "deleted": null, - "dataset": null, - "cluster": null, "hash": "", "platformSchema": { "com.linkedin.pegasus2avro.schema.OtherSchema": { @@ -48595,7 +30673,6 @@ "fields": [ { "fieldPath": "payment_date", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -48608,27 +30685,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" }, { - "tag": "urn:li:tag:YEAR", - "context": null + "tag": "urn:li:tag:YEAR" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "staff_first_name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -48641,27 +30711,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" }, { - "tag": "urn:li:tag:COUNT", - "context": null + "tag": "urn:li:tag:COUNT" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "customer_id", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -48674,27 +30737,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" }, { - "tag": "urn:li:tag:SUM", - "context": null + "tag": "urn:li:tag:SUM" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "amount", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -48707,34 +30763,25 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" }, { - "tag": "urn:li:tag:SUM", - "context": null + "tag": "urn:li:tag:SUM" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Published SQL Query", - "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.ArrayType": { - "nestedType": null - } + "com.linkedin.pegasus2avro.schema.ArrayType": {} } }, "nativeDataType": "TABLE", @@ -48742,23 +30789,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "customer_last_name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -48771,27 +30812,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" }, { - "tag": "urn:li:tag:COUNT", - "context": null + "tag": "urn:li:tag:COUNT" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "customer_first_name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -48804,27 +30838,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" }, { - "tag": "urn:li:tag:COUNT", - "context": null + "tag": "urn:li:tag:COUNT" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "staff_last_name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -48837,47 +30864,32 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" }, { - "tag": "urn:li:tag:COUNT", - "context": null + "tag": "urn:li:tag:COUNT" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false } - ], - "primaryKeys": null, - "foreignKeysSpecs": null, - "foreignKeys": null + ] } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "dataset", "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "subTypes", "aspect": { @@ -48886,17 +30898,12 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "dataset", "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "upstreamLineage", "aspect": { @@ -48905,14 +30912,10 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD)", @@ -48929,14 +30932,12 @@ "owners": [ { "owner": "urn:li:corpuser:jawadqu@gmail.com", - "type": "DATAOWNER", - "source": null + "type": "DATAOWNER" } ], "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" } } }, @@ -48949,11 +30950,8 @@ "extractLastUpdateTime": "", "type": "PublishedDatasource" }, - "externalUrl": null, "name": "Superstore Datasource", - "qualifiedName": null, "description": "Description for Superstore dataset", - "uri": null, "tags": [] } }, @@ -48964,17 +30962,12 @@ "version": 0, "created": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, - "deleted": null, - "dataset": null, - "cluster": null, "hash": "", "platformSchema": { "com.linkedin.pegasus2avro.schema.OtherSchema": { @@ -48984,7 +30977,6 @@ "fields": [ { "fieldPath": "Top Customers by Profit", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -48997,26 +30989,19 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:SETFIELD", - "context": null + "tag": "urn:li:tag:SETFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Returns", - "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.ArrayType": { - "nestedType": null - } + "com.linkedin.pegasus2avro.schema.ArrayType": {} } }, "nativeDataType": "TABLE", @@ -49024,23 +31009,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Segment", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -49053,27 +31032,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" }, { - "tag": "urn:li:tag:COUNT", - "context": null + "tag": "urn:li:tag:COUNT" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Profit Ratio", - "jsonPath": null, "nullable": false, "description": "formula: SUM([Profit])/SUM([Sales])", "type": { @@ -49086,23 +31058,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:CALCULATEDFIELD", - "context": null + "tag": "urn:li:tag:CALCULATEDFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "City", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -49115,23 +31081,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Profit", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -49144,23 +31104,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Quantity", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -49173,27 +31127,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" }, { - "tag": "urn:li:tag:SUM", - "context": null + "tag": "urn:li:tag:SUM" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Returned", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -49206,27 +31153,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" }, { - "tag": "urn:li:tag:COUNT", - "context": null + "tag": "urn:li:tag:COUNT" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Category", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -49239,27 +31179,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" }, { - "tag": "urn:li:tag:COUNT", - "context": null + "tag": "urn:li:tag:COUNT" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Product Name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -49272,30 +31205,22 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Orders", - "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.ArrayType": { - "nestedType": null - } + "com.linkedin.pegasus2avro.schema.ArrayType": {} } }, "nativeDataType": "TABLE", @@ -49303,23 +31228,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Product ID", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -49332,23 +31251,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Profit (bin)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -49361,19 +31274,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:BINFIELD", - "context": null + "tag": "urn:li:tag:BINFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Order ID (Returns)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -49386,23 +31294,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Person", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -49415,27 +31317,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" }, { - "tag": "urn:li:tag:COUNT", - "context": null + "tag": "urn:li:tag:COUNT" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Sub-Category", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -49448,27 +31343,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" }, { - "tag": "urn:li:tag:COUNT", - "context": null + "tag": "urn:li:tag:COUNT" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Postal Code", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -49481,27 +31369,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" }, { - "tag": "urn:li:tag:SUM", - "context": null + "tag": "urn:li:tag:SUM" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Product", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -49514,19 +31395,14 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:HIERARCHYFIELD", - "context": null + "tag": "urn:li:tag:HIERARCHYFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Ship Date", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -49539,27 +31415,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" }, { - "tag": "urn:li:tag:YEAR", - "context": null + "tag": "urn:li:tag:YEAR" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Location", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -49572,26 +31441,19 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:HIERARCHYFIELD", - "context": null + "tag": "urn:li:tag:HIERARCHYFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "People", - "jsonPath": null, "nullable": false, "description": "", "type": { "type": { - "com.linkedin.pegasus2avro.schema.ArrayType": { - "nestedType": null - } + "com.linkedin.pegasus2avro.schema.ArrayType": {} } }, "nativeDataType": "TABLE", @@ -49599,23 +31461,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Country/Region", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -49628,23 +31484,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Customer ID", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -49657,23 +31507,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Region", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -49686,23 +31530,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Ship Mode", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -49715,27 +31553,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" }, { - "tag": "urn:li:tag:COUNT", - "context": null + "tag": "urn:li:tag:COUNT" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Order ID", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -49748,27 +31579,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" }, { - "tag": "urn:li:tag:COUNT", - "context": null + "tag": "urn:li:tag:COUNT" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Sales", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -49781,27 +31605,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" }, { - "tag": "urn:li:tag:SUM", - "context": null + "tag": "urn:li:tag:SUM" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Customer Name", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -49814,23 +31631,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Row ID", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -49843,23 +31654,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Manufacturer", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -49872,23 +31677,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:GROUPFIELD", - "context": null + "tag": "urn:li:tag:GROUPFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Region (People)", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -49901,23 +31700,17 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Discount", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -49930,27 +31723,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:MEASURE", - "context": null + "tag": "urn:li:tag:MEASURE" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" }, { - "tag": "urn:li:tag:SUM", - "context": null + "tag": "urn:li:tag:SUM" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "Order Date", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -49963,27 +31749,20 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" }, { - "tag": "urn:li:tag:YEAR", - "context": null + "tag": "urn:li:tag:YEAR" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "State", - "jsonPath": null, "nullable": false, "description": "", "type": { @@ -49996,43 +31775,29 @@ "globalTags": { "tags": [ { - "tag": "urn:li:tag:DIMENSION", - "context": null + "tag": "urn:li:tag:DIMENSION" }, { - "tag": "urn:li:tag:COLUMNFIELD", - "context": null + "tag": "urn:li:tag:COLUMNFIELD" } ] }, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false } - ], - "primaryKeys": null, - "foreignKeysSpecs": null, - "foreignKeys": null + ] } } ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "dataset", "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,6cbbeeb2-9f3a-00f6-2342-17139d6e97ae,PROD)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "subTypes", "aspect": { @@ -50041,17 +31806,12 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "dataset", "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,4644ccb1-2adc-cf26-c654-04ed1dcc7090,PROD)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "upstreamLineage", "aspect": { @@ -50060,17 +31820,12 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "dataset", "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,22b0b4c3-6b85-713d-a161-5a87fdd78f40,PROD)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "container", "aspect": { @@ -50079,33 +31834,24 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "dataset", "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,22b0b4c3-6b85-713d-a161-5a87fdd78f40,PROD)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "upstreamLineage", "aspect": { - "value": "{\"upstreams\": [{\"auditStamp\": {\"time\": 0, \"actor\": \"urn:li:corpuser:unknown\"}, \"dataset\": \"urn:li:dataset:(urn:li:dataPlatform:postgres,dvdrental.public.customer,PROD)\", \"type\": \"TRANSFORMED\"}, {\"auditStamp\": {\"time\": 0, \"actor\": \"urn:li:corpuser:unknown\"}, \"dataset\": \"urn:li:dataset:(urn:li:dataPlatform:postgres,dvdrental.public.payment,PROD)\", \"type\": \"TRANSFORMED\"}]}", + "value": "{\"upstreams\": [{\"auditStamp\": {\"time\": 0, \"actor\": \"urn:li:corpuser:unknown\"}, \"dataset\": \"urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.customer,PROD)\", \"type\": \"TRANSFORMED\"}, {\"auditStamp\": {\"time\": 0, \"actor\": \"urn:li:corpuser:unknown\"}, \"dataset\": \"urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.payment,PROD)\", \"type\": \"TRANSFORMED\"}]}", "contentType": "application/json" }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,22b0b4c3-6b85-713d-a161-5a87fdd78f40,PROD)", @@ -50117,17 +31863,12 @@ "version": 0, "created": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, - "deleted": null, - "dataset": null, - "cluster": null, "hash": "", "platformSchema": { "com.linkedin.pegasus2avro.schema.OtherSchema": { @@ -50137,9 +31878,7 @@ "fields": [ { "fieldPath": "amount", - "jsonPath": null, "nullable": false, - "description": null, "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -50147,17 +31886,11 @@ }, "nativeDataType": "NUMERIC", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "last_name", - "jsonPath": null, "nullable": false, - "description": null, "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -50165,17 +31898,11 @@ }, "nativeDataType": "STR", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "rental_id", - "jsonPath": null, "nullable": false, - "description": null, "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -50183,17 +31910,11 @@ }, "nativeDataType": "I4", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "first_name", - "jsonPath": null, "nullable": false, - "description": null, "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -50201,17 +31922,11 @@ }, "nativeDataType": "STR", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "payment_date", - "jsonPath": null, "nullable": false, - "description": null, "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -50219,17 +31934,11 @@ }, "nativeDataType": "DBTIMESTAMP", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "customer_id", - "jsonPath": null, "nullable": false, - "description": null, "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -50237,16 +31946,9 @@ }, "nativeDataType": "I4", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false } - ], - "primaryKeys": null, - "foreignKeysSpecs": null, - "foreignKeys": null + ] } }, { @@ -50259,11 +31961,7 @@ { "com.linkedin.pegasus2avro.dataset.DatasetProperties": { "customProperties": {}, - "externalUrl": null, "name": "Custom SQL Query", - "qualifiedName": null, - "description": null, - "uri": null, "tags": [] } }, @@ -50277,39 +31975,28 @@ ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "dataset", "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,22b0b4c3-6b85-713d-a161-5a87fdd78f40,PROD)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "subTypes", "aspect": { - "value": "{\"typeNames\": [\"View\", \"Custom SQL\"]}", + "value": "{\"typeNames\": [\"view\", \"Custom SQL\"]}", "contentType": "application/json" }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "dataset", "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,00cce29f-b561-bb41-3557-8e19660bb5dd,PROD)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "upstreamLineage", "aspect": { @@ -50318,33 +32005,24 @@ }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "dataset", "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,4fb670d5-3e19-9656-e684-74aa9729cf18,PROD)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "upstreamLineage", "aspect": { - "value": "{\"upstreams\": [{\"auditStamp\": {\"time\": 0, \"actor\": \"urn:li:corpuser:unknown\"}, \"dataset\": \"urn:li:dataset:(urn:li:dataPlatform:postgres,dvdrental.public.customer,PROD)\", \"type\": \"TRANSFORMED\"}, {\"auditStamp\": {\"time\": 0, \"actor\": \"urn:li:corpuser:unknown\"}, \"dataset\": \"urn:li:dataset:(urn:li:dataPlatform:postgres,dvdrental.public.payment,PROD)\", \"type\": \"TRANSFORMED\"}, {\"auditStamp\": {\"time\": 0, \"actor\": \"urn:li:corpuser:unknown\"}, \"dataset\": \"urn:li:dataset:(urn:li:dataPlatform:postgres,dvdrental.public.staff,PROD)\", \"type\": \"TRANSFORMED\"}]}", + "value": "{\"upstreams\": [{\"auditStamp\": {\"time\": 0, \"actor\": \"urn:li:corpuser:unknown\"}, \"dataset\": \"urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.customer,PROD)\", \"type\": \"TRANSFORMED\"}, {\"auditStamp\": {\"time\": 0, \"actor\": \"urn:li:corpuser:unknown\"}, \"dataset\": \"urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.payment,PROD)\", \"type\": \"TRANSFORMED\"}, {\"auditStamp\": {\"time\": 0, \"actor\": \"urn:li:corpuser:unknown\"}, \"dataset\": \"urn:li:dataset:(urn:li:dataPlatform:postgres,demo_postgres_instance.dvdrental.public.staff,PROD)\", \"type\": \"TRANSFORMED\"}]}", "contentType": "application/json" }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "proposedSnapshot": { "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { "urn": "urn:li:dataset:(urn:li:dataPlatform:tableau,4fb670d5-3e19-9656-e684-74aa9729cf18,PROD)", @@ -50356,17 +32034,12 @@ "version": 0, "created": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, "lastModified": { "time": 0, - "actor": "urn:li:corpuser:unknown", - "impersonator": null + "actor": "urn:li:corpuser:unknown" }, - "deleted": null, - "dataset": null, - "cluster": null, "hash": "", "platformSchema": { "com.linkedin.pegasus2avro.schema.OtherSchema": { @@ -50376,9 +32049,7 @@ "fields": [ { "fieldPath": "customer_id", - "jsonPath": null, "nullable": false, - "description": null, "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -50386,17 +32057,11 @@ }, "nativeDataType": "I4", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "staff_first_name", - "jsonPath": null, "nullable": false, - "description": null, "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -50404,17 +32069,11 @@ }, "nativeDataType": "STR", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "amount", - "jsonPath": null, "nullable": false, - "description": null, "type": { "type": { "com.linkedin.pegasus2avro.schema.NumberType": {} @@ -50422,17 +32081,11 @@ }, "nativeDataType": "NUMERIC", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "customer_first_name", - "jsonPath": null, "nullable": false, - "description": null, "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -50440,17 +32093,11 @@ }, "nativeDataType": "STR", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "payment_date", - "jsonPath": null, "nullable": false, - "description": null, "type": { "type": { "com.linkedin.pegasus2avro.schema.TimeType": {} @@ -50458,17 +32105,11 @@ }, "nativeDataType": "DBTIMESTAMP", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "staff_last_name", - "jsonPath": null, "nullable": false, - "description": null, "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -50476,17 +32117,11 @@ }, "nativeDataType": "STR", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false }, { "fieldPath": "customer_last_name", - "jsonPath": null, "nullable": false, - "description": null, "type": { "type": { "com.linkedin.pegasus2avro.schema.StringType": {} @@ -50494,16 +32129,9 @@ }, "nativeDataType": "STR", "recursive": false, - "globalTags": null, - "glossaryTerms": null, - "isPartOfKey": false, - "isPartitioningKey": null, - "jsonProps": null + "isPartOfKey": false } - ], - "primaryKeys": null, - "foreignKeysSpecs": null, - "foreignKeys": null + ] } }, { @@ -50516,11 +32144,7 @@ { "com.linkedin.pegasus2avro.dataset.DatasetProperties": { "customProperties": {}, - "externalUrl": null, "name": "Custom SQL Query", - "qualifiedName": null, - "description": null, - "uri": null, "tags": [] } }, @@ -50534,32 +32158,23 @@ ] } }, - "proposedDelta": null, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } }, { - "auditHeader": null, "entityType": "dataset", "entityUrn": "urn:li:dataset:(urn:li:dataPlatform:tableau,4fb670d5-3e19-9656-e684-74aa9729cf18,PROD)", - "entityKeyAspect": null, "changeType": "UPSERT", "aspectName": "subTypes", "aspect": { - "value": "{\"typeNames\": [\"View\", \"Custom SQL\"]}", + "value": "{\"typeNames\": [\"view\", \"Custom SQL\"]}", "contentType": "application/json" }, "systemMetadata": { "lastObserved": 1638860400000, - "runId": "tableau-test", - "registryName": null, - "registryVersion": null, - "properties": null + "runId": "tableau-test" } } ] \ No newline at end of file diff --git a/metadata-ingestion/tests/integration/tableau/test_tableau.py b/metadata-ingestion/tests/integration/tableau/test_tableau.py index d87e8d8dc2f248..6136d0c0a4b47e 100644 --- a/metadata-ingestion/tests/integration/tableau/test_tableau.py +++ b/metadata-ingestion/tests/integration/tableau/test_tableau.py @@ -5,7 +5,12 @@ import pytest from freezegun import freeze_time +from datahub.configuration.source_common import DEFAULT_ENV from datahub.ingestion.run.pipeline import Pipeline +from datahub.ingestion.source.tableau_common import ( + TableauLineageOverrides, + make_table_urn, +) from tests.test_helpers import mce_helpers FROZEN_TIME = "2021-12-07 07:00:00" @@ -27,6 +32,12 @@ def side_effect_query_metadata(query): if "workbooksConnection (first:3" in query: return _read_response("workbooksConnection_all.json") + if "embeddedDatasourcesConnection (first:0" in query: + return _read_response("embeddedDatasourcesConnection_0.json") + + if "embeddedDatasourcesConnection (first:8" in query: + return _read_response("embeddedDatasourcesConnection_all.json") + if "publishedDatasourcesConnection (first:0" in query: return _read_response("publishedDatasourcesConnection_0.json") @@ -79,6 +90,7 @@ def test_tableau_ingest(pytestconfig, tmp_path): "dvdrental": "public", "someotherdb": "schema", }, + "platform_instance_map": {"postgres": "demo_postgres_instance"}, }, }, "sink": { @@ -98,3 +110,52 @@ def test_tableau_ingest(pytestconfig, tmp_path): golden_path=test_resources_dir / "tableau_mces_golden.json", ignore_paths=mce_helpers.IGNORE_PATH_TIMESTAMPS, ) + + +def test_lineage_overrides(): + + # Simple - specify platform instance to presto table + assert ( + make_table_urn( + DEFAULT_ENV, + "presto_catalog", + "presto", + "test-schema", + "presto_catalog.test-schema.test-table", + platform_instance_map={"presto": "my_presto_instance"}, + ) + == "urn:li:dataset:(urn:li:dataPlatform:presto,my_presto_instance.presto_catalog.test-schema.test-table,PROD)" + ) + + # Transform presto urn to hive urn + # resulting platform instance for hive = mapped platform instance + presto_catalog + assert ( + make_table_urn( + DEFAULT_ENV, + "presto_catalog", + "presto", + "test-schema", + "presto_catalog.test-schema.test-table", + platform_instance_map={"presto": "my_instance"}, + lineage_overrides=TableauLineageOverrides( + platform_override_map={"presto": "hive"}, + ), + ) + == "urn:li:dataset:(urn:li:dataPlatform:hive,my_instance.presto_catalog.test-schema.test-table,PROD)" + ) + + # tranform hive urn to presto urn + assert ( + make_table_urn( + DEFAULT_ENV, + "", + "hive", + "test-schema", + "test-schema.test-table", + platform_instance_map={"hive": "my_presto_instance.presto_catalog"}, + lineage_overrides=TableauLineageOverrides( + platform_override_map={"hive": "presto"}, + ), + ) + == "urn:li:dataset:(urn:li:dataPlatform:presto,my_presto_instance.presto_catalog.test-schema.test-table,PROD)" + )