diff --git a/.github/workflows/docker-unified.yml b/.github/workflows/docker-unified.yml index c2adf628470e6..075da20cdd11c 100644 --- a/.github/workflows/docker-unified.yml +++ b/.github/workflows/docker-unified.yml @@ -968,6 +968,13 @@ jobs: docker pull '${{ env.DATAHUB_ELASTIC_SETUP_IMAGE }}:head' docker tag '${{ env.DATAHUB_ELASTIC_SETUP_IMAGE }}:head' '${{ env.DATAHUB_ELASTIC_SETUP_IMAGE }}:${{ needs.setup.outputs.unique_tag }}' fi + if [ '${{ needs.setup.outputs.integrations_service_change }}' == 'false' ]; then + echo 'datahub-integration-service head images' + docker pull '${{ env.DATAHUB_INTEGRATIONS_IMAGE }}:head' + docker tag '${{ env.DATAHUB_INTEGRATIONS_IMAGE }}:head' '${{ env.DATAHUB_INTEGRATIONS_IMAGE }}:${{ needs.setup.outputs.unique_tag }}' + fi + - name: CI Slim Head Images + run: | if [ '${{ needs.setup.outputs.ingestion_change }}' == 'false' ]; then echo 'datahub-ingestion head-slim images' docker pull '${{ env.DATAHUB_INGESTION_IMAGE }}:head-slim' diff --git a/datahub-graphql-core/src/main/java/com/linkedin/datahub/graphql/QueryContext.java b/datahub-graphql-core/src/main/java/com/linkedin/datahub/graphql/QueryContext.java index 7dffd90cf2d7c..5ad82b5d70375 100644 --- a/datahub-graphql-core/src/main/java/com/linkedin/datahub/graphql/QueryContext.java +++ b/datahub-graphql-core/src/main/java/com/linkedin/datahub/graphql/QueryContext.java @@ -3,6 +3,7 @@ import com.datahub.authentication.Actor; import com.datahub.authentication.Authentication; import com.datahub.plugins.auth.authorization.Authorizer; +import com.linkedin.metadata.config.DataHubAppConfiguration; import io.datahubproject.metadata.context.OperationContext; /** Provided as input to GraphQL resolvers; used to carry information about GQL request context. */ @@ -31,4 +32,6 @@ default String getActorUrn() { * @return Returns the operational context */ OperationContext getOperationContext(); + + DataHubAppConfiguration getDataHubAppConfig(); } diff --git a/datahub-graphql-core/src/main/java/com/linkedin/datahub/graphql/resolvers/ResolverUtils.java b/datahub-graphql-core/src/main/java/com/linkedin/datahub/graphql/resolvers/ResolverUtils.java index 3617eb4725979..346b353da93e4 100644 --- a/datahub-graphql-core/src/main/java/com/linkedin/datahub/graphql/resolvers/ResolverUtils.java +++ b/datahub-graphql-core/src/main/java/com/linkedin/datahub/graphql/resolvers/ResolverUtils.java @@ -7,7 +7,6 @@ import com.fasterxml.jackson.core.StreamReadConstraints; import com.fasterxml.jackson.databind.ObjectMapper; import com.google.common.collect.ImmutableSet; -import com.linkedin.common.urn.Urn; import com.linkedin.common.urn.UrnUtils; import com.linkedin.data.template.StringArray; import com.linkedin.datahub.graphql.QueryContext; @@ -23,7 +22,6 @@ import com.linkedin.metadata.query.filter.CriterionArray; import com.linkedin.metadata.query.filter.Filter; import com.linkedin.metadata.search.utils.ESUtils; -import com.linkedin.metadata.search.utils.QueryUtils; import com.linkedin.metadata.service.ViewService; import com.linkedin.view.DataHubViewInfo; import graphql.schema.DataFetchingEnvironment; @@ -222,27 +220,6 @@ private static String getFilterField( return ESUtils.toKeywordField(originalField, skipKeywordSuffix, aspectRetriever); } - public static Filter buildFilterWithUrns(@Nonnull Set urns, @Nullable Filter inputFilters) { - Criterion urnMatchCriterion = - new Criterion() - .setField("urn") - .setValue("") - .setValues( - new StringArray(urns.stream().map(Object::toString).collect(Collectors.toList()))); - if (inputFilters == null) { - return QueryUtils.newFilter(urnMatchCriterion); - } - - // Add urn match criterion to each or clause - if (inputFilters.getOr() != null && !inputFilters.getOr().isEmpty()) { - for (ConjunctiveCriterion conjunctiveCriterion : inputFilters.getOr()) { - conjunctiveCriterion.getAnd().add(urnMatchCriterion); - } - return inputFilters; - } - return QueryUtils.newFilter(urnMatchCriterion); - } - public static Filter viewFilter( OperationContext opContext, ViewService viewService, String viewUrn) { if (viewUrn == null) { diff --git a/datahub-graphql-core/src/main/java/com/linkedin/datahub/graphql/resolvers/assertion/UpsertCustomAssertionResolver.java b/datahub-graphql-core/src/main/java/com/linkedin/datahub/graphql/resolvers/assertion/UpsertCustomAssertionResolver.java index 026f486e32c11..29a9fff5e013a 100644 --- a/datahub-graphql-core/src/main/java/com/linkedin/datahub/graphql/resolvers/assertion/UpsertCustomAssertionResolver.java +++ b/datahub-graphql-core/src/main/java/com/linkedin/datahub/graphql/resolvers/assertion/UpsertCustomAssertionResolver.java @@ -101,7 +101,7 @@ private CustomAssertionInfo createCustomAssertionInfo( if (input.getFieldPath() != null) { customAssertionInfo.setField( - SchemaFieldUtils.generateSchemaFieldUrn(entityUrn.toString(), input.getFieldPath())); + SchemaFieldUtils.generateSchemaFieldUrn(entityUrn, input.getFieldPath())); } return customAssertionInfo; } diff --git a/datahub-graphql-core/src/main/java/com/linkedin/datahub/graphql/resolvers/dataproduct/ListDataProductAssetsResolver.java b/datahub-graphql-core/src/main/java/com/linkedin/datahub/graphql/resolvers/dataproduct/ListDataProductAssetsResolver.java index 320d89cdec164..5c43fafb678c5 100644 --- a/datahub-graphql-core/src/main/java/com/linkedin/datahub/graphql/resolvers/dataproduct/ListDataProductAssetsResolver.java +++ b/datahub-graphql-core/src/main/java/com/linkedin/datahub/graphql/resolvers/dataproduct/ListDataProductAssetsResolver.java @@ -1,7 +1,7 @@ package com.linkedin.datahub.graphql.resolvers.dataproduct; import static com.linkedin.datahub.graphql.resolvers.ResolverUtils.bindArgument; -import static com.linkedin.datahub.graphql.resolvers.ResolverUtils.buildFilterWithUrns; +import static com.linkedin.metadata.search.utils.QueryUtils.buildFilterWithUrns; import com.google.common.collect.ImmutableList; import com.linkedin.common.urn.Urn; @@ -11,6 +11,8 @@ import com.linkedin.datahub.graphql.concurrency.GraphQLConcurrencyUtils; import com.linkedin.datahub.graphql.generated.DataProduct; import com.linkedin.datahub.graphql.generated.EntityType; +import com.linkedin.datahub.graphql.generated.ExtraProperty; +import com.linkedin.datahub.graphql.generated.FacetFilterInput; import com.linkedin.datahub.graphql.generated.SearchAcrossEntitiesInput; import com.linkedin.datahub.graphql.generated.SearchResults; import com.linkedin.datahub.graphql.resolvers.ResolverUtils; @@ -30,8 +32,12 @@ import java.util.Collections; import java.util.HashSet; import java.util.List; +import java.util.Optional; +import java.util.Set; import java.util.concurrent.CompletableFuture; import java.util.stream.Collectors; +import javax.annotation.Nonnull; +import javax.annotation.Nullable; import lombok.RequiredArgsConstructor; import lombok.extern.slf4j.Slf4j; @@ -44,6 +50,7 @@ public class ListDataProductAssetsResolver implements DataFetcher> { + private static final String OUTPUT_PORTS_FILTER_FIELD = "isOutputPort"; private static final int DEFAULT_START = 0; private static final int DEFAULT_COUNT = 10; @@ -63,6 +70,7 @@ public CompletableFuture get(DataFetchingEnvironment environment) // 1. Get urns of assets belonging to Data Product using an aspect query List assetUrns = new ArrayList<>(); + Set outputPorts = Collections.EMPTY_SET; try { final EntityResponse entityResponse = _entityClient.getV2( @@ -86,6 +94,11 @@ public CompletableFuture get(DataFetchingEnvironment environment) dataProductProperties.getAssets().stream() .map(DataProductAssociation::getDestinationUrn) .collect(Collectors.toList())); + outputPorts = + dataProductProperties.getAssets().stream() + .filter(DataProductAssociation::isOutputPort) + .map(dpa -> dpa.getDestinationUrn().toString()) + .collect(Collectors.toSet()); } } } catch (Exception e) { @@ -117,6 +130,7 @@ public CompletableFuture get(DataFetchingEnvironment environment) final int start = input.getStart() != null ? input.getStart() : DEFAULT_START; final int count = input.getCount() != null ? input.getCount() : DEFAULT_COUNT; + Set finalOutputPorts = outputPorts; return GraphQLConcurrencyUtils.supplyAsync( () -> { // if no assets in data product properties, exit early before search and return empty @@ -130,13 +144,21 @@ public CompletableFuture get(DataFetchingEnvironment environment) return results; } + List filters = input.getFilters(); + final List urnsToFilterOn = getUrnsToFilterOn(assetUrns, finalOutputPorts, filters); + // need to remove output ports filter so we don't send to elastic + if (filters != null) { + filters.removeIf(f -> f.getField().equals(OUTPUT_PORTS_FILTER_FIELD)); + } // add urns from the aspect to our filters final Filter baseFilter = ResolverUtils.buildFilter( - input.getFilters(), + filters, input.getOrFilters(), context.getOperationContext().getAspectRetriever()); - final Filter finalFilter = buildFilterWithUrns(new HashSet<>(assetUrns), baseFilter); + final Filter finalFilter = + buildFilterWithUrns( + context.getDataHubAppConfig(), new HashSet<>(urnsToFilterOn), baseFilter); final SearchFlags searchFlags; com.linkedin.datahub.graphql.generated.SearchFlags inputFlags = input.getSearchFlags(); @@ -155,18 +177,34 @@ public CompletableFuture get(DataFetchingEnvironment environment) start, count); - return UrnSearchResultsMapper.map( - context, - _entityClient.searchAcrossEntities( - context - .getOperationContext() - .withSearchFlags(flags -> searchFlags != null ? searchFlags : flags), - finalEntityNames, - sanitizedQuery, - finalFilter, - start, - count, - null)); + SearchResults results = + UrnSearchResultsMapper.map( + context, + _entityClient.searchAcrossEntities( + context + .getOperationContext() + .withSearchFlags(flags -> searchFlags != null ? searchFlags : flags), + finalEntityNames, + sanitizedQuery, + finalFilter, + start, + count, + null, + null)); + results + .getSearchResults() + .forEach( + searchResult -> { + if (finalOutputPorts.contains(searchResult.getEntity().getUrn())) { + if (searchResult.getExtraProperties() == null) { + searchResult.setExtraProperties(new ArrayList<>()); + } + searchResult + .getExtraProperties() + .add(new ExtraProperty("isOutputPort", "true")); + } + }); + return results; } catch (Exception e) { log.error( "Failed to execute search for data product assets: entity types {}, query {}, filters: {}, start: {}, count: {}", @@ -186,4 +224,37 @@ public CompletableFuture get(DataFetchingEnvironment environment) this.getClass().getSimpleName(), "get"); } + + /** + * Check to see if our filters list has a hardcoded filter for output ports. If so, let this + * filter determine which urns we filter search results on. Otherwise, if no output port filter is + * found, return all asset urns as per usual. + */ + @Nonnull + private List getUrnsToFilterOn( + @Nonnull final List assetUrns, + @Nonnull final Set outputPortUrns, + @Nullable final List filters) { + Optional isOutputPort = + filters != null + ? filters.stream() + .filter(f -> f.getField().equals(OUTPUT_PORTS_FILTER_FIELD)) + .findFirst() + : Optional.empty(); + + // optionally get entities that explicitly are or are not output ports + List urnsToFilterOn = assetUrns; + if (isOutputPort.isPresent()) { + if (isOutputPort.get().getValue().equals("true")) { + urnsToFilterOn = outputPortUrns.stream().map(UrnUtils::getUrn).collect(Collectors.toList()); + } else { + urnsToFilterOn = + assetUrns.stream() + .filter(u -> !outputPortUrns.contains(u.toString())) + .collect(Collectors.toList()); + } + } + + return urnsToFilterOn; + } } diff --git a/datahub-graphql-core/src/main/java/com/linkedin/datahub/graphql/resolvers/post/CreatePostResolver.java b/datahub-graphql-core/src/main/java/com/linkedin/datahub/graphql/resolvers/post/CreatePostResolver.java index 8b4253501dedc..312950e44ffbd 100644 --- a/datahub-graphql-core/src/main/java/com/linkedin/datahub/graphql/resolvers/post/CreatePostResolver.java +++ b/datahub-graphql-core/src/main/java/com/linkedin/datahub/graphql/resolvers/post/CreatePostResolver.java @@ -5,15 +5,13 @@ import com.datahub.authentication.Authentication; import com.datahub.authentication.post.PostService; import com.linkedin.common.Media; +import com.linkedin.common.urn.UrnUtils; import com.linkedin.datahub.graphql.QueryContext; import com.linkedin.datahub.graphql.authorization.AuthorizationUtils; import com.linkedin.datahub.graphql.concurrency.GraphQLConcurrencyUtils; import com.linkedin.datahub.graphql.exception.AuthorizationException; -import com.linkedin.datahub.graphql.generated.CreatePostInput; -import com.linkedin.datahub.graphql.generated.PostContentType; -import com.linkedin.datahub.graphql.generated.PostType; -import com.linkedin.datahub.graphql.generated.UpdateMediaInput; -import com.linkedin.datahub.graphql.generated.UpdatePostContentInput; +import com.linkedin.datahub.graphql.generated.*; +import com.linkedin.metadata.utils.SchemaFieldUtils; import com.linkedin.post.PostContent; import graphql.schema.DataFetcher; import graphql.schema.DataFetchingEnvironment; @@ -46,6 +44,18 @@ public CompletableFuture get(final DataFetchingEnvironment environment) final String description = content.getDescription(); final UpdateMediaInput updateMediaInput = content.getMedia(); final Authentication authentication = context.getAuthentication(); + final String targetResource = input.getResourceUrn(); + final String targetSubresource = input.getSubResource(); + + String targetUrn; + if (targetSubresource != null) { + targetUrn = + SchemaFieldUtils.generateSchemaFieldUrn( + UrnUtils.getUrn(targetResource), targetSubresource) + .toString(); + } else { + targetUrn = targetResource; + } Media media = updateMediaInput == null @@ -59,7 +69,7 @@ public CompletableFuture get(final DataFetchingEnvironment environment) () -> { try { return _postService.createPost( - context.getOperationContext(), type.toString(), postContent); + context.getOperationContext(), type.toString(), postContent, targetUrn); } catch (Exception e) { throw new RuntimeException("Failed to create a new post", e); } diff --git a/datahub-graphql-core/src/main/java/com/linkedin/datahub/graphql/types/dataset/mappers/SchemaFieldMapper.java b/datahub-graphql-core/src/main/java/com/linkedin/datahub/graphql/types/dataset/mappers/SchemaFieldMapper.java index 3674186ac23fe..23d94ff85bd3d 100644 --- a/datahub-graphql-core/src/main/java/com/linkedin/datahub/graphql/types/dataset/mappers/SchemaFieldMapper.java +++ b/datahub-graphql-core/src/main/java/com/linkedin/datahub/graphql/types/dataset/mappers/SchemaFieldMapper.java @@ -91,8 +91,7 @@ private SchemaFieldEntity createSchemaFieldEntity( @Nonnull final com.linkedin.schema.SchemaField input, @Nonnull Urn entityUrn) { SchemaFieldEntity schemaFieldEntity = new SchemaFieldEntity(); schemaFieldEntity.setUrn( - SchemaFieldUtils.generateSchemaFieldUrn(entityUrn.toString(), input.getFieldPath()) - .toString()); + SchemaFieldUtils.generateSchemaFieldUrn(entityUrn, input.getFieldPath()).toString()); schemaFieldEntity.setType(EntityType.SCHEMA_FIELD); return schemaFieldEntity; } diff --git a/datahub-graphql-core/src/main/java/com/linkedin/datahub/graphql/types/mappers/MapperUtils.java b/datahub-graphql-core/src/main/java/com/linkedin/datahub/graphql/types/mappers/MapperUtils.java index 7dd12d62765c6..0eb74210971d9 100644 --- a/datahub-graphql-core/src/main/java/com/linkedin/datahub/graphql/types/mappers/MapperUtils.java +++ b/datahub-graphql-core/src/main/java/com/linkedin/datahub/graphql/types/mappers/MapperUtils.java @@ -5,9 +5,11 @@ import com.linkedin.common.UrnArray; import com.linkedin.common.urn.Urn; +import com.linkedin.data.template.StringMap; import com.linkedin.datahub.graphql.QueryContext; import com.linkedin.datahub.graphql.generated.AggregationMetadata; import com.linkedin.datahub.graphql.generated.EntityPath; +import com.linkedin.datahub.graphql.generated.ExtraProperty; import com.linkedin.datahub.graphql.generated.FacetMetadata; import com.linkedin.datahub.graphql.generated.MatchedField; import com.linkedin.datahub.graphql.generated.SearchResult; @@ -35,7 +37,24 @@ public static SearchResult mapResult( return new SearchResult( UrnToEntityMapper.map(context, searchEntity.getEntity()), getInsightsFromFeatures(searchEntity.getFeatures()), - getMatchedFieldEntry(context, searchEntity.getMatchedFields())); + getMatchedFieldEntry(context, searchEntity.getMatchedFields()), + getExtraProperties(searchEntity.getExtraFields())); + } + + private static List getExtraProperties(@Nullable StringMap extraFields) { + if (extraFields == null) { + return List.of(); + } else { + return extraFields.entrySet().stream() + .map( + entry -> { + ExtraProperty extraProperty = new ExtraProperty(); + extraProperty.setName(entry.getKey()); + extraProperty.setValue(entry.getValue()); + return extraProperty; + }) + .collect(Collectors.toList()); + } } public static FacetMetadata mapFacet( diff --git a/datahub-graphql-core/src/main/resources/entity.graphql b/datahub-graphql-core/src/main/resources/entity.graphql index 609597beee51b..52e81f8094dea 100644 --- a/datahub-graphql-core/src/main/resources/entity.graphql +++ b/datahub-graphql-core/src/main/resources/entity.graphql @@ -11274,6 +11274,21 @@ input CreatePostInput { The content of the post """ content: UpdatePostContentInput! + + """ + Optional target URN for the post + """ + resourceUrn: String + + """ + An optional type of a sub resource to attach the Tag to + """ + subResourceType: SubResourceType + + """ + Optional target subresource for the post + """ + subResource: String } """ diff --git a/datahub-graphql-core/src/main/resources/search.graphql b/datahub-graphql-core/src/main/resources/search.graphql index 09a7217073527..84e81e9096a3b 100644 --- a/datahub-graphql-core/src/main/resources/search.graphql +++ b/datahub-graphql-core/src/main/resources/search.graphql @@ -582,6 +582,18 @@ type SearchResults { suggestions: [SearchSuggestion!] } +type ExtraProperty { + """ + Name of the extra property + """ + name: String! + + """ + Value of the extra property + """ + value: String! +} + """ An individual search result hit """ @@ -600,6 +612,11 @@ type SearchResult { Matched field hint """ matchedFields: [MatchedField!]! + + """ + Additional properties about the search result. Used for rendering in the UI + """ + extraProperties: [ExtraProperty!] } """ diff --git a/datahub-graphql-core/src/test/java/com/linkedin/datahub/graphql/resolvers/ResolverUtilsTest.java b/datahub-graphql-core/src/test/java/com/linkedin/datahub/graphql/resolvers/ResolverUtilsTest.java index f98284e92ede5..b01aacaaab65c 100644 --- a/datahub-graphql-core/src/test/java/com/linkedin/datahub/graphql/resolvers/ResolverUtilsTest.java +++ b/datahub-graphql-core/src/test/java/com/linkedin/datahub/graphql/resolvers/ResolverUtilsTest.java @@ -1,6 +1,7 @@ package com.linkedin.datahub.graphql.resolvers; import static com.linkedin.datahub.graphql.resolvers.ResolverUtils.*; +import static com.linkedin.metadata.search.utils.QueryUtils.buildFilterWithUrns; import static org.mockito.Mockito.mock; import static org.testng.AssertJUnit.assertEquals; @@ -13,6 +14,8 @@ import com.linkedin.datahub.graphql.generated.FacetFilterInput; import com.linkedin.datahub.graphql.generated.FilterOperator; import com.linkedin.metadata.aspect.AspectRetriever; +import com.linkedin.metadata.config.DataHubAppConfiguration; +import com.linkedin.metadata.config.MetadataChangeProposalConfig; import com.linkedin.metadata.query.filter.Condition; import com.linkedin.metadata.query.filter.ConjunctiveCriterion; import com.linkedin.metadata.query.filter.ConjunctiveCriterionArray; @@ -102,7 +105,18 @@ public void testBuildFilterWithUrns() throws Exception { new ConjunctiveCriterionArray( ImmutableList.of(new ConjunctiveCriterion().setAnd(andCriterionArray)))); - Filter finalFilter = buildFilterWithUrns(urns, filter); + DataHubAppConfiguration appConfig = new DataHubAppConfiguration(); + appConfig.setMetadataChangeProposal(new MetadataChangeProposalConfig()); + appConfig + .getMetadataChangeProposal() + .setSideEffects(new MetadataChangeProposalConfig.SideEffectsConfig()); + appConfig + .getMetadataChangeProposal() + .getSideEffects() + .setSchemaField(new MetadataChangeProposalConfig.SideEffectConfig()); + appConfig.getMetadataChangeProposal().getSideEffects().getSchemaField().setEnabled(true); + + Filter finalFilter = buildFilterWithUrns(appConfig, urns, filter); Criterion urnsCriterion = new Criterion() diff --git a/datahub-graphql-core/src/test/java/com/linkedin/datahub/graphql/resolvers/datacontract/DataContractUtilsTest.java b/datahub-graphql-core/src/test/java/com/linkedin/datahub/graphql/resolvers/datacontract/DataContractUtilsTest.java index 18ede7c306e42..646c72422aa61 100644 --- a/datahub-graphql-core/src/test/java/com/linkedin/datahub/graphql/resolvers/datacontract/DataContractUtilsTest.java +++ b/datahub-graphql-core/src/test/java/com/linkedin/datahub/graphql/resolvers/datacontract/DataContractUtilsTest.java @@ -12,6 +12,7 @@ import com.linkedin.common.urn.Urn; import com.linkedin.common.urn.UrnUtils; import com.linkedin.datahub.graphql.QueryContext; +import com.linkedin.metadata.config.DataHubAppConfiguration; import graphql.Assert; import io.datahubproject.metadata.context.OperationContext; import io.datahubproject.test.metadata.context.TestOperationContexts; @@ -56,6 +57,11 @@ public OperationContext getOperationContext() { return TestOperationContexts.userContextNoSearchAuthorization( getAuthorizer(), getAuthentication()); } + + @Override + public DataHubAppConfiguration getDataHubAppConfig() { + return new DataHubAppConfiguration(); + } }, testUrn); Assert.assertTrue(result); diff --git a/datahub-graphql-core/src/test/java/com/linkedin/datahub/graphql/resolvers/post/CreatePostResolverTest.java b/datahub-graphql-core/src/test/java/com/linkedin/datahub/graphql/resolvers/post/CreatePostResolverTest.java index 7f14193737e00..8e160237d095b 100644 --- a/datahub-graphql-core/src/test/java/com/linkedin/datahub/graphql/resolvers/post/CreatePostResolverTest.java +++ b/datahub-graphql-core/src/test/java/com/linkedin/datahub/graphql/resolvers/post/CreatePostResolverTest.java @@ -94,7 +94,7 @@ public void testCreatePost() throws Exception { input.setContent(content); when(_dataFetchingEnvironment.getArgument(eq("input"))).thenReturn(input); when(_postService.createPost( - any(), eq(PostType.HOME_PAGE_ANNOUNCEMENT.toString()), eq(postContentObj))) + any(), eq(PostType.HOME_PAGE_ANNOUNCEMENT.toString()), eq(postContentObj), any())) .thenReturn(true); assertTrue(_resolver.get(_dataFetchingEnvironment).join()); diff --git a/datahub-upgrade/build.gradle b/datahub-upgrade/build.gradle index b66371db73386..5d814dd876679 100644 --- a/datahub-upgrade/build.gradle +++ b/datahub-upgrade/build.gradle @@ -115,7 +115,10 @@ task run(type: Exec) { environment "ENTITY_REGISTRY_CONFIG_PATH", "../metadata-models/src/main/resources/entity-registry.yml" environment "ENABLE_STRUCTURED_PROPERTIES_SYSTEM_UPDATE", "true" environment "ELASTICSEARCH_INDEX_BUILDER_MAPPINGS_REINDEX", "true" - commandLine "java", "-jar", "-Dserver.port=8083", bootJar.getArchiveFile().get(), "-u", "SystemUpdate" + commandLine "java", + "-agentlib:jdwp=transport=dt_socket,address=5003,server=y,suspend=n", + "-jar", + "-Dserver.port=8083", bootJar.getArchiveFile().get(), "-u", "SystemUpdate" } docker { diff --git a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/Upgrade.java b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/Upgrade.java index d3aea2a3dac12..d159622eb292b 100644 --- a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/Upgrade.java +++ b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/Upgrade.java @@ -1,7 +1,17 @@ package com.linkedin.datahub.upgrade; import com.google.common.collect.ImmutableList; +import com.linkedin.common.urn.Urn; +import com.linkedin.metadata.boot.BootstrapStep; +import com.linkedin.metadata.entity.EntityService; +import com.linkedin.upgrade.DataHubUpgradeResult; +import com.linkedin.upgrade.DataHubUpgradeState; +import io.datahubproject.metadata.context.OperationContext; import java.util.List; +import java.util.Map; +import java.util.Optional; +import javax.annotation.Nonnull; +import javax.annotation.Nullable; /** Specification of an upgrade to be performed to the DataHub platform. */ public interface Upgrade { @@ -16,4 +26,18 @@ public interface Upgrade { default List cleanupSteps() { return ImmutableList.of(); } + + default Optional getUpgradeResult( + @Nonnull OperationContext opContext, Urn upgradeId, EntityService entityService) { + return BootstrapStep.getUpgradeResult(opContext, upgradeId, entityService); + } + + default void setUpgradeResult( + @Nonnull OperationContext opContext, + @Nonnull Urn upgradeId, + EntityService entityService, + @Nullable DataHubUpgradeState state, + @Nullable Map result) { + BootstrapStep.setUpgradeResult(opContext, upgradeId, entityService, state, result); + } } diff --git a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/UpgradeCli.java b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/UpgradeCli.java index 6d10a7ed6b3b4..bff65fd03dd57 100644 --- a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/UpgradeCli.java +++ b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/UpgradeCli.java @@ -9,6 +9,7 @@ import com.linkedin.datahub.upgrade.system.SystemUpdate; import com.linkedin.datahub.upgrade.system.SystemUpdateBlocking; import com.linkedin.datahub.upgrade.system.SystemUpdateNonBlocking; +import com.linkedin.upgrade.DataHubUpgradeState; import io.datahubproject.metadata.context.OperationContext; import java.util.List; import javax.inject.Inject; @@ -91,7 +92,7 @@ public void run(String... cmdLineArgs) { UpgradeResult result = _upgradeManager.execute(systemOperationContext, args.upgradeId.trim(), args.args); - if (UpgradeResult.Result.FAILED.equals(result.result())) { + if (DataHubUpgradeState.FAILED.equals(result.result())) { System.exit(1); } else { System.exit(0); diff --git a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/UpgradeContext.java b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/UpgradeContext.java index 73643175ab9c6..2b5598184ee6b 100644 --- a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/UpgradeContext.java +++ b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/UpgradeContext.java @@ -23,6 +23,6 @@ public interface UpgradeContext { /** Returns a map of argument to <>optional value, as delimited by an '=' character. */ Map> parsedArgs(); - /** Returns the operation context ffor the upgrade */ + /** Returns the operation context for the upgrade */ OperationContext opContext(); } diff --git a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/UpgradeResult.java b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/UpgradeResult.java index 25dc758575fd1..57a01b4de413f 100644 --- a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/UpgradeResult.java +++ b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/UpgradeResult.java @@ -1,20 +1,12 @@ package com.linkedin.datahub.upgrade; +import com.linkedin.upgrade.DataHubUpgradeState; + /** Represents the result of executing an {@link Upgrade} */ public interface UpgradeResult { - /** The execution result. */ - enum Result { - /** Upgrade succeeded. */ - SUCCEEDED, - /** Upgrade failed. */ - FAILED, - /** Upgrade was aborted. */ - ABORTED - } - - /** Returns the {@link Result} of executing an {@link Upgrade} */ - Result result(); + /** Returns the {@link DataHubUpgradeState} of executing an {@link Upgrade} */ + DataHubUpgradeState result(); /** Returns the {@link UpgradeReport} associated with the completed {@link Upgrade}. */ UpgradeReport report(); diff --git a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/UpgradeStepResult.java b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/UpgradeStepResult.java index 04b3d4b8559e6..e88e3c75f8695 100644 --- a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/UpgradeStepResult.java +++ b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/UpgradeStepResult.java @@ -1,18 +1,12 @@ package com.linkedin.datahub.upgrade; +import com.linkedin.upgrade.DataHubUpgradeState; + public interface UpgradeStepResult { /** Returns a string identifier associated with the step. */ String stepId(); - /** The outcome of the step execution. */ - enum Result { - /** The step succeeded. */ - SUCCEEDED, - /** The step failed. */ - FAILED - } - /** A control-flow action to perform as a result of the step execution. */ enum Action { /** Continue attempting the upgrade. */ @@ -24,7 +18,7 @@ enum Action { } /** Returns the result of executing the step, either success or failure. */ - Result result(); + DataHubUpgradeState result(); /** Returns the action to perform after executing the step, either continue or abort. */ default Action action() { diff --git a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/common/steps/ClearGraphServiceStep.java b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/common/steps/ClearGraphServiceStep.java index 393b5411599ad..357f1ffd663a9 100644 --- a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/common/steps/ClearGraphServiceStep.java +++ b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/common/steps/ClearGraphServiceStep.java @@ -6,6 +6,7 @@ import com.linkedin.datahub.upgrade.impl.DefaultUpgradeStepResult; import com.linkedin.datahub.upgrade.nocode.NoCodeUpgrade; import com.linkedin.metadata.graph.GraphService; +import com.linkedin.upgrade.DataHubUpgradeState; import java.util.function.Function; public class ClearGraphServiceStep implements UpgradeStep { @@ -49,9 +50,9 @@ public Function executable() { _graphService.clear(); } catch (Exception e) { context.report().addLine("Failed to clear graph indices", e); - return new DefaultUpgradeStepResult(id(), UpgradeStepResult.Result.FAILED); + return new DefaultUpgradeStepResult(id(), DataHubUpgradeState.FAILED); } - return new DefaultUpgradeStepResult(id(), UpgradeStepResult.Result.SUCCEEDED); + return new DefaultUpgradeStepResult(id(), DataHubUpgradeState.SUCCEEDED); }; } } diff --git a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/common/steps/ClearSearchServiceStep.java b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/common/steps/ClearSearchServiceStep.java index 44592ecf92dbd..0ccd2029c93ac 100644 --- a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/common/steps/ClearSearchServiceStep.java +++ b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/common/steps/ClearSearchServiceStep.java @@ -6,6 +6,7 @@ import com.linkedin.datahub.upgrade.impl.DefaultUpgradeStepResult; import com.linkedin.datahub.upgrade.nocode.NoCodeUpgrade; import com.linkedin.metadata.search.EntitySearchService; +import com.linkedin.upgrade.DataHubUpgradeState; import java.util.function.Function; public class ClearSearchServiceStep implements UpgradeStep { @@ -48,9 +49,9 @@ public Function executable() { _entitySearchService.clear(context.opContext()); } catch (Exception e) { context.report().addLine("Failed to clear search service", e); - return new DefaultUpgradeStepResult(id(), UpgradeStepResult.Result.FAILED); + return new DefaultUpgradeStepResult(id(), DataHubUpgradeState.FAILED); } - return new DefaultUpgradeStepResult(id(), UpgradeStepResult.Result.SUCCEEDED); + return new DefaultUpgradeStepResult(id(), DataHubUpgradeState.SUCCEEDED); }; } } diff --git a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/common/steps/ClearSystemMetadataServiceStep.java b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/common/steps/ClearSystemMetadataServiceStep.java index 889d2f0a79edf..f0f2958e91733 100644 --- a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/common/steps/ClearSystemMetadataServiceStep.java +++ b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/common/steps/ClearSystemMetadataServiceStep.java @@ -6,6 +6,7 @@ import com.linkedin.datahub.upgrade.impl.DefaultUpgradeStepResult; import com.linkedin.datahub.upgrade.nocode.NoCodeUpgrade; import com.linkedin.metadata.systemmetadata.SystemMetadataService; +import com.linkedin.upgrade.DataHubUpgradeState; import java.util.function.Function; public class ClearSystemMetadataServiceStep implements UpgradeStep { @@ -48,9 +49,9 @@ public Function executable() { _systemMetadataService.clear(); } catch (Exception e) { context.report().addLine("Failed to clear system metadata service", e); - return new DefaultUpgradeStepResult(id(), UpgradeStepResult.Result.FAILED); + return new DefaultUpgradeStepResult(id(), DataHubUpgradeState.FAILED); } - return new DefaultUpgradeStepResult(id(), UpgradeStepResult.Result.SUCCEEDED); + return new DefaultUpgradeStepResult(id(), DataHubUpgradeState.SUCCEEDED); }; } } diff --git a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/common/steps/GMSDisableWriteModeStep.java b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/common/steps/GMSDisableWriteModeStep.java index a80adabc60e74..2e31d1eb62bd0 100644 --- a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/common/steps/GMSDisableWriteModeStep.java +++ b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/common/steps/GMSDisableWriteModeStep.java @@ -5,6 +5,7 @@ import com.linkedin.datahub.upgrade.UpgradeStepResult; import com.linkedin.datahub.upgrade.impl.DefaultUpgradeStepResult; import com.linkedin.entity.client.SystemEntityClient; +import com.linkedin.upgrade.DataHubUpgradeState; import java.util.function.Function; import lombok.RequiredArgsConstructor; import lombok.extern.slf4j.Slf4j; @@ -33,9 +34,9 @@ public Function executable() { } catch (Exception e) { log.error("Failed to turn write mode off in GMS", e); context.report().addLine("Failed to turn write mode off in GMS"); - return new DefaultUpgradeStepResult(id(), UpgradeStepResult.Result.FAILED); + return new DefaultUpgradeStepResult(id(), DataHubUpgradeState.FAILED); } - return new DefaultUpgradeStepResult(id(), UpgradeStepResult.Result.SUCCEEDED); + return new DefaultUpgradeStepResult(id(), DataHubUpgradeState.SUCCEEDED); }; } } diff --git a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/common/steps/GMSEnableWriteModeStep.java b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/common/steps/GMSEnableWriteModeStep.java index a6b2942fabffd..12bfccf1c6749 100644 --- a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/common/steps/GMSEnableWriteModeStep.java +++ b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/common/steps/GMSEnableWriteModeStep.java @@ -5,6 +5,7 @@ import com.linkedin.datahub.upgrade.UpgradeStepResult; import com.linkedin.datahub.upgrade.impl.DefaultUpgradeStepResult; import com.linkedin.entity.client.SystemEntityClient; +import com.linkedin.upgrade.DataHubUpgradeState; import java.util.function.Function; import lombok.RequiredArgsConstructor; import lombok.extern.slf4j.Slf4j; @@ -32,9 +33,9 @@ public Function executable() { } catch (Exception e) { log.error("Failed to turn write mode back on in GMS", e); context.report().addLine("Failed to turn write mode back on in GMS"); - return new DefaultUpgradeStepResult(id(), UpgradeStepResult.Result.FAILED); + return new DefaultUpgradeStepResult(id(), DataHubUpgradeState.FAILED); } - return new DefaultUpgradeStepResult(id(), UpgradeStepResult.Result.SUCCEEDED); + return new DefaultUpgradeStepResult(id(), DataHubUpgradeState.SUCCEEDED); }; } } diff --git a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/common/steps/GMSQualificationStep.java b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/common/steps/GMSQualificationStep.java index 4e7447cb1e2cb..9ee8244ee370d 100644 --- a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/common/steps/GMSQualificationStep.java +++ b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/common/steps/GMSQualificationStep.java @@ -10,6 +10,7 @@ import com.linkedin.datahub.upgrade.UpgradeStep; import com.linkedin.datahub.upgrade.UpgradeStepResult; import com.linkedin.datahub.upgrade.impl.DefaultUpgradeStepResult; +import com.linkedin.upgrade.DataHubUpgradeState; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStream; @@ -97,7 +98,7 @@ public Function executable() { StreamReadConstraints.builder().maxStringLength(maxSize).build()); JsonNode configJson = mapper.readTree(responseString); if (isEligible((ObjectNode) configJson)) { - return new DefaultUpgradeStepResult(id(), UpgradeStepResult.Result.SUCCEEDED); + return new DefaultUpgradeStepResult(id(), DataHubUpgradeState.SUCCEEDED); } else { context .report() @@ -105,7 +106,7 @@ public Function executable() { String.format( "Failed to qualify GMS. It is not running on the latest version." + "Re-run GMS on the latest datahub release")); - return new DefaultUpgradeStepResult(id(), UpgradeStepResult.Result.FAILED); + return new DefaultUpgradeStepResult(id(), DataHubUpgradeState.FAILED); } } catch (Exception e) { e.printStackTrace(); @@ -117,7 +118,7 @@ public Function executable() { + "at %s://host %s port %s. Make sure GMS is on the latest version " + "and is running at that host before starting the migration.", gmsProtocol, gmsHost, gmsPort)); - return new DefaultUpgradeStepResult(id(), UpgradeStepResult.Result.FAILED); + return new DefaultUpgradeStepResult(id(), DataHubUpgradeState.FAILED); } }; } diff --git a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/config/SchemaFieldsConfig.java b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/config/SchemaFieldsConfig.java new file mode 100644 index 0000000000000..5630379c56618 --- /dev/null +++ b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/config/SchemaFieldsConfig.java @@ -0,0 +1,56 @@ +package com.linkedin.datahub.upgrade.config; + +import com.linkedin.datahub.upgrade.system.NonBlockingSystemUpgrade; +import com.linkedin.datahub.upgrade.system.schemafield.GenerateSchemaFieldsFromSchemaMetadata; +import com.linkedin.datahub.upgrade.system.schemafield.MigrateSchemaFieldDocIds; +import com.linkedin.gms.factory.search.BaseElasticSearchComponentsFactory; +import com.linkedin.metadata.entity.AspectDao; +import com.linkedin.metadata.entity.EntityService; +import io.datahubproject.metadata.context.OperationContext; +import org.springframework.beans.factory.annotation.Qualifier; +import org.springframework.beans.factory.annotation.Value; +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.Conditional; +import org.springframework.context.annotation.Configuration; + +@Configuration +@Conditional(SystemUpdateCondition.NonBlockingSystemUpdateCondition.class) +public class SchemaFieldsConfig { + + @Bean + public NonBlockingSystemUpgrade schemaFieldsFromSchemaMetadata( + @Qualifier("systemOperationContext") final OperationContext opContext, + final EntityService entityService, + final AspectDao aspectDao, + // SYSTEM_UPDATE_SCHEMA_FIELDS_FROM_SCHEMA_METADATA_ENABLED + @Value("${systemUpdate.schemaFieldsFromSchemaMetadata.enabled}") final boolean enabled, + // SYSTEM_UPDATE_SCHEMA_FIELDS_FROM_SCHEMA_METADATA_BATCH_SIZE + @Value("${systemUpdate.schemaFieldsFromSchemaMetadata.batchSize}") final Integer batchSize, + // SYSTEM_UPDATE_SCHEMA_FIELDS_FROM_SCHEMA_METADATA_DELAY_MS + @Value("${systemUpdate.schemaFieldsFromSchemaMetadata.delayMs}") final Integer delayMs, + // SYSTEM_UPDATE_SCHEMA_FIELDS_FROM_SCHEMA_METADATA_LIMIT + @Value("${systemUpdate.schemaFieldsFromSchemaMetadata.limit}") final Integer limit) { + return new GenerateSchemaFieldsFromSchemaMetadata( + opContext, entityService, aspectDao, enabled, batchSize, delayMs, limit); + } + + @Bean + public NonBlockingSystemUpgrade schemaFieldsDocIds( + @Qualifier("systemOperationContext") final OperationContext opContext, + @Qualifier("baseElasticSearchComponents") + final BaseElasticSearchComponentsFactory.BaseElasticSearchComponents components, + final EntityService entityService, + // ELASTICSEARCH_INDEX_DOC_IDS_SCHEMA_FIELD_HASH_ID_ENABLED + @Value("${elasticsearch.index.docIds.schemaField.hashIdEnabled}") final boolean hashEnabled, + // SYSTEM_UPDATE_SCHEMA_FIELDS_DOC_IDS_ENABLED + @Value("${systemUpdate.schemaFieldsDocIds.enabled}") final boolean enabled, + // SYSTEM_UPDATE_SCHEMA_FIELDS_DOC_IDS_BATCH_SIZE + @Value("${systemUpdate.schemaFieldsDocIds.batchSize}") final Integer batchSize, + // SYSTEM_UPDATE_SCHEMA_FIELDS_DOC_IDS_DELAY_MS + @Value("${systemUpdate.schemaFieldsDocIds.delayMs}") final Integer delayMs, + // SYSTEM_UPDATE_SCHEMA_FIELDS_DOC_IDS_LIMIT + @Value("${systemUpdate.schemaFieldsDocIds.limit}") final Integer limit) { + return new MigrateSchemaFieldDocIds( + opContext, components, entityService, enabled && hashEnabled, batchSize, delayMs, limit); + } +} diff --git a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/config/SystemUpdateConfig.java b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/config/SystemUpdateConfig.java index cac9b5f9483d4..9c0c82dba65be 100644 --- a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/config/SystemUpdateConfig.java +++ b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/config/SystemUpdateConfig.java @@ -1,5 +1,6 @@ package com.linkedin.datahub.upgrade.config; +import com.datahub.authentication.Authentication; import com.linkedin.datahub.upgrade.system.BlockingSystemUpgrade; import com.linkedin.datahub.upgrade.system.NonBlockingSystemUpgrade; import com.linkedin.datahub.upgrade.system.SystemUpdate; @@ -11,12 +12,25 @@ import com.linkedin.gms.factory.kafka.common.TopicConventionFactory; import com.linkedin.gms.factory.kafka.schemaregistry.InternalSchemaRegistryFactory; import com.linkedin.gms.factory.kafka.schemaregistry.SchemaRegistryConfig; +import com.linkedin.gms.factory.search.BaseElasticSearchComponentsFactory; +import com.linkedin.metadata.aspect.GraphRetriever; import com.linkedin.metadata.config.kafka.KafkaConfiguration; import com.linkedin.metadata.dao.producer.KafkaEventProducer; import com.linkedin.metadata.dao.producer.KafkaHealthChecker; +import com.linkedin.metadata.entity.EntityService; +import com.linkedin.metadata.entity.EntityServiceAspectRetriever; +import com.linkedin.metadata.models.registry.EntityRegistry; +import com.linkedin.metadata.search.SearchService; +import com.linkedin.metadata.search.SearchServiceSearchRetriever; import com.linkedin.metadata.version.GitVersion; import com.linkedin.mxe.TopicConvention; +import io.datahubproject.metadata.context.OperationContext; +import io.datahubproject.metadata.context.OperationContextConfig; +import io.datahubproject.metadata.context.RetrieverContext; +import io.datahubproject.metadata.context.ServicesRegistryContext; +import io.datahubproject.metadata.services.RestrictedService; import java.util.List; +import javax.annotation.Nonnull; import lombok.extern.slf4j.Slf4j; import org.apache.avro.generic.IndexedRecord; import org.apache.kafka.clients.producer.KafkaProducer; @@ -120,4 +134,46 @@ protected SchemaRegistryConfig schemaRegistryConfig( @Qualifier("duheSchemaRegistryConfig") SchemaRegistryConfig duheSchemaRegistryConfig) { return duheSchemaRegistryConfig; } + + @Primary + @Nonnull + @Bean(name = "systemOperationContext") + protected OperationContext javaSystemOperationContext( + @Nonnull @Qualifier("systemAuthentication") final Authentication systemAuthentication, + @Nonnull final OperationContextConfig operationContextConfig, + @Nonnull final EntityRegistry entityRegistry, + @Nonnull final EntityService entityService, + @Nonnull final RestrictedService restrictedService, + @Nonnull final GraphRetriever graphRetriever, + @Nonnull final SearchService searchService, + @Qualifier("baseElasticSearchComponents") + BaseElasticSearchComponentsFactory.BaseElasticSearchComponents components) { + + EntityServiceAspectRetriever entityServiceAspectRetriever = + EntityServiceAspectRetriever.builder() + .entityRegistry(entityRegistry) + .entityService(entityService) + .build(); + + SearchServiceSearchRetriever searchServiceSearchRetriever = + SearchServiceSearchRetriever.builder().searchService(searchService).build(); + + OperationContext systemOperationContext = + OperationContext.asSystem( + operationContextConfig, + systemAuthentication, + entityServiceAspectRetriever.getEntityRegistry(), + ServicesRegistryContext.builder().restrictedService(restrictedService).build(), + components.getIndexConvention(), + RetrieverContext.builder() + .aspectRetriever(entityServiceAspectRetriever) + .graphRetriever(graphRetriever) + .searchRetriever(searchServiceSearchRetriever) + .build()); + + entityServiceAspectRetriever.setSystemOperationContext(systemOperationContext); + searchServiceSearchRetriever.setSystemOperationContext(systemOperationContext); + + return systemOperationContext; + } } diff --git a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/impl/DefaultUpgradeManager.java b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/impl/DefaultUpgradeManager.java index 240ec9f7bb2fe..27ba6abbc5ba9 100644 --- a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/impl/DefaultUpgradeManager.java +++ b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/impl/DefaultUpgradeManager.java @@ -11,6 +11,7 @@ import com.linkedin.datahub.upgrade.UpgradeStep; import com.linkedin.datahub.upgrade.UpgradeStepResult; import com.linkedin.metadata.utils.metrics.MetricUtils; +import com.linkedin.upgrade.DataHubUpgradeState; import io.datahubproject.metadata.context.OperationContext; import java.util.ArrayList; import java.util.HashMap; @@ -85,11 +86,11 @@ private UpgradeResult executeInternal(UpgradeContext context) { String.format( "Step with id %s requested an abort of the in-progress update. Aborting the upgrade...", step.id())); - return new DefaultUpgradeResult(UpgradeResult.Result.ABORTED, upgradeReport); + return new DefaultUpgradeResult(DataHubUpgradeState.ABORTED, upgradeReport); } // Handle Results - if (UpgradeStepResult.Result.FAILED.equals(stepResult.result())) { + if (DataHubUpgradeState.FAILED.equals(stepResult.result())) { if (step.isOptional()) { upgradeReport.addLine( String.format( @@ -104,7 +105,7 @@ private UpgradeResult executeInternal(UpgradeContext context) { "Failed Step %s/%s: %s. Failed after %s retries.", i + 1, steps.size(), step.id(), step.retryCount())); upgradeReport.addLine(String.format("Exiting upgrade %s with failure.", upgrade.id())); - return new DefaultUpgradeResult(UpgradeResult.Result.FAILED, upgradeReport); + return new DefaultUpgradeResult(DataHubUpgradeState.FAILED, upgradeReport); } upgradeReport.addLine( @@ -113,7 +114,7 @@ private UpgradeResult executeInternal(UpgradeContext context) { upgradeReport.addLine( String.format("Success! Completed upgrade with id %s successfully.", upgrade.id())); - return new DefaultUpgradeResult(UpgradeResult.Result.SUCCEEDED, upgradeReport); + return new DefaultUpgradeResult(DataHubUpgradeState.SUCCEEDED, upgradeReport); } private UpgradeStepResult executeStepInternal(UpgradeContext context, UpgradeStep step) { @@ -130,14 +131,14 @@ private UpgradeStepResult executeStepInternal(UpgradeContext context, UpgradeSte if (result == null) { // Failed to even retrieve a result. Create a default failure result. - result = new DefaultUpgradeStepResult(step.id(), UpgradeStepResult.Result.FAILED); + result = new DefaultUpgradeStepResult(step.id(), DataHubUpgradeState.FAILED); context .report() .addLine(String.format("Retrying %s more times...", maxAttempts - (i + 1))); MetricUtils.counter(MetricRegistry.name(step.id(), "retry")).inc(); } - if (UpgradeStepResult.Result.SUCCEEDED.equals(result.result())) { + if (DataHubUpgradeState.SUCCEEDED.equals(result.result())) { MetricUtils.counter(MetricRegistry.name(step.id(), "succeeded")).inc(); break; } @@ -149,7 +150,7 @@ private UpgradeStepResult executeStepInternal(UpgradeContext context, UpgradeSte String.format( "Caught exception during attempt %s of Step with id %s: %s", i, step.id(), e)); MetricUtils.counter(MetricRegistry.name(step.id(), "failed")).inc(); - result = new DefaultUpgradeStepResult(step.id(), UpgradeStepResult.Result.FAILED); + result = new DefaultUpgradeStepResult(step.id(), DataHubUpgradeState.FAILED); context.report().addLine(String.format("Retrying %s more times...", maxAttempts - (i + 1))); } } diff --git a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/impl/DefaultUpgradeResult.java b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/impl/DefaultUpgradeResult.java index cf0e7221b406b..5131cadf5d3fa 100644 --- a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/impl/DefaultUpgradeResult.java +++ b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/impl/DefaultUpgradeResult.java @@ -2,19 +2,20 @@ import com.linkedin.datahub.upgrade.UpgradeReport; import com.linkedin.datahub.upgrade.UpgradeResult; +import com.linkedin.upgrade.DataHubUpgradeState; public class DefaultUpgradeResult implements UpgradeResult { - private final Result _result; + private final DataHubUpgradeState _result; private final UpgradeReport _report; - DefaultUpgradeResult(Result result, UpgradeReport report) { + DefaultUpgradeResult(DataHubUpgradeState result, UpgradeReport report) { _result = result; _report = report; } @Override - public Result result() { + public DataHubUpgradeState result() { return _result; } diff --git a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/impl/DefaultUpgradeStepResult.java b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/impl/DefaultUpgradeStepResult.java index e11eaf89bfc8d..cab0708fa5224 100644 --- a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/impl/DefaultUpgradeStepResult.java +++ b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/impl/DefaultUpgradeStepResult.java @@ -1,18 +1,19 @@ package com.linkedin.datahub.upgrade.impl; import com.linkedin.datahub.upgrade.UpgradeStepResult; +import com.linkedin.upgrade.DataHubUpgradeState; public class DefaultUpgradeStepResult implements UpgradeStepResult { private final String _stepId; - private final Result _result; + private final DataHubUpgradeState _result; private final Action _action; - public DefaultUpgradeStepResult(String stepId, Result result) { + public DefaultUpgradeStepResult(String stepId, DataHubUpgradeState result) { this(stepId, result, Action.CONTINUE); } - public DefaultUpgradeStepResult(String stepId, Result result, Action action) { + public DefaultUpgradeStepResult(String stepId, DataHubUpgradeState result, Action action) { _stepId = stepId; _result = result; _action = action; @@ -24,7 +25,7 @@ public String stepId() { } @Override - public Result result() { + public DataHubUpgradeState result() { return _result; } diff --git a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/nocode/CreateAspectTableStep.java b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/nocode/CreateAspectTableStep.java index 3b3098f43c473..4855cef95cb6e 100644 --- a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/nocode/CreateAspectTableStep.java +++ b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/nocode/CreateAspectTableStep.java @@ -4,6 +4,7 @@ import com.linkedin.datahub.upgrade.UpgradeStep; import com.linkedin.datahub.upgrade.UpgradeStepResult; import com.linkedin.datahub.upgrade.impl.DefaultUpgradeStepResult; +import com.linkedin.upgrade.DataHubUpgradeState; import io.ebean.Database; import java.util.function.Function; @@ -79,9 +80,9 @@ public Function executable() { _server.execute(_server.createSqlUpdate(sqlUpdateStr)); } catch (Exception e) { context.report().addLine("Failed to create table metadata_aspect_v2", e); - return new DefaultUpgradeStepResult(id(), UpgradeStepResult.Result.FAILED); + return new DefaultUpgradeStepResult(id(), DataHubUpgradeState.FAILED); } - return new DefaultUpgradeStepResult(id(), UpgradeStepResult.Result.SUCCEEDED); + return new DefaultUpgradeStepResult(id(), DataHubUpgradeState.SUCCEEDED); }; } } diff --git a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/nocode/DataMigrationStep.java b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/nocode/DataMigrationStep.java index 94bf97f3c9c9e..ecff2e3ee6e18 100644 --- a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/nocode/DataMigrationStep.java +++ b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/nocode/DataMigrationStep.java @@ -18,6 +18,7 @@ import com.linkedin.metadata.models.EntitySpec; import com.linkedin.metadata.models.registry.EntityRegistry; import com.linkedin.metadata.utils.PegasusUtils; +import com.linkedin.upgrade.DataHubUpgradeState; import com.linkedin.util.Pair; import io.ebean.Database; import io.ebean.PagedList; @@ -100,7 +101,7 @@ public Function executable() { "Failed to convert aspect with name %s into a RecordTemplate class", oldAspectName), e); - return new DefaultUpgradeStepResult(id(), UpgradeStepResult.Result.FAILED); + return new DefaultUpgradeStepResult(id(), DataHubUpgradeState.FAILED); } // 2. Extract an Entity type from the entity Urn @@ -127,7 +128,7 @@ public Function executable() { String.format( "Failed to find Entity with name %s in Entity Registry", entityName), e); - return new DefaultUpgradeStepResult(id(), UpgradeStepResult.Result.FAILED); + return new DefaultUpgradeStepResult(id(), DataHubUpgradeState.FAILED); } // 4. Extract new aspect name from Aspect schema @@ -142,7 +143,7 @@ public Function executable() { "Failed to retrieve @Aspect name from schema %s, urn %s", aspectRecord.schema().getFullName(), entityName), e); - return new DefaultUpgradeStepResult(id(), UpgradeStepResult.Result.FAILED); + return new DefaultUpgradeStepResult(id(), DataHubUpgradeState.FAILED); } // 5. Verify that the aspect is a valid aspect associated with the entity @@ -157,7 +158,7 @@ public Function executable() { "Failed to find aspect spec with name %s associated with entity named %s", newAspectName, entityName), e); - return new DefaultUpgradeStepResult(id(), UpgradeStepResult.Result.FAILED); + return new DefaultUpgradeStepResult(id(), DataHubUpgradeState.FAILED); } // 6. Write the row back using the EntityService @@ -214,9 +215,9 @@ public Function executable() { String.format( "Number of rows migrated %s does not equal the number of input rows %s...", totalRowsMigrated, rowCount)); - return new DefaultUpgradeStepResult(id(), UpgradeStepResult.Result.FAILED); + return new DefaultUpgradeStepResult(id(), DataHubUpgradeState.FAILED); } - return new DefaultUpgradeStepResult(id(), UpgradeStepResult.Result.SUCCEEDED); + return new DefaultUpgradeStepResult(id(), DataHubUpgradeState.SUCCEEDED); }; } diff --git a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/nocode/RemoveAspectV2TableStep.java b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/nocode/RemoveAspectV2TableStep.java index 6180573d902d2..39346fa09d231 100644 --- a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/nocode/RemoveAspectV2TableStep.java +++ b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/nocode/RemoveAspectV2TableStep.java @@ -4,6 +4,7 @@ import com.linkedin.datahub.upgrade.UpgradeStep; import com.linkedin.datahub.upgrade.UpgradeStepResult; import com.linkedin.datahub.upgrade.impl.DefaultUpgradeStepResult; +import com.linkedin.upgrade.DataHubUpgradeState; import io.ebean.Database; import java.util.function.Function; @@ -26,7 +27,7 @@ public Function executable() { return (context) -> { context.report().addLine("Cleanup requested. Dropping metadata_aspect_v2"); _server.execute(_server.sqlUpdate("DROP TABLE IF EXISTS metadata_aspect_v2")); - return new DefaultUpgradeStepResult(id(), UpgradeStepResult.Result.SUCCEEDED); + return new DefaultUpgradeStepResult(id(), DataHubUpgradeState.SUCCEEDED); }; } diff --git a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/nocode/UpgradeQualificationStep.java b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/nocode/UpgradeQualificationStep.java index d22af9d292400..33de9f842a3ae 100644 --- a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/nocode/UpgradeQualificationStep.java +++ b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/nocode/UpgradeQualificationStep.java @@ -5,6 +5,7 @@ import com.linkedin.datahub.upgrade.UpgradeStepResult; import com.linkedin.datahub.upgrade.impl.DefaultUpgradeStepResult; import com.linkedin.metadata.entity.ebean.AspectStorageValidationUtil; +import com.linkedin.upgrade.DataHubUpgradeState; import io.ebean.Database; import java.util.function.Function; @@ -31,22 +32,22 @@ public Function executable() { return (context) -> { if (context.parsedArgs().containsKey(NoCodeUpgrade.FORCE_UPGRADE_ARG_NAME)) { context.report().addLine("Forced upgrade detected. Proceeding with upgrade..."); - return new DefaultUpgradeStepResult(id(), UpgradeStepResult.Result.SUCCEEDED); + return new DefaultUpgradeStepResult(id(), DataHubUpgradeState.SUCCEEDED); } try { if (isQualified(_server, context)) { // Qualified. context.report().addLine("Found qualified upgrade candidate. Proceeding with upgrade..."); - return new DefaultUpgradeStepResult(id(), UpgradeStepResult.Result.SUCCEEDED); + return new DefaultUpgradeStepResult(id(), DataHubUpgradeState.SUCCEEDED); } // Unqualified (Table already exists) context.report().addLine("Failed to qualify upgrade candidate. Aborting the upgrade..."); return new DefaultUpgradeStepResult( - id(), UpgradeStepResult.Result.SUCCEEDED, UpgradeStepResult.Action.ABORT); + id(), DataHubUpgradeState.SUCCEEDED, UpgradeStepResult.Action.ABORT); } catch (Exception e) { context.report().addLine("Failed to check if metadata_aspect_v2 table exists", e); - return new DefaultUpgradeStepResult(id(), UpgradeStepResult.Result.FAILED); + return new DefaultUpgradeStepResult(id(), DataHubUpgradeState.FAILED); } }; } diff --git a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/nocodecleanup/DeleteAspectTableStep.java b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/nocodecleanup/DeleteAspectTableStep.java index ba0a0124545e9..f310c65375fb3 100644 --- a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/nocodecleanup/DeleteAspectTableStep.java +++ b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/nocodecleanup/DeleteAspectTableStep.java @@ -4,6 +4,7 @@ import com.linkedin.datahub.upgrade.UpgradeStep; import com.linkedin.datahub.upgrade.UpgradeStepResult; import com.linkedin.datahub.upgrade.impl.DefaultUpgradeStepResult; +import com.linkedin.upgrade.DataHubUpgradeState; import io.ebean.Database; import java.util.function.Function; @@ -33,9 +34,9 @@ public Function executable() { _server.execute(_server.sqlUpdate("DROP TABLE IF EXISTS metadata_aspect;")); } catch (Exception e) { context.report().addLine("Failed to delete data from legacy table metadata_aspect", e); - return new DefaultUpgradeStepResult(id(), UpgradeStepResult.Result.FAILED); + return new DefaultUpgradeStepResult(id(), DataHubUpgradeState.FAILED); } - return new DefaultUpgradeStepResult(id(), UpgradeStepResult.Result.SUCCEEDED); + return new DefaultUpgradeStepResult(id(), DataHubUpgradeState.SUCCEEDED); }; } } diff --git a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/nocodecleanup/DeleteLegacyGraphRelationshipsStep.java b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/nocodecleanup/DeleteLegacyGraphRelationshipsStep.java index 5066e05f8bf5a..47da1da839643 100644 --- a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/nocodecleanup/DeleteLegacyGraphRelationshipsStep.java +++ b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/nocodecleanup/DeleteLegacyGraphRelationshipsStep.java @@ -6,6 +6,7 @@ import com.linkedin.datahub.upgrade.impl.DefaultUpgradeStepResult; import com.linkedin.metadata.graph.GraphService; import com.linkedin.metadata.graph.neo4j.Neo4jGraphService; +import com.linkedin.upgrade.DataHubUpgradeState; import java.util.function.Function; import lombok.extern.slf4j.Slf4j; @@ -42,9 +43,9 @@ public Function executable() { } } catch (Exception e) { context.report().addLine("Failed to delete legacy data from graph", e); - return new DefaultUpgradeStepResult(id(), UpgradeStepResult.Result.FAILED); + return new DefaultUpgradeStepResult(id(), DataHubUpgradeState.FAILED); } - return new DefaultUpgradeStepResult(id(), UpgradeStepResult.Result.SUCCEEDED); + return new DefaultUpgradeStepResult(id(), DataHubUpgradeState.SUCCEEDED); }; } } diff --git a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/nocodecleanup/DeleteLegacySearchIndicesStep.java b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/nocodecleanup/DeleteLegacySearchIndicesStep.java index 05656373377b9..33ace43fee8b2 100644 --- a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/nocodecleanup/DeleteLegacySearchIndicesStep.java +++ b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/nocodecleanup/DeleteLegacySearchIndicesStep.java @@ -5,6 +5,7 @@ import com.linkedin.datahub.upgrade.UpgradeStepResult; import com.linkedin.datahub.upgrade.impl.DefaultUpgradeStepResult; import com.linkedin.metadata.utils.elasticsearch.IndexConvention; +import com.linkedin.upgrade.DataHubUpgradeState; import java.util.function.Function; import lombok.RequiredArgsConstructor; import org.opensearch.action.admin.indices.delete.DeleteIndexRequest; @@ -43,9 +44,9 @@ public Function executable() { _searchClient.indices().delete(request, RequestOptions.DEFAULT); } catch (Exception e) { context.report().addLine("Failed to delete legacy search index: %s", e); - return new DefaultUpgradeStepResult(id(), UpgradeStepResult.Result.FAILED); + return new DefaultUpgradeStepResult(id(), DataHubUpgradeState.FAILED); } - return new DefaultUpgradeStepResult(id(), UpgradeStepResult.Result.SUCCEEDED); + return new DefaultUpgradeStepResult(id(), DataHubUpgradeState.SUCCEEDED); }; } } diff --git a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/nocodecleanup/NoCodeUpgradeQualificationStep.java b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/nocodecleanup/NoCodeUpgradeQualificationStep.java index 15c7584532e2c..d8284fe47f939 100644 --- a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/nocodecleanup/NoCodeUpgradeQualificationStep.java +++ b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/nocodecleanup/NoCodeUpgradeQualificationStep.java @@ -5,6 +5,7 @@ import com.linkedin.datahub.upgrade.UpgradeStepResult; import com.linkedin.datahub.upgrade.impl.DefaultUpgradeStepResult; import com.linkedin.metadata.entity.ebean.AspectStorageValidationUtil; +import com.linkedin.upgrade.DataHubUpgradeState; import io.ebean.Database; import java.util.function.Function; @@ -36,15 +37,15 @@ public Function executable() { .report() .addLine("You have not successfully migrated yet. Aborting the cleanup..."); return new DefaultUpgradeStepResult( - id(), UpgradeStepResult.Result.SUCCEEDED, UpgradeStepResult.Action.ABORT); + id(), DataHubUpgradeState.SUCCEEDED, UpgradeStepResult.Action.ABORT); } else { // Qualified. context.report().addLine("Found qualified upgrade candidate. Proceeding with upgrade..."); - return new DefaultUpgradeStepResult(id(), UpgradeStepResult.Result.SUCCEEDED); + return new DefaultUpgradeStepResult(id(), DataHubUpgradeState.SUCCEEDED); } } catch (Exception e) { context.report().addLine("Failed to check if metadata_aspect_v2 table exists: %s", e); - return new DefaultUpgradeStepResult(id(), UpgradeStepResult.Result.FAILED); + return new DefaultUpgradeStepResult(id(), DataHubUpgradeState.FAILED); } }; } diff --git a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/removeunknownaspects/RemoveClientIdAspectStep.java b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/removeunknownaspects/RemoveClientIdAspectStep.java index 6054599aa843c..16b78a8dc8c6b 100644 --- a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/removeunknownaspects/RemoveClientIdAspectStep.java +++ b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/removeunknownaspects/RemoveClientIdAspectStep.java @@ -6,6 +6,7 @@ import com.linkedin.datahub.upgrade.impl.DefaultUpgradeStepResult; import com.linkedin.gms.factory.telemetry.TelemetryUtils; import com.linkedin.metadata.entity.EntityService; +import com.linkedin.upgrade.DataHubUpgradeState; import java.util.HashMap; import java.util.function.Function; import lombok.RequiredArgsConstructor; @@ -38,8 +39,7 @@ public Function executable() { INVALID_CLIENT_ID_ASPECT, new HashMap<>(), true); - return (UpgradeStepResult) - new DefaultUpgradeStepResult(id(), UpgradeStepResult.Result.SUCCEEDED); + return (UpgradeStepResult) new DefaultUpgradeStepResult(id(), DataHubUpgradeState.SUCCEEDED); }; } } diff --git a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/restorebackup/ClearAspectV2TableStep.java b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/restorebackup/ClearAspectV2TableStep.java index addf6dcb89c1a..febc1bec6fe26 100644 --- a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/restorebackup/ClearAspectV2TableStep.java +++ b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/restorebackup/ClearAspectV2TableStep.java @@ -5,6 +5,7 @@ import com.linkedin.datahub.upgrade.UpgradeStepResult; import com.linkedin.datahub.upgrade.impl.DefaultUpgradeStepResult; import com.linkedin.metadata.entity.ebean.EbeanAspectV2; +import com.linkedin.upgrade.DataHubUpgradeState; import io.ebean.Database; import java.util.function.Function; @@ -26,7 +27,7 @@ public String id() { public Function executable() { return (context) -> { _server.find(EbeanAspectV2.class).delete(); - return new DefaultUpgradeStepResult(id(), UpgradeStepResult.Result.SUCCEEDED); + return new DefaultUpgradeStepResult(id(), DataHubUpgradeState.SUCCEEDED); }; } } diff --git a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/restorebackup/RestoreStorageStep.java b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/restorebackup/RestoreStorageStep.java index eb0b24acc1ac3..4d53b603c1eaf 100644 --- a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/restorebackup/RestoreStorageStep.java +++ b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/restorebackup/RestoreStorageStep.java @@ -20,6 +20,7 @@ import com.linkedin.metadata.models.AspectSpec; import com.linkedin.metadata.models.EntitySpec; import com.linkedin.metadata.models.registry.EntityRegistry; +import com.linkedin.upgrade.DataHubUpgradeState; import com.linkedin.util.Pair; import java.lang.reflect.InvocationTargetException; import java.net.URISyntaxException; @@ -89,7 +90,7 @@ public Function executable() { context.report().addLine("BACKUP_READER: " + backupReaderName.toString()); if (!backupReaderName.isPresent() || !_backupReaders.containsKey(backupReaderName.get())) { context.report().addLine("BACKUP_READER is not set or is not valid"); - return new DefaultUpgradeStepResult(id(), UpgradeStepResult.Result.FAILED); + return new DefaultUpgradeStepResult(id(), DataHubUpgradeState.FAILED); } Class> clazz = @@ -134,7 +135,7 @@ public Function executable() { } context.report().addLine(String.format("Added %d rows to the aspect v2 table", numRows)); - return new DefaultUpgradeStepResult(id(), UpgradeStepResult.Result.SUCCEEDED); + return new DefaultUpgradeStepResult(id(), DataHubUpgradeState.SUCCEEDED); }; } diff --git a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/restoreindices/SendMAEStep.java b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/restoreindices/SendMAEStep.java index 77d988f3176f2..8e62db444a565 100644 --- a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/restoreindices/SendMAEStep.java +++ b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/restoreindices/SendMAEStep.java @@ -10,6 +10,7 @@ import com.linkedin.metadata.entity.ebean.EbeanAspectV2; import com.linkedin.metadata.entity.restoreindices.RestoreIndicesArgs; import com.linkedin.metadata.entity.restoreindices.RestoreIndicesResult; +import com.linkedin.upgrade.DataHubUpgradeState; import io.ebean.Database; import io.ebean.ExpressionList; import java.util.ArrayList; @@ -188,7 +189,7 @@ public Function executable() { context.report().addLine(String.format("Rows processed this loop %d", rowsProcessed)); start += args.batchSize; } catch (InterruptedException | ExecutionException e) { - return new DefaultUpgradeStepResult(id(), UpgradeStepResult.Result.FAILED); + return new DefaultUpgradeStepResult(id(), DataHubUpgradeState.FAILED); } } } else { @@ -219,7 +220,7 @@ public Function executable() { "Failed to send MAEs for %d rows (%.2f%% of total).", rowCount - finalJobResult.rowsMigrated, percentFailed)); } - return new DefaultUpgradeStepResult(id(), UpgradeStepResult.Result.SUCCEEDED); + return new DefaultUpgradeStepResult(id(), DataHubUpgradeState.SUCCEEDED); }; } diff --git a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/system/AbstractMCLStep.java b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/system/AbstractMCLStep.java index 27e98259c8beb..6c70aee88675c 100644 --- a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/system/AbstractMCLStep.java +++ b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/system/AbstractMCLStep.java @@ -16,6 +16,7 @@ import com.linkedin.metadata.entity.ebean.PartitionedStream; import com.linkedin.metadata.entity.restoreindices.RestoreIndicesArgs; import com.linkedin.metadata.utils.AuditStampUtils; +import com.linkedin.upgrade.DataHubUpgradeState; import com.linkedin.util.Pair; import io.datahubproject.metadata.context.OperationContext; import java.util.List; @@ -134,7 +135,7 @@ public Function executable() { BootstrapStep.setUpgradeResult(opContext, getUpgradeIdUrn(), entityService); context.report().addLine("State updated: " + getUpgradeIdUrn()); - return new DefaultUpgradeStepResult(id(), UpgradeStepResult.Result.SUCCEEDED); + return new DefaultUpgradeStepResult(id(), DataHubUpgradeState.SUCCEEDED); }; } diff --git a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/system/browsepaths/BackfillBrowsePathsV2Step.java b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/system/browsepaths/BackfillBrowsePathsV2Step.java index a1d559d05ad2f..e6213a164febf 100644 --- a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/system/browsepaths/BackfillBrowsePathsV2Step.java +++ b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/system/browsepaths/BackfillBrowsePathsV2Step.java @@ -30,6 +30,7 @@ import com.linkedin.metadata.search.SearchService; import com.linkedin.metadata.utils.GenericRecordUtils; import com.linkedin.mxe.MetadataChangeProposal; +import com.linkedin.upgrade.DataHubUpgradeState; import io.datahubproject.metadata.context.OperationContext; import java.util.Set; import java.util.function.Function; @@ -98,7 +99,7 @@ public Function executable() { BootstrapStep.setUpgradeResult(context.opContext(), UPGRADE_ID_URN, entityService); - return new DefaultUpgradeStepResult(id(), UpgradeStepResult.Result.SUCCEEDED); + return new DefaultUpgradeStepResult(id(), DataHubUpgradeState.SUCCEEDED); }; } diff --git a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/system/elasticsearch/steps/BuildIndicesPostStep.java b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/system/elasticsearch/steps/BuildIndicesPostStep.java index 09f65c8448027..c7e59998860c1 100644 --- a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/system/elasticsearch/steps/BuildIndicesPostStep.java +++ b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/system/elasticsearch/steps/BuildIndicesPostStep.java @@ -14,6 +14,7 @@ import com.linkedin.metadata.search.elasticsearch.indexbuilder.ReindexConfig; import com.linkedin.metadata.shared.ElasticSearchIndexed; import com.linkedin.structured.StructuredPropertyDefinition; +import com.linkedin.upgrade.DataHubUpgradeState; import com.linkedin.util.Pair; import java.util.List; import java.util.Map; @@ -86,14 +87,14 @@ public Function executable() { log.error( "Partial index settings update, some indices may still be blocking writes." + " Please fix the error and rerun the BuildIndices upgrade job."); - return new DefaultUpgradeStepResult(id(), UpgradeStepResult.Result.FAILED); + return new DefaultUpgradeStepResult(id(), DataHubUpgradeState.FAILED); } } } catch (Exception e) { log.error("BuildIndicesPostStep failed.", e); - return new DefaultUpgradeStepResult(id(), UpgradeStepResult.Result.FAILED); + return new DefaultUpgradeStepResult(id(), DataHubUpgradeState.FAILED); } - return new DefaultUpgradeStepResult(id(), UpgradeStepResult.Result.SUCCEEDED); + return new DefaultUpgradeStepResult(id(), DataHubUpgradeState.SUCCEEDED); }; } } diff --git a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/system/elasticsearch/steps/BuildIndicesPreStep.java b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/system/elasticsearch/steps/BuildIndicesPreStep.java index 983e7f0c97f38..bd56042a1ff16 100644 --- a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/system/elasticsearch/steps/BuildIndicesPreStep.java +++ b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/system/elasticsearch/steps/BuildIndicesPreStep.java @@ -15,6 +15,7 @@ import com.linkedin.metadata.search.elasticsearch.indexbuilder.ReindexConfig; import com.linkedin.metadata.shared.ElasticSearchIndexed; import com.linkedin.structured.StructuredPropertyDefinition; +import com.linkedin.upgrade.DataHubUpgradeState; import com.linkedin.util.Pair; import java.io.IOException; import java.util.List; @@ -69,7 +70,7 @@ public Function executable() { log.error( "Partial index settings update, some indices may still be blocking writes." + " Please fix the error and re-run the BuildIndices upgrade job."); - return new DefaultUpgradeStepResult(id(), UpgradeStepResult.Result.FAILED); + return new DefaultUpgradeStepResult(id(), DataHubUpgradeState.FAILED); } // Clone indices @@ -87,15 +88,15 @@ public Function executable() { log.error( "Partial index settings update, cloned indices may need to be cleaned up: {}", clonedName); - return new DefaultUpgradeStepResult(id(), UpgradeStepResult.Result.FAILED); + return new DefaultUpgradeStepResult(id(), DataHubUpgradeState.FAILED); } } } } catch (Exception e) { log.error("BuildIndicesPreStep failed.", e); - return new DefaultUpgradeStepResult(id(), UpgradeStepResult.Result.FAILED); + return new DefaultUpgradeStepResult(id(), DataHubUpgradeState.FAILED); } - return new DefaultUpgradeStepResult(id(), UpgradeStepResult.Result.SUCCEEDED); + return new DefaultUpgradeStepResult(id(), DataHubUpgradeState.SUCCEEDED); }; } diff --git a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/system/elasticsearch/steps/BuildIndicesStep.java b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/system/elasticsearch/steps/BuildIndicesStep.java index 5cf370162a312..0aefc078ffdcb 100644 --- a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/system/elasticsearch/steps/BuildIndicesStep.java +++ b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/system/elasticsearch/steps/BuildIndicesStep.java @@ -7,6 +7,7 @@ import com.linkedin.datahub.upgrade.impl.DefaultUpgradeStepResult; import com.linkedin.metadata.shared.ElasticSearchIndexed; import com.linkedin.structured.StructuredPropertyDefinition; +import com.linkedin.upgrade.DataHubUpgradeState; import com.linkedin.util.Pair; import java.util.List; import java.util.Set; @@ -40,9 +41,9 @@ public Function executable() { } } catch (Exception e) { log.error("BuildIndicesStep failed.", e); - return new DefaultUpgradeStepResult(id(), UpgradeStepResult.Result.FAILED); + return new DefaultUpgradeStepResult(id(), DataHubUpgradeState.FAILED); } - return new DefaultUpgradeStepResult(id(), UpgradeStepResult.Result.SUCCEEDED); + return new DefaultUpgradeStepResult(id(), DataHubUpgradeState.SUCCEEDED); }; } } diff --git a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/system/elasticsearch/steps/CleanIndicesStep.java b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/system/elasticsearch/steps/CleanIndicesStep.java index fd5592c4ead25..63b23fefceaf9 100644 --- a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/system/elasticsearch/steps/CleanIndicesStep.java +++ b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/system/elasticsearch/steps/CleanIndicesStep.java @@ -10,6 +10,7 @@ import com.linkedin.metadata.search.elasticsearch.indexbuilder.ESIndexBuilder; import com.linkedin.metadata.shared.ElasticSearchIndexed; import com.linkedin.structured.StructuredPropertyDefinition; +import com.linkedin.upgrade.DataHubUpgradeState; import com.linkedin.util.Pair; import java.util.List; import java.util.Set; @@ -54,9 +55,9 @@ public Function executable() { reindexConfig -> ESIndexBuilder.cleanIndex(searchClient, esConfig, reindexConfig)); } catch (Exception e) { log.error("CleanUpIndicesStep failed.", e); - return new DefaultUpgradeStepResult(id(), UpgradeStepResult.Result.FAILED); + return new DefaultUpgradeStepResult(id(), DataHubUpgradeState.FAILED); } - return new DefaultUpgradeStepResult(id(), UpgradeStepResult.Result.SUCCEEDED); + return new DefaultUpgradeStepResult(id(), DataHubUpgradeState.SUCCEEDED); }; } } diff --git a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/system/elasticsearch/steps/DataHubStartupStep.java b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/system/elasticsearch/steps/DataHubStartupStep.java index d2b5965a3109c..1d83810580cf5 100644 --- a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/system/elasticsearch/steps/DataHubStartupStep.java +++ b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/system/elasticsearch/steps/DataHubStartupStep.java @@ -6,6 +6,7 @@ import com.linkedin.datahub.upgrade.impl.DefaultUpgradeStepResult; import com.linkedin.metadata.dao.producer.KafkaEventProducer; import com.linkedin.mxe.DataHubUpgradeHistoryEvent; +import com.linkedin.upgrade.DataHubUpgradeState; import java.util.function.Function; import lombok.RequiredArgsConstructor; import lombok.extern.slf4j.Slf4j; @@ -36,9 +37,9 @@ public Function executable() { log.info("System Update finished for version: {}", _version); } catch (Exception e) { log.error("DataHubStartupStep failed.", e); - return new DefaultUpgradeStepResult(id(), UpgradeStepResult.Result.FAILED); + return new DefaultUpgradeStepResult(id(), DataHubUpgradeState.FAILED); } - return new DefaultUpgradeStepResult(id(), UpgradeStepResult.Result.SUCCEEDED); + return new DefaultUpgradeStepResult(id(), DataHubUpgradeState.SUCCEEDED); }; } } diff --git a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/system/policyfields/BackfillPolicyFieldsStep.java b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/system/policyfields/BackfillPolicyFieldsStep.java index c65a45aefc357..ad28e6b6382d4 100644 --- a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/system/policyfields/BackfillPolicyFieldsStep.java +++ b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/system/policyfields/BackfillPolicyFieldsStep.java @@ -27,6 +27,7 @@ import com.linkedin.metadata.search.SearchEntity; import com.linkedin.metadata.search.SearchService; import com.linkedin.policy.DataHubPolicyInfo; +import com.linkedin.upgrade.DataHubUpgradeState; import io.datahubproject.metadata.context.OperationContext; import java.net.URISyntaxException; import java.util.Collections; @@ -90,7 +91,7 @@ public Function executable() { BootstrapStep.setUpgradeResult(context.opContext(), UPGRADE_ID_URN, entityService); - return new DefaultUpgradeStepResult(id(), UpgradeStepResult.Result.SUCCEEDED); + return new DefaultUpgradeStepResult(id(), DataHubUpgradeState.SUCCEEDED); }; } diff --git a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/system/schemafield/GenerateSchemaFieldsFromSchemaMetadata.java b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/system/schemafield/GenerateSchemaFieldsFromSchemaMetadata.java new file mode 100644 index 0000000000000..20bc65bf15dae --- /dev/null +++ b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/system/schemafield/GenerateSchemaFieldsFromSchemaMetadata.java @@ -0,0 +1,48 @@ +package com.linkedin.datahub.upgrade.system.schemafield; + +import com.google.common.collect.ImmutableList; +import com.linkedin.datahub.upgrade.UpgradeStep; +import com.linkedin.datahub.upgrade.system.NonBlockingSystemUpgrade; +import com.linkedin.metadata.entity.AspectDao; +import com.linkedin.metadata.entity.EntityService; +import io.datahubproject.metadata.context.OperationContext; +import java.util.List; +import javax.annotation.Nonnull; +import lombok.extern.slf4j.Slf4j; + +/** + * A {@link NonBlockingSystemUpgrade} upgrade job that generates schema fields from schema metadata. + */ +@Slf4j +public class GenerateSchemaFieldsFromSchemaMetadata implements NonBlockingSystemUpgrade { + + private final List _steps; + + public GenerateSchemaFieldsFromSchemaMetadata( + @Nonnull OperationContext opContext, + EntityService entityService, + AspectDao aspectDao, + boolean enabled, + Integer batchSize, + Integer batchDelayMs, + Integer limit) { + if (enabled) { + _steps = + ImmutableList.of( + new GenerateSchemaFieldsFromSchemaMetadataStep( + opContext, entityService, aspectDao, batchSize, batchDelayMs, limit)); + } else { + _steps = ImmutableList.of(); + } + } + + @Override + public String id() { + return this.getClass().getName(); + } + + @Override + public List steps() { + return _steps; + } +} diff --git a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/system/schemafield/GenerateSchemaFieldsFromSchemaMetadataStep.java b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/system/schemafield/GenerateSchemaFieldsFromSchemaMetadataStep.java new file mode 100644 index 0000000000000..eece83f4ab713 --- /dev/null +++ b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/system/schemafield/GenerateSchemaFieldsFromSchemaMetadataStep.java @@ -0,0 +1,256 @@ +package com.linkedin.datahub.upgrade.system.schemafield; + +import static com.linkedin.metadata.Constants.APP_SOURCE; +import static com.linkedin.metadata.Constants.DATASET_ENTITY_NAME; +import static com.linkedin.metadata.Constants.SCHEMA_METADATA_ASPECT_NAME; +import static com.linkedin.metadata.Constants.STATUS_ASPECT_NAME; +import static com.linkedin.metadata.Constants.SYSTEM_UPDATE_SOURCE; + +import com.google.common.annotations.VisibleForTesting; +import com.linkedin.common.urn.Urn; +import com.linkedin.data.template.StringMap; +import com.linkedin.datahub.upgrade.UpgradeContext; +import com.linkedin.datahub.upgrade.UpgradeStep; +import com.linkedin.datahub.upgrade.UpgradeStepResult; +import com.linkedin.datahub.upgrade.impl.DefaultUpgradeStepResult; +import com.linkedin.events.metadata.ChangeType; +import com.linkedin.metadata.aspect.ReadItem; +import com.linkedin.metadata.aspect.batch.AspectsBatch; +import com.linkedin.metadata.boot.BootstrapStep; +import com.linkedin.metadata.entity.AspectDao; +import com.linkedin.metadata.entity.EntityService; +import com.linkedin.metadata.entity.EntityUtils; +import com.linkedin.metadata.entity.ebean.EbeanAspectV2; +import com.linkedin.metadata.entity.ebean.PartitionedStream; +import com.linkedin.metadata.entity.ebean.batch.AspectsBatchImpl; +import com.linkedin.metadata.entity.ebean.batch.ChangeItemImpl; +import com.linkedin.metadata.entity.restoreindices.RestoreIndicesArgs; +import com.linkedin.mxe.SystemMetadata; +import com.linkedin.upgrade.DataHubUpgradeResult; +import com.linkedin.upgrade.DataHubUpgradeState; +import io.datahubproject.metadata.context.OperationContext; +import java.util.List; +import java.util.Map; +import java.util.Optional; +import java.util.Set; +import java.util.function.Function; +import java.util.stream.Collectors; +import lombok.extern.slf4j.Slf4j; +import org.jetbrains.annotations.Nullable; + +/** + * The `GenerateSchemaFieldsFromSchemaMetadataStep` class is an implementation of the `UpgradeStep` + * interface. This class is responsible for generating schema fields from schema metadata during an + * upgrade process. + * + *

The step performs the following actions: 1. Initializes with provided operation context, + * entity service, and aspect DAO. 2. Provides a unique identifier for the upgrade step. 3. + * Determines if the upgrade should be skipped based on the environment variable. 4. Executes the + * upgrade step which involves streaming aspects in batches, processing them, and updating schema + * fields. + * + *

This class utilizes various metadata and entity services to perform its operations, and + * includes configuration parameters such as batch size, delay between batches, and limits. + * + *

Environment Variables: - `SKIP_GENERATE_SCHEMA_FIELDS_FROM_SCHEMA_METADATA`: If set to `true`, + * the upgrade step is skipped. + * + *

Note: Schema Fields are generated with a status aspect to indicate presence of the field. No + * tags, documentation or other aspects are generated. We will write an upgrade to this job to + * generate the other aspects in the future (v2). + */ +@Slf4j +public class GenerateSchemaFieldsFromSchemaMetadataStep implements UpgradeStep { + private static final String LAST_URN_KEY = "lastUrn"; + private static final List REQUIRED_ASPECTS = + List.of(SCHEMA_METADATA_ASPECT_NAME, STATUS_ASPECT_NAME); + + private final OperationContext opContext; + private final EntityService entityService; + private final AspectDao aspectDao; + + private final int batchSize; + private final int batchDelayMs; + private final int limit; + + public GenerateSchemaFieldsFromSchemaMetadataStep( + OperationContext opContext, + EntityService entityService, + AspectDao aspectDao, + Integer batchSize, + Integer batchDelayMs, + Integer limit) { + this.opContext = opContext; + this.entityService = entityService; + this.aspectDao = aspectDao; + this.batchSize = batchSize; + this.batchDelayMs = batchDelayMs; + this.limit = limit; + log.info("GenerateSchemaFieldsFromSchemaMetadataStep initialized"); + } + + @Override + public String id() { + return "schema-field-from-schema-metadata-v1"; + } + + @VisibleForTesting + @Nullable + public String getUrnLike() { + return "urn:li:" + DATASET_ENTITY_NAME + ":%"; + } + + /** + * Returns whether the upgrade should be skipped. Uses previous run history or the environment + * variable SKIP_GENERATE_SCHEMA_FIELDS_FROM_SCHEMA_METADATA to determine whether to skip. + */ + public boolean skip(UpgradeContext context) { + if (Boolean.parseBoolean(System.getenv("SKIP_GENERATE_SCHEMA_FIELDS_FROM_SCHEMA_METADATA"))) { + log.info( + "Environment variable SKIP_GENERATE_SCHEMA_FIELDS_FROM_SCHEMA_METADATA is set to true. Skipping."); + return true; + } + + Optional prevResult = + context.upgrade().getUpgradeResult(opContext, getUpgradeIdUrn(), entityService); + + return prevResult + .filter( + result -> + DataHubUpgradeState.SUCCEEDED.equals(result.getState()) + || DataHubUpgradeState.ABORTED.equals(result.getState())) + .isPresent(); + } + + protected Urn getUpgradeIdUrn() { + return BootstrapStep.getUpgradeUrn(id()); + } + + @Override + public Function executable() { + log.info("Starting GenerateSchemaFieldsFromSchemaMetadataStep"); + return (context) -> { + // Resume state + Optional prevResult = + context.upgrade().getUpgradeResult(opContext, getUpgradeIdUrn(), entityService); + String resumeUrn = + prevResult + .filter( + result -> + DataHubUpgradeState.IN_PROGRESS.equals(result.getState()) + && result.getResult() != null + && result.getResult().containsKey(LAST_URN_KEY)) + .map(result -> result.getResult().get(LAST_URN_KEY)) + .orElse(null); + if (resumeUrn != null) { + log.info("{}: Resuming from URN: {}", getUpgradeIdUrn(), resumeUrn); + } + + // re-using for configuring the sql scan + RestoreIndicesArgs args = + new RestoreIndicesArgs() + .aspectNames(REQUIRED_ASPECTS) + .batchSize(batchSize) + .lastUrn(resumeUrn) + .urnBasedPagination(resumeUrn != null) + .limit(limit); + + if (getUrnLike() != null) { + args = args.urnLike(getUrnLike()); + } + + try (PartitionedStream stream = aspectDao.streamAspectBatches(args)) { + stream + .partition(args.batchSize) + .forEach( + batch -> { + log.info("Processing batch of size {}.", batchSize); + + AspectsBatch aspectsBatch = + AspectsBatchImpl.builder() + .retrieverContext(opContext.getRetrieverContext().get()) + .items( + batch + .flatMap( + ebeanAspectV2 -> + EntityUtils.toSystemAspectFromEbeanAspects( + opContext.getRetrieverContext().get(), + Set.of(ebeanAspectV2)) + .stream()) + .map( + systemAspect -> + ChangeItemImpl.builder() + .changeType(ChangeType.UPSERT) + .urn(systemAspect.getUrn()) + .entitySpec(systemAspect.getEntitySpec()) + .aspectName(systemAspect.getAspectName()) + .aspectSpec(systemAspect.getAspectSpec()) + .recordTemplate(systemAspect.getRecordTemplate()) + .auditStamp(systemAspect.getAuditStamp()) + .systemMetadata( + withAppSource(systemAspect.getSystemMetadata())) + .build( + opContext + .getRetrieverContext() + .get() + .getAspectRetriever())) + .collect(Collectors.toList())) + .build(); + + // re-ingest the aspects to trigger side effects + entityService.ingestAspects(opContext, aspectsBatch, true, false); + + // record progress + Urn lastUrn = + aspectsBatch.getItems().stream() + .reduce((a, b) -> b) + .map(ReadItem::getUrn) + .orElse(null); + if (lastUrn != null) { + log.info("{}: Saving state. Last urn:{}", getUpgradeIdUrn(), lastUrn); + context + .upgrade() + .setUpgradeResult( + opContext, + getUpgradeIdUrn(), + entityService, + DataHubUpgradeState.IN_PROGRESS, + Map.of(LAST_URN_KEY, lastUrn.toString())); + } + + if (batchDelayMs > 0) { + log.info("Sleeping for {} ms", batchDelayMs); + try { + Thread.sleep(batchDelayMs); + } catch (InterruptedException e) { + throw new RuntimeException(e); + } + } + }); + } + + BootstrapStep.setUpgradeResult(opContext, getUpgradeIdUrn(), entityService); + context.report().addLine("State updated: " + getUpgradeIdUrn()); + + return new DefaultUpgradeStepResult(id(), DataHubUpgradeState.SUCCEEDED); + }; + } + + private static SystemMetadata withAppSource(@Nullable SystemMetadata systemMetadata) { + SystemMetadata withAppSourceSystemMetadata = null; + try { + withAppSourceSystemMetadata = + systemMetadata != null + ? new SystemMetadata(systemMetadata.copy().data()) + : new SystemMetadata(); + } catch (CloneNotSupportedException e) { + throw new RuntimeException(e); + } + StringMap properties = withAppSourceSystemMetadata.getProperties(); + StringMap map = properties != null ? new StringMap(properties.data()) : new StringMap(); + map.put(APP_SOURCE, SYSTEM_UPDATE_SOURCE); + + withAppSourceSystemMetadata.setProperties(map); + return withAppSourceSystemMetadata; + } +} diff --git a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/system/schemafield/MigrateSchemaFieldDocIds.java b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/system/schemafield/MigrateSchemaFieldDocIds.java new file mode 100644 index 0000000000000..6cfd0d8c032ec --- /dev/null +++ b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/system/schemafield/MigrateSchemaFieldDocIds.java @@ -0,0 +1,50 @@ +package com.linkedin.datahub.upgrade.system.schemafield; + +import com.google.common.collect.ImmutableList; +import com.linkedin.datahub.upgrade.UpgradeStep; +import com.linkedin.datahub.upgrade.system.NonBlockingSystemUpgrade; +import com.linkedin.gms.factory.search.BaseElasticSearchComponentsFactory; +import com.linkedin.metadata.entity.EntityService; +import io.datahubproject.metadata.context.OperationContext; +import java.util.List; +import javax.annotation.Nonnull; +import lombok.extern.slf4j.Slf4j; + +/** Migrate from URN document ids to hash based ids */ +@Slf4j +public class MigrateSchemaFieldDocIds implements NonBlockingSystemUpgrade { + private final List _steps; + + public MigrateSchemaFieldDocIds( + @Nonnull OperationContext opContext, + BaseElasticSearchComponentsFactory.BaseElasticSearchComponents elasticSearchComponents, + EntityService entityService, + boolean enabled, + Integer batchSize, + Integer batchDelayMs, + Integer limit) { + if (enabled) { + _steps = + ImmutableList.of( + new MigrateSchemaFieldDocIdsStep( + opContext, + elasticSearchComponents, + entityService, + batchSize, + batchDelayMs, + limit)); + } else { + _steps = ImmutableList.of(); + } + } + + @Override + public String id() { + return this.getClass().getName(); + } + + @Override + public List steps() { + return _steps; + } +} diff --git a/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/system/schemafield/MigrateSchemaFieldDocIdsStep.java b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/system/schemafield/MigrateSchemaFieldDocIdsStep.java new file mode 100644 index 0000000000000..ab35b42bcc848 --- /dev/null +++ b/datahub-upgrade/src/main/java/com/linkedin/datahub/upgrade/system/schemafield/MigrateSchemaFieldDocIdsStep.java @@ -0,0 +1,291 @@ +package com.linkedin.datahub.upgrade.system.schemafield; + +import static com.linkedin.metadata.Constants.SCHEMA_FIELD_ENTITY_NAME; +import static com.linkedin.metadata.utils.GenericRecordUtils.entityResponseToSystemAspectMap; + +import com.linkedin.common.urn.Urn; +import com.linkedin.common.urn.UrnUtils; +import com.linkedin.datahub.upgrade.UpgradeContext; +import com.linkedin.datahub.upgrade.UpgradeStep; +import com.linkedin.datahub.upgrade.UpgradeStepResult; +import com.linkedin.datahub.upgrade.impl.DefaultUpgradeStepResult; +import com.linkedin.events.metadata.ChangeType; +import com.linkedin.gms.factory.search.BaseElasticSearchComponentsFactory; +import com.linkedin.metadata.aspect.SystemAspect; +import com.linkedin.metadata.boot.BootstrapStep; +import com.linkedin.metadata.entity.EntityService; +import com.linkedin.metadata.models.registry.EntityRegistry; +import com.linkedin.metadata.utils.AuditStampUtils; +import com.linkedin.upgrade.DataHubUpgradeResult; +import com.linkedin.upgrade.DataHubUpgradeState; +import io.datahubproject.metadata.context.OperationContext; +import java.io.IOException; +import java.net.URISyntaxException; +import java.util.Arrays; +import java.util.Map; +import java.util.Optional; +import java.util.Set; +import java.util.concurrent.ExecutionException; +import java.util.concurrent.Future; +import java.util.function.Function; +import java.util.stream.Collectors; +import lombok.extern.slf4j.Slf4j; +import org.opensearch.action.bulk.BulkProcessor; +import org.opensearch.action.bulk.BulkRequest; +import org.opensearch.action.bulk.BulkResponse; +import org.opensearch.action.delete.DeleteRequest; +import org.opensearch.action.search.SearchRequest; +import org.opensearch.action.search.SearchResponse; +import org.opensearch.action.search.SearchScrollRequest; +import org.opensearch.client.RequestOptions; +import org.opensearch.client.RestHighLevelClient; +import org.opensearch.common.unit.TimeValue; +import org.opensearch.index.query.QueryBuilder; +import org.opensearch.index.query.QueryBuilders; +import org.opensearch.script.Script; +import org.opensearch.search.Scroll; +import org.opensearch.search.SearchHit; +import org.opensearch.search.builder.SearchSourceBuilder; +import org.opensearch.search.sort.SortOrder; + +/** + * Performs a migration from one document id convention to another. + * + *

This step identifies documents using the old convention, if any, and generates MCLs for + * aspects for updating the data in the new document. + * + *

Finally, a DELETE is executed on the legacy document id. + */ +@Slf4j +public class MigrateSchemaFieldDocIdsStep implements UpgradeStep { + + private final OperationContext opContext; + private final EntityRegistry entityRegistry; + private final RestHighLevelClient elasticsearchClient; + private final BulkProcessor bulkProcessor; + private final String indexName; + private final EntityService entityService; + private final Scroll scroll = new Scroll(TimeValue.timeValueMinutes(5L)); + private final int batchSize; + private final int batchDelayMs; + private final int limit; + + public MigrateSchemaFieldDocIdsStep( + OperationContext opContext, + BaseElasticSearchComponentsFactory.BaseElasticSearchComponents elasticSearchComponents, + EntityService entityService, + int batchSize, + int batchDelayMs, + int limit) { + this.opContext = opContext; + this.entityRegistry = opContext.getEntityRegistry(); + this.elasticsearchClient = elasticSearchComponents.getSearchClient(); + this.entityService = entityService; + this.batchSize = batchSize; + this.batchDelayMs = batchDelayMs; + this.limit = limit; + this.indexName = + elasticSearchComponents.getIndexConvention().getEntityIndexName(SCHEMA_FIELD_ENTITY_NAME); + this.bulkProcessor = buildBuildProcessor(); + log.info("MigrateSchemaFieldDocIdsStep initialized"); + } + + @Override + public String id() { + return "schema-field-doc-id-v1"; + } + + /** + * Returns whether the upgrade should be skipped. Uses previous run history or the environment + * variable SKIP_MIGRATE_SCHEMA_FIELDS_DOC_ID to determine whether to skip. + */ + public boolean skip(UpgradeContext context) { + if (Boolean.parseBoolean(System.getenv("SKIP_MIGRATE_SCHEMA_FIELDS_DOC_ID"))) { + log.info("Environment variable SKIP_MIGRATE_SCHEMA_FIELDS_DOC_ID is set to true. Skipping."); + return true; + } + + Optional prevResult = + context.upgrade().getUpgradeResult(opContext, getUpgradeIdUrn(), entityService); + + return prevResult + .filter( + result -> + DataHubUpgradeState.SUCCEEDED.equals(result.getState()) + || DataHubUpgradeState.ABORTED.equals(result.getState())) + .isPresent(); + } + + protected Urn getUpgradeIdUrn() { + return BootstrapStep.getUpgradeUrn(id()); + } + + @Override + public Function executable() { + return (context) -> { + final SearchRequest searchRequest = buildSearchRequest(); + String scrollId = null; + int migratedCount = 0; + + try { + do { + log.info( + "Upgrading batch of schemaFields {}-{}", migratedCount, migratedCount + batchSize); + scrollId = updateDocId(searchRequest, scrollId); + migratedCount += batchSize; + + if (limit > 0 && migratedCount >= limit) { + log.info("Exiting early due to limit."); + break; + } + + if (batchDelayMs > 0) { + log.info("Sleeping for {} ms", batchDelayMs); + try { + Thread.sleep(batchDelayMs); + } catch (InterruptedException e) { + throw new RuntimeException(e); + } + } + } while (scrollId != null); + } catch (Exception e) { + throw new RuntimeException(e); + } finally { + bulkProcessor.flush(); + } + + BootstrapStep.setUpgradeResult(context.opContext(), getUpgradeIdUrn(), entityService); + + return new DefaultUpgradeStepResult(id(), DataHubUpgradeState.SUCCEEDED); + }; + } + + private BulkProcessor buildBuildProcessor() { + return BulkProcessor.builder( + (request, bulkListener) -> + elasticsearchClient.bulkAsync(request, RequestOptions.DEFAULT, bulkListener), + new BulkProcessor.Listener() { + @Override + public void beforeBulk(long executionId, BulkRequest request) { + log.debug("Deleting {} legacy schemaField documents", request.numberOfActions()); + } + + @Override + public void afterBulk(long executionId, BulkRequest request, BulkResponse response) { + log.debug( + "Delete executed {} failures", response.hasFailures() ? "with" : "without"); + } + + @Override + public void afterBulk(long executionId, BulkRequest request, Throwable failure) { + log.warn("Error while executing legacy schemaField documents", failure); + } + }) + .setBulkActions(batchSize) + .build(); + } + + private SearchRequest buildSearchRequest() { + Script oldDocumentIdQuery = + new Script( + Script.DEFAULT_SCRIPT_TYPE, + "painless", + "doc['_id'][0].indexOf('urn%3Ali%3AschemaField%3A%28urn%3Ali%3Adataset%3A') > -1", + Map.of()); + QueryBuilder queryBuilder = QueryBuilders.scriptQuery(oldDocumentIdQuery); + + SearchRequest searchRequest = new SearchRequest(indexName); + searchRequest.scroll(scroll); + SearchSourceBuilder searchSourceBuilder = new SearchSourceBuilder(); + searchSourceBuilder.query(queryBuilder); + searchSourceBuilder.size(batchSize); + searchSourceBuilder.sort("urn", SortOrder.ASC); + searchRequest.source(searchSourceBuilder); + + return searchRequest; + } + + private String updateDocId(final SearchRequest searchRequest, final String scrollId) + throws IOException, URISyntaxException { + final SearchResponse searchResponse; + + if (scrollId == null) { + searchResponse = elasticsearchClient.search(searchRequest, RequestOptions.DEFAULT); + } else { + SearchScrollRequest scrollRequest = new SearchScrollRequest(scrollId); + scrollRequest.scroll(scroll); + searchResponse = elasticsearchClient.scroll(scrollRequest, RequestOptions.DEFAULT); + } + + final SearchHit[] searchHits = searchResponse.getHits().getHits(); + final String nextScrollId = searchResponse.getScrollId(); + + if (searchHits.length > 0) { + Set documentIds = + Arrays.stream(searchHits).map(SearchHit::getId).collect(Collectors.toSet()); + Set batchUrns = + Arrays.stream(searchHits) + .map(hit -> hit.getSourceAsMap().get("urn").toString()) + .map(UrnUtils::getUrn) + .collect(Collectors.toSet()); + + log.info("Sending MCLs for {} entities", batchUrns.size()); + emitMCLs(batchUrns); + log.info("Removing old document ids for {} documents", documentIds.size()); + deleteDocumentIds(documentIds); + + return nextScrollId; + } + + return null; + } + + private void emitMCLs(Set batchUrns) throws URISyntaxException { + Set batchAspects = + entityResponseToSystemAspectMap( + entityService.getEntitiesV2( + opContext, + SCHEMA_FIELD_ENTITY_NAME, + batchUrns, + opContext.getEntityAspectNames(SCHEMA_FIELD_ENTITY_NAME), + false), + entityRegistry) + .values() + .stream() + .flatMap(m -> m.values().stream()) + .collect(Collectors.toSet()); + + Set> futures = + batchAspects.stream() + .map( + systemAspect -> + entityService + .alwaysProduceMCLAsync( + opContext, + systemAspect.getUrn(), + systemAspect.getUrn().getEntityType(), + systemAspect.getAspectName(), + systemAspect.getAspectSpec(), + null, + systemAspect.getRecordTemplate(), + null, + systemAspect.getSystemMetadata(), + AuditStampUtils.createDefaultAuditStamp(), + ChangeType.UPSERT) + .getFirst()) + .collect(Collectors.toSet()); + + futures.forEach( + f -> { + try { + f.get(); + } catch (InterruptedException | ExecutionException e) { + throw new RuntimeException(e); + } + }); + } + + private void deleteDocumentIds(Set documentIds) { + documentIds.forEach(docId -> bulkProcessor.add(new DeleteRequest(indexName, docId))); + } +} diff --git a/datahub-upgrade/src/test/java/com/linkedin/datahub/upgrade/DatahubUpgradeNoSchemaRegistryTest.java b/datahub-upgrade/src/test/java/com/linkedin/datahub/upgrade/DatahubUpgradeNoSchemaRegistryTest.java index 8c9b72b0d88e5..ffc5d8d765f65 100644 --- a/datahub-upgrade/src/test/java/com/linkedin/datahub/upgrade/DatahubUpgradeNoSchemaRegistryTest.java +++ b/datahub-upgrade/src/test/java/com/linkedin/datahub/upgrade/DatahubUpgradeNoSchemaRegistryTest.java @@ -13,6 +13,7 @@ import com.linkedin.metadata.dao.producer.KafkaEventProducer; import com.linkedin.metadata.entity.EntityServiceImpl; import com.linkedin.mxe.Topics; +import com.linkedin.upgrade.DataHubUpgradeState; import io.confluent.kafka.schemaregistry.client.SchemaRegistryClient; import io.confluent.kafka.schemaregistry.client.rest.exceptions.RestClientException; import io.datahubproject.metadata.context.OperationContext; @@ -79,7 +80,7 @@ public void testSystemUpdateKafkaProducerOverride() throws RestClientException, @Test public void testSystemUpdateSend() { - UpgradeStepResult.Result result = + DataHubUpgradeState result = systemUpdate.steps().stream() .filter(s -> s.id().equals("DataHubStartupStep")) .findFirst() diff --git a/datahub-upgrade/src/test/java/com/linkedin/datahub/upgrade/schemafield/GenerateSchemaFieldsFromSchemaMetadataStepTest.java b/datahub-upgrade/src/test/java/com/linkedin/datahub/upgrade/schemafield/GenerateSchemaFieldsFromSchemaMetadataStepTest.java new file mode 100644 index 0000000000000..3a2728b4e1d3d --- /dev/null +++ b/datahub-upgrade/src/test/java/com/linkedin/datahub/upgrade/schemafield/GenerateSchemaFieldsFromSchemaMetadataStepTest.java @@ -0,0 +1,110 @@ +package com.linkedin.datahub.upgrade.schemafield; + +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertFalse; +import static org.junit.jupiter.api.Assertions.assertTrue; +import static org.mockito.Mockito.any; +import static org.mockito.Mockito.anyInt; +import static org.mockito.Mockito.mock; +import static org.mockito.Mockito.verify; +import static org.mockito.Mockito.when; + +import com.linkedin.datahub.upgrade.UpgradeContext; +import com.linkedin.datahub.upgrade.UpgradeStepResult; +import com.linkedin.datahub.upgrade.system.schemafield.GenerateSchemaFieldsFromSchemaMetadataStep; +import com.linkedin.metadata.aspect.SystemAspect; +import com.linkedin.metadata.entity.AspectDao; +import com.linkedin.metadata.entity.EntityService; +import com.linkedin.metadata.entity.ebean.EbeanAspectV2; +import com.linkedin.metadata.entity.ebean.PartitionedStream; +import com.linkedin.metadata.entity.restoreindices.RestoreIndicesArgs; +import com.linkedin.schema.SchemaMetadata; +import com.linkedin.upgrade.DataHubUpgradeState; +import io.datahubproject.metadata.context.OperationContext; +import io.datahubproject.metadata.context.RetrieverContext; +import java.util.Optional; +import java.util.stream.Stream; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import org.mockito.ArgumentCaptor; +import org.mockito.Mock; +import org.mockito.MockitoAnnotations; + +public class GenerateSchemaFieldsFromSchemaMetadataStepTest { + + @Mock private OperationContext mockOpContext; + + @Mock private EntityService mockEntityService; + + @Mock private AspectDao mockAspectDao; + + @Mock private RetrieverContext mockRetrieverContext; + + private GenerateSchemaFieldsFromSchemaMetadataStep step; + + @BeforeEach + public void setup() { + MockitoAnnotations.openMocks(this); + step = + new GenerateSchemaFieldsFromSchemaMetadataStep( + mockOpContext, mockEntityService, mockAspectDao, 10, 100, 1000); + when(mockOpContext.getRetrieverContext()).thenReturn(Optional.of(mockRetrieverContext)); + } + + /** Test to verify the correct step ID is returned. */ + @Test + public void testId() { + assertEquals("schema-field-from-schema-metadata-v1", step.id()); + } + + /** Test to verify the skip logic based on the environment variable. */ + @Test + public void testSkip() { + UpgradeContext mockContext = mock(UpgradeContext.class); + System.setProperty("SKIP_GENERATE_SCHEMA_FIELDS_FROM_SCHEMA_METADATA", "true"); + assertTrue(step.skip(mockContext)); + + System.setProperty("SKIP_GENERATE_SCHEMA_FIELDS_FROM_SCHEMA_METADATA", "false"); + assertFalse(step.skip(mockContext)); + } + + /** Test to verify the correct URN pattern is returned. */ + @Test + public void testGetUrnLike() { + assertEquals("urn:li:dataset:%", step.getUrnLike()); + } + + /** + * Test to verify the executable function processes batches correctly and returns a success + * result. + */ + @Test + public void testExecutable() { + UpgradeContext mockContext = mock(UpgradeContext.class); + + EbeanAspectV2 mockAspect = mock(EbeanAspectV2.class); + PartitionedStream mockStream = mock(PartitionedStream.class); + when(mockAspectDao.streamAspectBatches(any(RestoreIndicesArgs.class))).thenReturn(mockStream); + + when(mockStream.partition(anyInt())).thenReturn(Stream.of(Stream.of(mockAspect))); + + SystemAspect mockSystemAspect = mock(SystemAspect.class); + when(mockSystemAspect.getAspectName()).thenReturn("schemaMetadata"); + when(mockSystemAspect.getAspect(SchemaMetadata.class)).thenReturn(new SchemaMetadata()); + + // when(mockRetrieverContext.getAspectRetriever()).thenReturn(mockSystemAspect); + + ArgumentCaptor argsCaptor = + ArgumentCaptor.forClass(RestoreIndicesArgs.class); + + UpgradeStepResult result = step.executable().apply(mockContext); + assertEquals(DataHubUpgradeState.SUCCEEDED, result.result()); + + verify(mockAspectDao).streamAspectBatches(argsCaptor.capture()); + assertEquals("schemaMetadata", argsCaptor.getValue().aspectName()); + assertEquals(10, argsCaptor.getValue().batchSize()); + assertEquals(1000, argsCaptor.getValue().limit()); + } + + // Additional tests can be added to cover more scenarios and edge cases +} diff --git a/entity-registry/src/main/java/com/linkedin/metadata/aspect/batch/AspectsBatch.java b/entity-registry/src/main/java/com/linkedin/metadata/aspect/batch/AspectsBatch.java index fc4ac90dfabad..dc7934ad5cc19 100644 --- a/entity-registry/src/main/java/com/linkedin/metadata/aspect/batch/AspectsBatch.java +++ b/entity-registry/src/main/java/com/linkedin/metadata/aspect/batch/AspectsBatch.java @@ -199,6 +199,7 @@ default Map> getNewUrnAspectsMap( static Map> merge( @Nonnull Map> a, @Nonnull Map> b) { + Map> mergedMap = new HashMap<>(); for (Map.Entry> entry : Stream.concat(a.entrySet().stream(), b.entrySet().stream()).collect(Collectors.toList())) { diff --git a/entity-registry/src/main/java/com/linkedin/metadata/aspect/batch/MCLItem.java b/entity-registry/src/main/java/com/linkedin/metadata/aspect/batch/MCLItem.java index 9fd2d6c607342..09da0a52ff0c3 100644 --- a/entity-registry/src/main/java/com/linkedin/metadata/aspect/batch/MCLItem.java +++ b/entity-registry/src/main/java/com/linkedin/metadata/aspect/batch/MCLItem.java @@ -69,4 +69,13 @@ default ChangeType getChangeType() { default AuditStamp getAuditStamp() { return getMetadataChangeLog().getCreated(); } + + /** + * Change detection for previous and new record template + * + * @return no change detection + */ + default boolean isNoOp() { + return getPreviousRecordTemplate() == getRecordTemplate(); + } } diff --git a/li-utils/src/main/java/com/linkedin/metadata/Constants.java b/li-utils/src/main/java/com/linkedin/metadata/Constants.java index 959125be12c4c..e085a5876a42b 100644 --- a/li-utils/src/main/java/com/linkedin/metadata/Constants.java +++ b/li-utils/src/main/java/com/linkedin/metadata/Constants.java @@ -49,6 +49,7 @@ public class Constants { // App sources public static final String UI_SOURCE = "ui"; + public static final String SYSTEM_UPDATE_SOURCE = "systemUpdate"; /** Entities */ public static final String CORP_USER_ENTITY_NAME = "corpuser"; @@ -85,6 +86,8 @@ public class Constants { public static final String DATAHUB_ROLE_ENTITY_NAME = "dataHubRole"; public static final String POST_ENTITY_NAME = "post"; public static final String SCHEMA_FIELD_ENTITY_NAME = "schemaField"; + public static final String SCHEMA_FIELD_KEY_ASPECT = "schemaFieldKey"; + public static final String SCHEMA_FIELD_ALIASES_ASPECT = "schemaFieldAliases"; public static final String DATAHUB_STEP_STATE_ENTITY_NAME = "dataHubStepState"; public static final String DATAHUB_VIEW_ENTITY_NAME = "dataHubView"; public static final String QUERY_ENTITY_NAME = "query"; diff --git a/metadata-events/mxe-utils-avro/src/main/java/com/linkedin/metadata/EventUtils.java b/metadata-events/mxe-utils-avro/src/main/java/com/linkedin/metadata/EventUtils.java index 8e92fd70b91dc..18005dfb7b2a5 100644 --- a/metadata-events/mxe-utils-avro/src/main/java/com/linkedin/metadata/EventUtils.java +++ b/metadata-events/mxe-utils-avro/src/main/java/com/linkedin/metadata/EventUtils.java @@ -81,7 +81,7 @@ public class EventUtils { private static final Schema RENAMED_PE_AVRO_SCHEMA = com.linkedin.pegasus2avro.mxe.PlatformEvent.SCHEMA$; - private static final Schema RENAMED_MCP_AVRO_SCHEMA = + public static final Schema RENAMED_MCP_AVRO_SCHEMA = com.linkedin.pegasus2avro.mxe.MetadataChangeProposal.SCHEMA$; public static final Schema RENAMED_MCL_AVRO_SCHEMA = diff --git a/metadata-ingestion/tests/unit/api/entities/dataproducts/golden_dataproduct_out_upsert.json b/metadata-ingestion/tests/unit/api/entities/dataproducts/golden_dataproduct_out_upsert.json index 66bc2ce0c2a0c..8d072030d1209 100644 --- a/metadata-ingestion/tests/unit/api/entities/dataproducts/golden_dataproduct_out_upsert.json +++ b/metadata-ingestion/tests/unit/api/entities/dataproducts/golden_dataproduct_out_upsert.json @@ -5,8 +5,59 @@ "changeType": "PATCH", "aspectName": "dataProductProperties", "aspect": { - "value": "[{\"op\": \"add\", \"path\": \"/name\", \"value\": \"Pet of the Week Campaign\"}, {\"op\": \"add\", \"path\": \"/assets\", \"value\": [{\"destinationUrn\": \"urn:li:container:DATABASE\", \"created\": {\"time\": 1681455600000, \"actor\": \"urn:li:corpuser:datahub\", \"message\": \"yaml\"}}, {\"destinationUrn\": \"urn:li:container:SCHEMA\", \"created\": {\"time\": 1681455600000, \"actor\": \"urn:li:corpuser:datahub\", \"message\": \"yaml\"}}, {\"destinationUrn\": \"urn:li:mlFeatureTable:(urn:li:dataPlatform:feast,test_feature_table_all_feature_dtypes)\", \"created\": {\"time\": 1681455600000, \"actor\": \"urn:li:corpuser:datahub\", \"message\": \"yaml\"}}]}, {\"op\": \"add\", \"path\": \"/customProperties\", \"value\": {\"version\": \"2.0\", \"classification\": \"pii\"}}, {\"op\": \"add\", \"path\": \"/externalUrl\", \"value\": \"https://github.com/datahub-project/datahub\"}]", - "contentType": "application/json-patch+json" + "json": [ + { + "op": "add", + "path": "/name", + "value": "Pet of the Week Campaign" + }, + { + "op": "add", + "path": "/assets", + "value": [ + { + "destinationUrn": "urn:li:container:DATABASE", + "created": { + "time": 1681455600000, + "actor": "urn:li:corpuser:datahub", + "message": "yaml" + }, + "outputPort": false + }, + { + "destinationUrn": "urn:li:container:SCHEMA", + "created": { + "time": 1681455600000, + "actor": "urn:li:corpuser:datahub", + "message": "yaml" + }, + "outputPort": false + }, + { + "destinationUrn": "urn:li:mlFeatureTable:(urn:li:dataPlatform:feast,test_feature_table_all_feature_dtypes)", + "created": { + "time": 1681455600000, + "actor": "urn:li:corpuser:datahub", + "message": "yaml" + }, + "outputPort": false + } + ] + }, + { + "op": "add", + "path": "/customProperties", + "value": { + "version": "2.0", + "classification": "pii" + } + }, + { + "op": "add", + "path": "/externalUrl", + "value": "https://github.com/datahub-project/datahub" + } + ] } }, { @@ -70,6 +121,7 @@ "type": "BUSINESS_OWNER" } ], + "ownerTypes": {}, "lastModified": { "time": 0, "actor": "urn:li:corpuser:unknown" diff --git a/metadata-io/build.gradle b/metadata-io/build.gradle index ff29cb5fff47d..9f5fc109eea7f 100644 --- a/metadata-io/build.gradle +++ b/metadata-io/build.gradle @@ -28,7 +28,6 @@ dependencies { implementation externalDependency.guava implementation externalDependency.reflections - implementation 'com.github.java-json-tools:json-patch:1.13' // TODO: Replace with jakarta.json api(externalDependency.dgraph4j) { exclude group: 'com.google.guava', module: 'guava' exclude group: 'io.grpc', module: 'grpc-protobuf' diff --git a/metadata-io/metadata-io-api/src/main/java/com/linkedin/metadata/entity/ebean/batch/MCLItemImpl.java b/metadata-io/metadata-io-api/src/main/java/com/linkedin/metadata/entity/ebean/batch/MCLItemImpl.java index 94d60d2f67c9c..a5afd4651ed2c 100644 --- a/metadata-io/metadata-io-api/src/main/java/com/linkedin/metadata/entity/ebean/batch/MCLItemImpl.java +++ b/metadata-io/metadata-io-api/src/main/java/com/linkedin/metadata/entity/ebean/batch/MCLItemImpl.java @@ -6,6 +6,7 @@ import com.linkedin.events.metadata.ChangeType; import com.linkedin.metadata.aspect.AspectRetriever; import com.linkedin.metadata.aspect.batch.MCLItem; +import com.linkedin.metadata.aspect.batch.MCPItem; import com.linkedin.metadata.entity.AspectUtils; import com.linkedin.metadata.entity.validation.ValidationApiUtils; import com.linkedin.metadata.models.AspectSpec; @@ -13,7 +14,9 @@ import com.linkedin.metadata.models.registry.EntityRegistry; import com.linkedin.metadata.utils.EntityKeyUtils; import com.linkedin.metadata.utils.GenericRecordUtils; +import com.linkedin.metadata.utils.PegasusUtils; import com.linkedin.mxe.MetadataChangeLog; +import com.linkedin.mxe.SystemMetadata; import com.linkedin.util.Pair; import javax.annotation.Nonnull; import javax.annotation.Nullable; @@ -43,6 +46,27 @@ private MCLItemImpl build() { return null; } + public MCLItemImpl build( + MCPItem mcpItem, + @Nullable RecordTemplate oldAspectValue, + @Nullable SystemMetadata oldSystemMetadata, + AspectRetriever aspectRetriever) { + return MCLItemImpl.builder() + .build( + PegasusUtils.constructMCL( + mcpItem.getMetadataChangeProposal(), + mcpItem.getUrn().getEntityType(), + mcpItem.getUrn(), + mcpItem.getChangeType(), + mcpItem.getAspectName(), + mcpItem.getAuditStamp(), + mcpItem.getRecordTemplate(), + mcpItem.getSystemMetadata(), + oldAspectValue, + oldSystemMetadata), + aspectRetriever); + } + public MCLItemImpl build(MetadataChangeLog metadataChangeLog, AspectRetriever aspectRetriever) { return MCLItemImpl.builder().metadataChangeLog(metadataChangeLog).build(aspectRetriever); } diff --git a/metadata-io/metadata-io-api/src/main/java/com/linkedin/metadata/entity/validation/ValidationApiUtils.java b/metadata-io/metadata-io-api/src/main/java/com/linkedin/metadata/entity/validation/ValidationApiUtils.java index ed79f23823a84..f7e639ecf3603 100644 --- a/metadata-io/metadata-io-api/src/main/java/com/linkedin/metadata/entity/validation/ValidationApiUtils.java +++ b/metadata-io/metadata-io-api/src/main/java/com/linkedin/metadata/entity/validation/ValidationApiUtils.java @@ -3,6 +3,7 @@ import com.linkedin.common.urn.Urn; import com.linkedin.data.schema.validation.ValidationResult; import com.linkedin.data.template.RecordTemplate; +import com.linkedin.metadata.Constants; import com.linkedin.metadata.aspect.AspectRetriever; import com.linkedin.metadata.entity.EntityApiUtils; import com.linkedin.metadata.models.AspectSpec; @@ -51,7 +52,8 @@ public static void validateUrn(@Nonnull EntityRegistry entityRegistry, @Nonnull throw new IllegalArgumentException( "Error: cannot provide an URN with leading or trailing whitespace"); } - if (URLEncoder.encode(urn.toString()).length() > URN_NUM_BYTES_LIMIT) { + if (!Constants.SCHEMA_FIELD_ENTITY_NAME.equals(urn.getEntityType()) + && URLEncoder.encode(urn.toString()).length() > URN_NUM_BYTES_LIMIT) { throw new IllegalArgumentException( "Error: cannot provide an URN longer than " + Integer.toString(URN_NUM_BYTES_LIMIT) diff --git a/metadata-io/src/main/java/com/linkedin/metadata/entity/EntityServiceImpl.java b/metadata-io/src/main/java/com/linkedin/metadata/entity/EntityServiceImpl.java index 3e640365f3fd2..2e12b52194ffb 100644 --- a/metadata-io/src/main/java/com/linkedin/metadata/entity/EntityServiceImpl.java +++ b/metadata-io/src/main/java/com/linkedin/metadata/entity/EntityServiceImpl.java @@ -777,11 +777,7 @@ public List ingestAspects( List mclResults = emitMCL(opContext, ingestResults, emitMCL); processPostCommitMCLSideEffects( - opContext, - mclResults.stream() - .filter(result -> !result.isNoOp()) - .map(UpdateAspectResult::toMCL) - .collect(Collectors.toList())); + opContext, mclResults.stream().map(UpdateAspectResult::toMCL).collect(Collectors.toList())); return mclResults; } diff --git a/metadata-io/src/main/java/com/linkedin/metadata/entity/ebean/EbeanAspectDao.java b/metadata-io/src/main/java/com/linkedin/metadata/entity/ebean/EbeanAspectDao.java index 9725abdf7fdc2..524e947476122 100644 --- a/metadata-io/src/main/java/com/linkedin/metadata/entity/ebean/EbeanAspectDao.java +++ b/metadata-io/src/main/java/com/linkedin/metadata/entity/ebean/EbeanAspectDao.java @@ -512,6 +512,9 @@ public PartitionedStream streamAspectBatches(final RestoreIndices if (args.aspectName != null) { exp = exp.eq(EbeanAspectV2.ASPECT_COLUMN, args.aspectName); } + if (args.aspectNames != null && !args.aspectNames.isEmpty()) { + exp = exp.in(EbeanAspectV2.ASPECT_COLUMN, args.aspectNames); + } if (args.urn != null) { exp = exp.eq(EbeanAspectV2.URN_COLUMN, args.urn); } diff --git a/metadata-io/src/main/java/com/linkedin/metadata/schemafields/sideeffects/SchemaFieldSideEffect.java b/metadata-io/src/main/java/com/linkedin/metadata/schemafields/sideeffects/SchemaFieldSideEffect.java new file mode 100644 index 0000000000000..2e86a4251a25c --- /dev/null +++ b/metadata-io/src/main/java/com/linkedin/metadata/schemafields/sideeffects/SchemaFieldSideEffect.java @@ -0,0 +1,627 @@ +package com.linkedin.metadata.schemafields.sideeffects; + +import static com.linkedin.metadata.Constants.APP_SOURCE; +import static com.linkedin.metadata.Constants.DATASET_ENTITY_NAME; +import static com.linkedin.metadata.Constants.SCHEMA_FIELD_ALIASES_ASPECT; +import static com.linkedin.metadata.Constants.SCHEMA_FIELD_ENTITY_NAME; +import static com.linkedin.metadata.Constants.SCHEMA_FIELD_KEY_ASPECT; +import static com.linkedin.metadata.Constants.SCHEMA_METADATA_ASPECT_NAME; +import static com.linkedin.metadata.Constants.STATUS_ASPECT_NAME; +import static com.linkedin.metadata.Constants.SYSTEM_UPDATE_SOURCE; + +import com.linkedin.common.AuditStamp; +import com.linkedin.common.Status; +import com.linkedin.common.UrnArray; +import com.linkedin.common.urn.Urn; +import com.linkedin.common.urn.UrnUtils; +import com.linkedin.entity.Aspect; +import com.linkedin.events.metadata.ChangeType; +import com.linkedin.metadata.Constants; +import com.linkedin.metadata.aspect.AspectRetriever; +import com.linkedin.metadata.aspect.RetrieverContext; +import com.linkedin.metadata.aspect.batch.BatchItem; +import com.linkedin.metadata.aspect.batch.ChangeMCP; +import com.linkedin.metadata.aspect.batch.MCLItem; +import com.linkedin.metadata.aspect.batch.MCPItem; +import com.linkedin.metadata.aspect.plugins.config.AspectPluginConfig; +import com.linkedin.metadata.aspect.plugins.hooks.MCPSideEffect; +import com.linkedin.metadata.entity.ebean.batch.ChangeItemImpl; +import com.linkedin.metadata.entity.ebean.batch.DeleteItemImpl; +import com.linkedin.metadata.key.SchemaFieldKey; +import com.linkedin.metadata.models.registry.EntityRegistry; +import com.linkedin.metadata.timeline.data.ChangeCategory; +import com.linkedin.metadata.timeline.data.ChangeEvent; +import com.linkedin.metadata.timeline.data.ChangeOperation; +import com.linkedin.metadata.timeline.eventgenerator.ChangeEventGeneratorUtils; +import com.linkedin.metadata.timeline.eventgenerator.EntityChangeEventGeneratorRegistry; +import com.linkedin.metadata.utils.SchemaFieldUtils; +import com.linkedin.mxe.SystemMetadata; +import com.linkedin.schema.SchemaMetadata; +import com.linkedin.schemafield.SchemaFieldAliases; +import com.linkedin.util.Pair; +import java.util.Collection; +import java.util.HashMap; +import java.util.List; +import java.util.Map; +import java.util.Objects; +import java.util.Optional; +import java.util.Set; +import java.util.stream.Collectors; +import java.util.stream.Stream; +import javax.annotation.Nonnull; +import javax.annotation.Nullable; +import lombok.Getter; +import lombok.Setter; +import lombok.experimental.Accessors; +import lombok.extern.slf4j.Slf4j; + +@Slf4j +@Getter +@Setter +@Accessors(chain = true) +public class SchemaFieldSideEffect extends MCPSideEffect { + @Nonnull private AspectPluginConfig config; + @Nonnull private EntityChangeEventGeneratorRegistry entityChangeEventGeneratorRegistry; + + private static final Set REQUIRED_ASPECTS = + Set.of(SCHEMA_METADATA_ASPECT_NAME, STATUS_ASPECT_NAME); + + @Override + protected Stream applyMCPSideEffect( + Collection changeMCPs, @Nonnull RetrieverContext retrieverContext) { + return Stream.of(); + } + + /** + * Handle delete of dataset schema metadata + * + * @param mclItems MCL items generated from committing the MCP + * @param retrieverContext accessors for aspect and graph data + * @return + */ + @Override + protected Stream postMCPSideEffect( + Collection mclItems, @Nonnull RetrieverContext retrieverContext) { + + // fetch existing aspects, if not already in the batch just committed + Map> aspectData = + fetchRequiredAspects(mclItems, REQUIRED_ASPECTS, retrieverContext.getAspectRetriever()); + + return Stream.concat( + processUpserts(mclItems, aspectData, retrieverContext), + processDelete(mclItems, aspectData, retrieverContext)); + } + + private static Stream processDelete( + Collection mclItems, + Map> aspectData, + @Nonnull RetrieverContext retrieverContext) { + + List schemaMetadataDeletes = + mclItems.stream() + .filter( + item -> + ChangeType.DELETE.equals(item.getChangeType()) + && DATASET_ENTITY_NAME.equals(item.getUrn().getEntityType()) + && SCHEMA_METADATA_ASPECT_NAME.equals(item.getAspectName())) + .collect(Collectors.toList()); + + Stream schemaMetadataSchemaFieldMCPs = + schemaMetadataDeletes.stream() + .flatMap( + item -> + buildSchemaMetadataSchemaFieldDeleteMCPs( + item, retrieverContext.getAspectRetriever())); + + List statusDeletes = + mclItems.stream() + .filter( + item -> + ChangeType.DELETE.equals(item.getChangeType()) + && DATASET_ENTITY_NAME.equals(item.getUrn().getEntityType()) + && STATUS_ASPECT_NAME.equals(item.getAspectName())) + .collect(Collectors.toList()); + + final Stream statusSchemaFieldMCPs; + if (statusDeletes.isEmpty()) { + statusSchemaFieldMCPs = Stream.empty(); + } else { + statusSchemaFieldMCPs = + statusDeletes.stream() + .flatMap( + item -> + buildStatusSchemaFieldDeleteMCPs( + item, + Optional.ofNullable( + aspectData + .getOrDefault(item.getUrn(), Map.of()) + .get(SCHEMA_METADATA_ASPECT_NAME)) + .map(aspect -> new SchemaMetadata(aspect.data())) + .orElse(null), + retrieverContext.getAspectRetriever())); + } + + return Stream.concat(schemaMetadataSchemaFieldMCPs, statusSchemaFieldMCPs); + } + + private Stream processUpserts( + Collection mclItems, + Map> aspectData, + @Nonnull RetrieverContext retrieverContext) { + + Map> batchMCPAspectNames = + mclItems.stream() + .filter(item -> item.getChangeType() != ChangeType.DELETE) + .collect( + Collectors.groupingBy( + MCLItem::getUrn, + Collectors.mapping(MCLItem::getAspectName, Collectors.toSet()))); + + Stream schemaFieldSideEffects = + mclItems.stream() + .filter( + changeMCP -> + changeMCP.getChangeType() != ChangeType.DELETE + && DATASET_ENTITY_NAME.equals(changeMCP.getUrn().getEntityType()) + && Constants.SCHEMA_METADATA_ASPECT_NAME.equals(changeMCP.getAspectName())) + .flatMap( + // Build schemaField Keys and Aliases + item -> + optimizedKeyAspectMCPsConcat( + buildSchemaFieldKeyMCPs( + item, aspectData, retrieverContext.getAspectRetriever()), + buildSchemaFieldAliasesMCPs(item, retrieverContext.getAspectRetriever()))); + + Stream statusSideEffects = + mclItems.stream() + .filter( + changeMCP -> + changeMCP.getChangeType() != ChangeType.DELETE + && DATASET_ENTITY_NAME.equals(changeMCP.getUrn().getEntityType()) + && Constants.STATUS_ASPECT_NAME.equals(changeMCP.getAspectName()) + // if present, already computed above + && !batchMCPAspectNames + .getOrDefault(changeMCP.getUrn(), Set.of()) + .contains(Constants.SCHEMA_METADATA_ASPECT_NAME)) + .flatMap( + item -> + mirrorStatusAspect(item, aspectData, retrieverContext.getAspectRetriever())); + + Stream removedFieldStatusSideEffects = + mclItems.stream() + .filter( + changeMCP -> + changeMCP.getChangeType() != ChangeType.DELETE + && DATASET_ENTITY_NAME.equals(changeMCP.getUrn().getEntityType()) + && SCHEMA_METADATA_ASPECT_NAME.equals(changeMCP.getAspectName()) + && changeMCP.getPreviousRecordTemplate() != null) + .flatMap( + item -> + buildRemovedSchemaFieldStatusAspect( + item, retrieverContext.getAspectRetriever())); + + return optimizedKeyAspectMCPsConcat( + Stream.concat(schemaFieldSideEffects, statusSideEffects), removedFieldStatusSideEffects); + } + + /** + * Copy aspect from dataset to schema fields + * + * @param parentDatasetStatusItem dataset mcp item + * @param aspectRetriever aspectRetriever context + * @return side effect schema field aspects + */ + private static Stream mirrorStatusAspect( + BatchItem parentDatasetStatusItem, + Map> aspectData, + @Nonnull AspectRetriever aspectRetriever) { + + SchemaMetadata schemaMetadata = + Optional.ofNullable( + aspectData + .getOrDefault(parentDatasetStatusItem.getUrn(), Map.of()) + .getOrDefault(Constants.SCHEMA_METADATA_ASPECT_NAME, null)) + .map(aspect -> new SchemaMetadata(aspect.data())) + .orElse(null); + + if (schemaMetadata != null) { + return schemaMetadata.getFields().stream() + .map( + schemaField -> { + Boolean removed = + parentDatasetStatusItem.getRecordTemplate() != null + ? parentDatasetStatusItem.getAspect(Status.class).isRemoved() + : null; + return buildSchemaFieldStatusMCPs( + SchemaFieldUtils.generateSchemaFieldUrn( + parentDatasetStatusItem.getUrn(), schemaField), + removed, + parentDatasetStatusItem.getAuditStamp(), + parentDatasetStatusItem.getSystemMetadata(), + aspectRetriever); + }); + } + + return Stream.empty(); + } + + /** + * Build a schema field status MCP based on the input status from the dataset + * + * @param schemaFieldUrn schema fields's urn + * @param removed removed status + * @param datasetAuditStamp origin audit stamp + * @param datasetSystemMetadata origin system metadata + * @param aspectRetriever aspect retriever + * @return stream of status aspects for schema fields + */ + public static ChangeMCP buildSchemaFieldStatusMCPs( + Urn schemaFieldUrn, + @Nullable Boolean removed, + AuditStamp datasetAuditStamp, + SystemMetadata datasetSystemMetadata, + @Nonnull AspectRetriever aspectRetriever) { + return ChangeItemImpl.builder() + .urn(schemaFieldUrn) + .changeType(ChangeType.UPSERT) + .aspectName(STATUS_ASPECT_NAME) + .recordTemplate(new Status().setRemoved(removed != null ? removed : false)) + .auditStamp(datasetAuditStamp) + .systemMetadata(datasetSystemMetadata) + .build(aspectRetriever); + } + + private Stream buildRemovedSchemaFieldStatusAspect( + MCLItem parentDatasetSchemaMetadataItem, @Nonnull AspectRetriever aspectRetriever) { + + List changeEvents = + ChangeEventGeneratorUtils.generateChangeEvents( + entityChangeEventGeneratorRegistry, + parentDatasetSchemaMetadataItem.getUrn(), + parentDatasetSchemaMetadataItem.getEntitySpec().getName(), + parentDatasetSchemaMetadataItem.getAspectName(), + new com.linkedin.metadata.timeline.eventgenerator.Aspect<>( + parentDatasetSchemaMetadataItem.getPreviousAspect(SchemaMetadata.class), + parentDatasetSchemaMetadataItem.getPreviousSystemMetadata()), + new com.linkedin.metadata.timeline.eventgenerator.Aspect<>( + parentDatasetSchemaMetadataItem.getAspect(SchemaMetadata.class), + parentDatasetSchemaMetadataItem.getSystemMetadata()), + parentDatasetSchemaMetadataItem.getAuditStamp()); + + return changeEvents.stream() + .flatMap( + changeEvent -> + createRemovedStatusItem( + changeEvent, parentDatasetSchemaMetadataItem, aspectRetriever) + .stream()); + } + + private static Optional createRemovedStatusItem( + @Nonnull final ChangeEvent changeEvent, + @Nonnull final MCLItem parentDatasetSchemaMetadataItem, + @Nonnull AspectRetriever aspectRetriever) { + + if (changeEvent.getCategory().equals(ChangeCategory.TECHNICAL_SCHEMA)) { + if (log.isDebugEnabled()) { + // Protect against expensive toString() call + String parameterString = ""; + if (changeEvent.getParameters() != null) { + parameterString = + changeEvent.getParameters().entrySet().stream() + .map(entry -> entry.getKey() + ":" + entry.getValue()) + .collect(Collectors.joining(",")); + } + log.debug( + "Technical Schema Event: Entity: {}\nOperation: {}\nModifier: {}\nAuditStamp: {}\nParameters:{}\nCategory:{} ", + changeEvent.getEntityUrn(), + changeEvent.getOperation(), + changeEvent.getModifier(), + changeEvent.getAuditStamp(), + parameterString, + changeEvent.getCategory()); + } + if (changeEvent.getOperation().equals(ChangeOperation.REMOVE)) { + String fieldPath = changeEvent.getModifier().toString(); + log.debug("Creating status change proposal {} for field: {}", true, fieldPath); + return Optional.of( + buildSchemaFieldStatusMCPs( + UrnUtils.getUrn(fieldPath), + true, + parentDatasetSchemaMetadataItem.getAuditStamp(), + parentDatasetSchemaMetadataItem.getSystemMetadata(), + aspectRetriever)); + } + } + return Optional.empty(); + } + + /** + * Expand dataset schemaMetadata to schemaFields + * + * @param parentDatasetMetadataSchemaItem dataset mcp item + * @param aspectRetriever aspectRetriever context + * @return side effect schema field aspects + */ + private static Stream buildSchemaFieldKeyMCPs( + MCLItem parentDatasetMetadataSchemaItem, + Map> aspectData, + @Nonnull AspectRetriever aspectRetriever) { + + Stream schemaFieldKeys = + buildSchemaFieldKeyMCPs(parentDatasetMetadataSchemaItem, aspectRetriever); + + // Handle case where dataset status created before schema metadata + final Stream statusSideEffects; + if (aspectData + .getOrDefault(parentDatasetMetadataSchemaItem.getUrn(), Map.of()) + .containsKey(STATUS_ASPECT_NAME)) { + Status status = + new Status( + aspectData + .get(parentDatasetMetadataSchemaItem.getUrn()) + .get(STATUS_ASPECT_NAME) + .data()); + + ChangeItemImpl datasetStatusItem = + ChangeItemImpl.builder() + .changeType(ChangeType.UPSERT) + .urn(parentDatasetMetadataSchemaItem.getUrn()) + .aspectName(STATUS_ASPECT_NAME) + .entitySpec(parentDatasetMetadataSchemaItem.getEntitySpec()) + .aspectSpec( + parentDatasetMetadataSchemaItem.getEntitySpec().getAspectSpec(STATUS_ASPECT_NAME)) + .recordTemplate(status) + .auditStamp(parentDatasetMetadataSchemaItem.getAuditStamp()) + .systemMetadata(parentDatasetMetadataSchemaItem.getSystemMetadata()) + .build(aspectRetriever); + statusSideEffects = mirrorStatusAspect(datasetStatusItem, aspectData, aspectRetriever); + } else { + statusSideEffects = Stream.empty(); + } + + return optimizedKeyAspectMCPsConcat(schemaFieldKeys, statusSideEffects); + } + + /** + * Given a dataset's metadata schema item, generate schema field key aspects + * + * @param parentDatasetMetadataSchemaItem dataset's metadata schema MCP + * @param aspectRetriever retriever + * @return stream of schema field MCPs for its key aspect + */ + private static Stream buildSchemaFieldKeyMCPs( + @Nonnull MCLItem parentDatasetMetadataSchemaItem, @Nonnull AspectRetriever aspectRetriever) { + + SystemMetadata systemMetadata = parentDatasetMetadataSchemaItem.getSystemMetadata(); + SchemaMetadata schemaMetadata = parentDatasetMetadataSchemaItem.getAspect(SchemaMetadata.class); + SchemaMetadata previousSchemaMetadata = + parentDatasetMetadataSchemaItem.getPreviousRecordTemplate() != null + ? parentDatasetMetadataSchemaItem.getPreviousAspect(SchemaMetadata.class) + : null; + + return schemaMetadata.getFields().stream() + .filter( + schemaField -> + ChangeType.RESTATE.equals(parentDatasetMetadataSchemaItem.getChangeType()) + || previousSchemaMetadata == null + // avoid processing already existing fields + || !previousSchemaMetadata.getFields().contains(schemaField) + // system update pass through + || isSystemUpdate(systemMetadata)) + .map( + schemaField -> + ChangeItemImpl.builder() + .urn( + SchemaFieldUtils.generateSchemaFieldUrn( + parentDatasetMetadataSchemaItem.getUrn(), schemaField)) + .changeType(ChangeType.UPSERT) + .aspectName(SCHEMA_FIELD_KEY_ASPECT) + .recordTemplate( + new SchemaFieldKey() + .setFieldPath(schemaField.getFieldPath()) + .setParent(parentDatasetMetadataSchemaItem.getUrn())) + .auditStamp(parentDatasetMetadataSchemaItem.getAuditStamp()) + .systemMetadata(parentDatasetMetadataSchemaItem.getSystemMetadata()) + .build(aspectRetriever)); + } + + /** + * Given a dataset's metadata schema item, generate schema field alias aspects + * + * @param parentDatasetMetadataSchemaItem dataset's metadata schema MCP + * @param aspectRetriever retriever + * @return stream of schema field aliases for its key aspect + */ + private static Stream buildSchemaFieldAliasesMCPs( + @Nonnull MCLItem parentDatasetMetadataSchemaItem, @Nonnull AspectRetriever aspectRetriever) { + + SystemMetadata systemMetadata = parentDatasetMetadataSchemaItem.getSystemMetadata(); + SchemaMetadata schemaMetadata = parentDatasetMetadataSchemaItem.getAspect(SchemaMetadata.class); + SchemaMetadata previousSchemaMetadata = + parentDatasetMetadataSchemaItem.getPreviousRecordTemplate() != null + ? parentDatasetMetadataSchemaItem.getPreviousAspect(SchemaMetadata.class) + : null; + + return schemaMetadata.getFields().stream() + .filter( + schemaField -> + ChangeType.RESTATE.equals(parentDatasetMetadataSchemaItem.getChangeType()) + || previousSchemaMetadata == null + || !previousSchemaMetadata.getFields().equals(schemaMetadata.getFields()) + // system update pass through + || isSystemUpdate(systemMetadata)) + .map( + schemaField -> { + Set currentAliases = + SchemaFieldUtils.getSchemaFieldAliases( + parentDatasetMetadataSchemaItem.getUrn(), schemaMetadata, schemaField); + Set previousAliases = + previousSchemaMetadata == null + ? Set.of() + : SchemaFieldUtils.getSchemaFieldAliases( + parentDatasetMetadataSchemaItem.getUrn(), + previousSchemaMetadata, + schemaField); + + boolean forceUpdate = + isSystemUpdate(systemMetadata) + || ChangeType.RESTATE.equals(parentDatasetMetadataSchemaItem.getChangeType()); + if (!previousAliases.equals(currentAliases) || forceUpdate) { + return ChangeItemImpl.builder() + .urn( + SchemaFieldUtils.generateSchemaFieldUrn( + parentDatasetMetadataSchemaItem.getUrn(), schemaField)) + .changeType(ChangeType.UPSERT) + .aspectName(SCHEMA_FIELD_ALIASES_ASPECT) + .recordTemplate( + new SchemaFieldAliases().setAliases(new UrnArray(currentAliases))) + .auditStamp(parentDatasetMetadataSchemaItem.getAuditStamp()) + .systemMetadata(parentDatasetMetadataSchemaItem.getSystemMetadata()) + .build(aspectRetriever); + } + + return (ChangeMCP) null; + }) + .filter(Objects::nonNull); + } + + /** + * Given a delete MCL for a dataset's schema metadata, generate delete MCPs for the schemaField + * aspects + * + * @param parentDatasetSchemaMetadataDelete the dataset's MCL from a metadata schema delete + * @param aspectRetriever retriever context + * @return follow-up deletes for the schema field + */ + public static Stream buildSchemaMetadataSchemaFieldDeleteMCPs( + @Nonnull MCLItem parentDatasetSchemaMetadataDelete, + @Nonnull AspectRetriever aspectRetriever) { + + EntityRegistry entityRegistry = aspectRetriever.getEntityRegistry(); + Urn datasetUrn = parentDatasetSchemaMetadataDelete.getUrn(); + SchemaMetadata parentDatasetSchemaMetadata = + parentDatasetSchemaMetadataDelete.getPreviousAspect(SchemaMetadata.class); + + return parentDatasetSchemaMetadata.getFields().stream() + .flatMap( + schemaField -> + entityRegistry.getEntitySpec(SCHEMA_FIELD_ENTITY_NAME).getAspectSpecs().stream() + .map( + aspectSpec -> + DeleteItemImpl.builder() + .urn( + SchemaFieldUtils.generateSchemaFieldUrn( + datasetUrn, schemaField)) + .aspectName(aspectSpec.getName()) + .auditStamp(parentDatasetSchemaMetadataDelete.getAuditStamp()) + .entitySpec(entityRegistry.getEntitySpec(SCHEMA_FIELD_ENTITY_NAME)) + .aspectSpec(aspectSpec) + .build(aspectRetriever))); + } + + public static Stream buildStatusSchemaFieldDeleteMCPs( + @Nonnull MCLItem parentDatasetStatusDelete, + @Nullable SchemaMetadata parentDatasetSchemaMetadata, + @Nonnull AspectRetriever aspectRetriever) { + + if (parentDatasetSchemaMetadata == null) { + return Stream.empty(); + } else { + EntityRegistry entityRegistry = aspectRetriever.getEntityRegistry(); + return parentDatasetSchemaMetadata.getFields().stream() + .map( + schemaField -> + DeleteItemImpl.builder() + .urn( + SchemaFieldUtils.generateSchemaFieldUrn( + parentDatasetStatusDelete.getUrn(), schemaField)) + .aspectName(STATUS_ASPECT_NAME) + .auditStamp(parentDatasetStatusDelete.getAuditStamp()) + .entitySpec(entityRegistry.getEntitySpec(SCHEMA_FIELD_ENTITY_NAME)) + .aspectSpec(parentDatasetStatusDelete.getAspectSpec()) + .build(aspectRetriever)); + } + } + + /** + * Fetch missing aspects if not already in the batch + * + * @param mclItems batch mcps + * @param aspectRetriever aspect retriever + * @return required aspects for the side effect processing + */ + private static Map> fetchRequiredAspects( + Collection mclItems, + Set requiredAspectNames, + AspectRetriever aspectRetriever) { + Map> aspectData = new HashMap<>(); + + // Aspects included data in batch + mclItems.stream() + .filter(item -> item.getRecordTemplate() != null) + .forEach( + item -> + aspectData + .computeIfAbsent(item.getUrn(), k -> new HashMap<>()) + .put(item.getAspectName(), new Aspect(item.getRecordTemplate().data()))); + + // Aspect to fetch + Map> missingAspectData = + mclItems.stream() + .flatMap( + item -> + requiredAspectNames.stream() + .filter( + aspectName -> + !aspectData + .getOrDefault(item.getUrn(), Map.of()) + .containsKey(aspectName)) + .map(aspectName -> Pair.of(item.getUrn(), aspectName))) + .collect( + Collectors.groupingBy( + Pair::getKey, Collectors.mapping(Pair::getValue, Collectors.toSet()))); + + // Fetch missing + missingAspectData.forEach( + (urn, aspectNames) -> { + Map fetchedData = + aspectRetriever.getLatestAspectObjects(Set.of(urn), aspectNames).get(urn); + if (fetchedData != null) { + fetchedData.forEach( + (aspectName, aspectValue) -> + aspectData + .computeIfAbsent(urn, k -> new HashMap<>()) + .put(aspectName, aspectValue)); + } + }); + + return aspectData; + } + + /** + * We can reduce the number of MCPs sent via kafka by 1/2 to 1/3 because key aspects are + * automatically created if they don't exist. The only case where there needs to be an explicit + * key aspect is when there are no other aspects being generated. + * + * @param keyMCPs stream of MCPs which *may* contain key aspects + * @param otherMCPs stream of MCPs which are not expected to contain key aspects + * @return reduced stream of MCPs + */ + private static Stream optimizedKeyAspectMCPsConcat( + Stream keyMCPs, Stream otherMCPs) { + List other = otherMCPs.collect(Collectors.toList()); + Set otherUrns = other.stream().map(T::getUrn).collect(Collectors.toSet()); + return Stream.concat( + keyMCPs.filter( + item -> + !item.getAspectName().equals(item.getEntitySpec().getKeyAspectName()) + || !otherUrns.contains(item.getUrn())), + other.stream()); + } + + private static boolean isSystemUpdate(@Nullable SystemMetadata systemMetadata) { + return systemMetadata != null + && systemMetadata.getProperties() != null + && SYSTEM_UPDATE_SOURCE.equals(systemMetadata.getProperties().get(APP_SOURCE)); + } +} diff --git a/metadata-io/src/main/java/com/linkedin/metadata/search/LineageSearchService.java b/metadata-io/src/main/java/com/linkedin/metadata/search/LineageSearchService.java index d07882963e281..84fcc2c0a0f91 100644 --- a/metadata-io/src/main/java/com/linkedin/metadata/search/LineageSearchService.java +++ b/metadata-io/src/main/java/com/linkedin/metadata/search/LineageSearchService.java @@ -2,6 +2,7 @@ import static com.datahub.authorization.AuthUtil.canViewEntity; import static com.linkedin.metadata.Constants.*; +import static com.linkedin.metadata.search.utils.QueryUtils.buildFilterWithUrns; import static com.linkedin.metadata.search.utils.SearchUtils.applyDefaultSearchFlags; import com.google.common.annotations.VisibleForTesting; @@ -12,9 +13,8 @@ import com.linkedin.common.urn.Urn; import com.linkedin.common.urn.UrnUtils; import com.linkedin.data.template.LongMap; -import com.linkedin.data.template.StringArray; import com.linkedin.metadata.Constants; -import com.linkedin.metadata.config.cache.SearchLineageCacheConfiguration; +import com.linkedin.metadata.config.DataHubAppConfiguration; import com.linkedin.metadata.graph.EntityLineageResult; import com.linkedin.metadata.graph.GraphService; import com.linkedin.metadata.graph.LineageDirection; @@ -32,7 +32,6 @@ import com.linkedin.metadata.query.filter.SortCriterion; import com.linkedin.metadata.search.cache.CachedEntityLineageResult; import com.linkedin.metadata.search.utils.FilterUtils; -import com.linkedin.metadata.search.utils.QueryUtils; import com.linkedin.metadata.search.utils.SearchUtils; import io.datahubproject.metadata.context.OperationContext; import io.opentelemetry.extension.annotations.WithSpan; @@ -81,7 +80,7 @@ public class LineageSearchService { private final GraphService _graphService; @Nullable private final Cache cache; private final boolean cacheEnabled; - private final SearchLineageCacheConfiguration cacheConfiguration; + private final DataHubAppConfiguration appConfig; private final ExecutorService cacheRefillExecutor = Executors.newFixedThreadPool(1); private static final String DEGREE_FILTER = "degree"; @@ -198,7 +197,7 @@ public LineageSearchResult searchAcrossLineage( freshnessStats.setSystemFreshness(systemFreshness); // set up cache refill if needed if (System.currentTimeMillis() - cachedLineageResult.getTimestamp() - > cacheConfiguration.getTTLMillis()) { + > appConfig.getCache().getSearch().getLineage().getTTLMillis()) { log.info("Cached lineage entry for: {} is older than one day. Will refill.", sourceUrn); Integer finalMaxHops = maxHops; this.cacheRefillExecutor.submit( @@ -208,7 +207,7 @@ public LineageSearchResult searchAcrossLineage( cache.get(cacheKey, CachedEntityLineageResult.class); if (reFetchLineageResult == null || System.currentTimeMillis() - reFetchLineageResult.getTimestamp() - > cacheConfiguration.getTTLMillis()) { + > appConfig.getCache().getSearch().getLineage().getTTLMillis()) { // we have to refetch EntityLineageResult result = _graphService.getLineage( @@ -315,7 +314,8 @@ boolean canDoLightning( criterion1 -> "platform".equals(criterion1.getField()) || "origin".equals(criterion1.getField()))); - return (lineageRelationships.size() > cacheConfiguration.getLightningThreshold()) + return (lineageRelationships.size() + > appConfig.getCache().getSearch().getLineage().getLightningThreshold()) && input.equals("*") && simpleFilters && CollectionUtils.isEmpty(sortCriteria); @@ -555,7 +555,7 @@ private LineageSearchResult getSearchResultInBatches( .distinct() .collect(Collectors.toList()); Map urnToRelationship = generateUrnToRelationshipMap(batch); - Filter finalFilter = buildFilter(urnToRelationship.keySet(), inputFilters); + Filter finalFilter = buildFilterWithUrns(appConfig, urnToRelationship.keySet(), inputFilters); LineageSearchResult resultForBatch = buildLineageSearchResult( @@ -671,27 +671,6 @@ private List filterRelationships( return relationshipsFilteredByEntities.collect(Collectors.toList()); } - private Filter buildFilter(@Nonnull Set urns, @Nullable Filter inputFilters) { - Criterion urnMatchCriterion = - new Criterion() - .setField("urn") - .setValue("") - .setValues( - new StringArray(urns.stream().map(Object::toString).collect(Collectors.toList()))); - if (inputFilters == null) { - return QueryUtils.newFilter(urnMatchCriterion); - } - - // Add urn match criterion to each or clause - if (!CollectionUtils.isEmpty(inputFilters.getOr())) { - for (ConjunctiveCriterion conjunctiveCriterion : inputFilters.getOr()) { - conjunctiveCriterion.getAnd().add(urnMatchCriterion); - } - return inputFilters; - } - return QueryUtils.newFilter(urnMatchCriterion); - } - private LineageSearchResult buildLineageSearchResult( @Nonnull OperationContext opContext, @Nonnull SearchResult searchResult, @@ -809,7 +788,7 @@ public LineageScrollResult scrollAcrossLineage( } else { lineageResult = cachedLineageResult.getEntityLineageResult(); if (System.currentTimeMillis() - cachedLineageResult.getTimestamp() - > cacheConfiguration.getTTLMillis()) { + > appConfig.getCache().getSearch().getLineage().getTTLMillis()) { log.warn("Cached lineage entry for: {} is older than one day.", sourceUrn); } } @@ -868,7 +847,7 @@ private LineageScrollResult getScrollResultInBatches( .distinct() .collect(Collectors.toList()); Map urnToRelationship = generateUrnToRelationshipMap(batch); - Filter finalFilter = buildFilter(urnToRelationship.keySet(), inputFilters); + Filter finalFilter = buildFilterWithUrns(appConfig, urnToRelationship.keySet(), inputFilters); LineageScrollResult resultForBatch = buildLineageScrollResult( diff --git a/metadata-io/src/main/java/com/linkedin/metadata/search/elasticsearch/ElasticSearchService.java b/metadata-io/src/main/java/com/linkedin/metadata/search/elasticsearch/ElasticSearchService.java index 4d5fe8d0b8e60..9905d5e7790ad 100644 --- a/metadata-io/src/main/java/com/linkedin/metadata/search/elasticsearch/ElasticSearchService.java +++ b/metadata-io/src/main/java/com/linkedin/metadata/search/elasticsearch/ElasticSearchService.java @@ -18,8 +18,8 @@ import com.linkedin.metadata.search.elasticsearch.query.ESSearchDAO; import com.linkedin.metadata.search.elasticsearch.update.ESWriteDAO; import com.linkedin.metadata.search.utils.ESUtils; -import com.linkedin.metadata.search.utils.SearchUtils; import com.linkedin.metadata.shared.ElasticSearchIndexed; +import com.linkedin.metadata.utils.elasticsearch.IndexConvention; import com.linkedin.structured.StructuredPropertyDefinition; import com.linkedin.util.Pair; import io.datahubproject.metadata.context.OperationContext; @@ -108,13 +108,8 @@ public void appendRunId( @Nonnull String entityName, @Nonnull Urn urn, @Nullable String runId) { - final Optional maybeDocId = SearchUtils.getDocId(urn); - if (!maybeDocId.isPresent()) { - log.warn( - String.format("Failed to append run id, could not generate a doc id for urn %s", urn)); - return; - } - final String docId = maybeDocId.get(); + final String docId = indexBuilders.getIndexConvention().getEntityDocumentId(urn); + log.info( "Appending run id for entity name: {}, doc id: {}, run id: {}", entityName, docId, runId); esWriteDAO.applyScriptUpdate( @@ -419,4 +414,9 @@ public ExplainResponse explain( size, facets); } + + @Override + public IndexConvention getIndexConvention() { + return indexBuilders.getIndexConvention(); + } } diff --git a/metadata-io/src/main/java/com/linkedin/metadata/search/elasticsearch/indexbuilder/EntityIndexBuilders.java b/metadata-io/src/main/java/com/linkedin/metadata/search/elasticsearch/indexbuilder/EntityIndexBuilders.java index eba4593c9042c..6f1d7f74f1542 100644 --- a/metadata-io/src/main/java/com/linkedin/metadata/search/elasticsearch/indexbuilder/EntityIndexBuilders.java +++ b/metadata-io/src/main/java/com/linkedin/metadata/search/elasticsearch/indexbuilder/EntityIndexBuilders.java @@ -12,6 +12,7 @@ import java.util.Map; import java.util.Objects; import java.util.stream.Collectors; +import lombok.Getter; import lombok.RequiredArgsConstructor; import lombok.extern.slf4j.Slf4j; @@ -20,7 +21,7 @@ public class EntityIndexBuilders implements ElasticSearchIndexed { private final ESIndexBuilder indexBuilder; private final EntityRegistry entityRegistry; - private final IndexConvention indexConvention; + @Getter private final IndexConvention indexConvention; private final SettingsBuilder settingsBuilder; public ESIndexBuilder getIndexBuilder() { diff --git a/metadata-io/src/main/java/com/linkedin/metadata/search/utils/SearchUtils.java b/metadata-io/src/main/java/com/linkedin/metadata/search/utils/SearchUtils.java index 3ddc004dd9fa9..add2b1526ab67 100644 --- a/metadata-io/src/main/java/com/linkedin/metadata/search/utils/SearchUtils.java +++ b/metadata-io/src/main/java/com/linkedin/metadata/search/utils/SearchUtils.java @@ -3,7 +3,6 @@ import static com.linkedin.metadata.Constants.*; import com.linkedin.common.UrnArray; -import com.linkedin.common.urn.Urn; import com.linkedin.data.template.LongMap; import com.linkedin.metadata.query.ListResult; import com.linkedin.metadata.query.SearchFlags; @@ -19,11 +18,8 @@ import com.linkedin.metadata.utils.SearchUtil; import java.io.IOException; import java.io.InputStream; -import java.io.UnsupportedEncodingException; -import java.net.URLEncoder; import java.util.Collections; import java.util.Map; -import java.util.Optional; import java.util.Set; import java.util.function.Predicate; import java.util.stream.Collectors; @@ -39,15 +35,6 @@ public class SearchUtils { private SearchUtils() {} - public static Optional getDocId(@Nonnull Urn urn) { - try { - return Optional.of(URLEncoder.encode(urn.toString(), "UTF-8")); - } catch (UnsupportedEncodingException e) { - log.error("Failed to encode the urn with error: {}", e.toString()); - return Optional.empty(); - } - } - /** * Validates the request params and create a request map out of it. * diff --git a/metadata-io/src/main/java/com/linkedin/metadata/service/UpdateIndicesService.java b/metadata-io/src/main/java/com/linkedin/metadata/service/UpdateIndicesService.java index 2ab9e17f28163..2274b0a7c1cd8 100644 --- a/metadata-io/src/main/java/com/linkedin/metadata/service/UpdateIndicesService.java +++ b/metadata-io/src/main/java/com/linkedin/metadata/service/UpdateIndicesService.java @@ -14,7 +14,6 @@ import com.linkedin.common.Status; import com.linkedin.common.UrnArray; import com.linkedin.common.urn.Urn; -import com.linkedin.common.urn.UrnUtils; import com.linkedin.data.template.RecordTemplate; import com.linkedin.datajob.DataJobInputOutput; import com.linkedin.dataset.FineGrainedLineage; @@ -30,7 +29,6 @@ import com.linkedin.metadata.graph.GraphIndexUtils; import com.linkedin.metadata.graph.GraphService; import com.linkedin.metadata.graph.dgraph.DgraphGraphService; -import com.linkedin.metadata.key.SchemaFieldKey; import com.linkedin.metadata.models.AspectSpec; import com.linkedin.metadata.models.EntitySpec; import com.linkedin.metadata.models.RelationshipFieldSpec; @@ -41,11 +39,10 @@ import com.linkedin.metadata.search.EntitySearchService; import com.linkedin.metadata.search.elasticsearch.indexbuilder.EntityIndexBuilders; import com.linkedin.metadata.search.transformer.SearchDocumentTransformer; -import com.linkedin.metadata.search.utils.SearchUtils; import com.linkedin.metadata.systemmetadata.SystemMetadataService; import com.linkedin.metadata.timeseries.TimeseriesAspectService; import com.linkedin.metadata.timeseries.transformer.TimeseriesAspectTransformer; -import com.linkedin.metadata.utils.EntityKeyUtils; +import com.linkedin.metadata.utils.SchemaFieldUtils; import com.linkedin.mxe.MetadataChangeLog; import com.linkedin.mxe.SystemMetadata; import com.linkedin.structured.StructuredPropertyDefinition; @@ -327,17 +324,6 @@ private void updateFineGrainedEdgesAndRelationships( } } - private Urn generateSchemaFieldUrn( - @Nonnull final String resourceUrn, @Nonnull final String fieldPath) { - // we rely on schemaField fieldPaths to be encoded since we do that with fineGrainedLineage on - // the ingestion side - final String encodedFieldPath = - fieldPath.replaceAll("\\(", "%28").replaceAll("\\)", "%29").replaceAll(",", "%2C"); - final SchemaFieldKey key = - new SchemaFieldKey().setParent(UrnUtils.getUrn(resourceUrn)).setFieldPath(encodedFieldPath); - return EntityKeyUtils.convertEntityKeyToUrn(key, Constants.SCHEMA_FIELD_ENTITY_NAME); - } - // TODO: remove this method once we implement sourceOverride and update inputFields aspect private void updateInputFieldEdgesAndRelationships( @Nonnull final Urn urn, @@ -350,7 +336,7 @@ private void updateInputFieldEdgesAndRelationships( && field.hasSchemaField() && field.getSchemaField().hasFieldPath()) { final Urn sourceFieldUrn = - generateSchemaFieldUrn(urn.toString(), field.getSchemaField().getFieldPath()); + SchemaFieldUtils.generateSchemaFieldUrn(urn, field.getSchemaField().getFieldPath()); // TODO: add edges uniformly across aspects edgesToAdd.add( new Edge( @@ -554,11 +540,7 @@ private void updateSearchService(@Nonnull OperationContext opContext, MCLItem ev return; } - Optional docId = SearchUtils.getDocId(urn); - - if (!docId.isPresent()) { - return; - } + final String docId = _entityIndexBuilders.getIndexConvention().getEntityDocumentId(urn); if (_searchDiffMode && (systemMetadata == null @@ -590,7 +572,7 @@ private void updateSearchService(@Nonnull OperationContext opContext, MCLItem ev searchDocument.get(), previousSearchDocument.orElse(null)) .toString(); - _entitySearchService.upsertDocument(opContext, entityName, finalDocument, docId.get()); + _entitySearchService.upsertDocument(opContext, entityName, finalDocument, docId); } /** Process snapshot and update time-series index */ diff --git a/metadata-io/src/main/java/com/linkedin/metadata/timeline/TimelineServiceImpl.java b/metadata-io/src/main/java/com/linkedin/metadata/timeline/TimelineServiceImpl.java index a93d4880a7979..3895bf4fe2ef8 100644 --- a/metadata-io/src/main/java/com/linkedin/metadata/timeline/TimelineServiceImpl.java +++ b/metadata-io/src/main/java/com/linkedin/metadata/timeline/TimelineServiceImpl.java @@ -3,12 +3,8 @@ import static com.linkedin.common.urn.VersionedUrnUtils.*; import static com.linkedin.metadata.Constants.*; -import com.fasterxml.jackson.core.JsonProcessingException; import com.fasterxml.jackson.core.StreamReadConstraints; -import com.fasterxml.jackson.databind.JsonNode; import com.fasterxml.jackson.databind.ObjectMapper; -import com.github.fge.jsonpatch.JsonPatch; -import com.github.fge.jsonpatch.diff.JsonDiff; import com.linkedin.common.urn.Urn; import com.linkedin.metadata.entity.AspectDao; import com.linkedin.metadata.entity.EntityAspect; @@ -30,6 +26,10 @@ import com.linkedin.metadata.timeline.eventgenerator.InstitutionalMemoryChangeEventGenerator; import com.linkedin.metadata.timeline.eventgenerator.OwnershipChangeEventGenerator; import com.linkedin.metadata.timeline.eventgenerator.SchemaMetadataChangeEventGenerator; +import jakarta.json.Json; +import jakarta.json.JsonPatch; +import jakarta.json.JsonValue; +import java.io.StringReader; import java.sql.Timestamp; import java.util.ArrayList; import java.util.Collection; @@ -478,16 +478,13 @@ private List computeDiff( } private JsonPatch getRawDiff(EntityAspect previousValue, EntityAspect currentValue) { - JsonNode prevNode = OBJECT_MAPPER.nullNode(); - try { - if (previousValue.getVersion() != -1) { - prevNode = OBJECT_MAPPER.readTree(previousValue.getMetadata()); - } - JsonNode currNode = OBJECT_MAPPER.readTree(currentValue.getMetadata()); - return JsonDiff.asJsonPatch(prevNode, currNode); - } catch (JsonProcessingException e) { - throw new IllegalStateException(e); + JsonValue prevNode = Json.createReader(new StringReader("{}")).readValue(); + if (previousValue.getVersion() != -1) { + prevNode = Json.createReader(new StringReader(previousValue.getMetadata())).readValue(); } + JsonValue currNode = + Json.createReader(new StringReader(currentValue.getMetadata())).readValue(); + return Json.createDiff(prevNode.asJsonObject(), currNode.asJsonObject()); } private void combineComputedDiffsPerTransactionId( diff --git a/metadata-io/src/main/java/com/linkedin/metadata/timeline/eventgenerator/ChangeEventGeneratorUtils.java b/metadata-io/src/main/java/com/linkedin/metadata/timeline/eventgenerator/ChangeEventGeneratorUtils.java index f6192294e5701..7c74788f62342 100644 --- a/metadata-io/src/main/java/com/linkedin/metadata/timeline/eventgenerator/ChangeEventGeneratorUtils.java +++ b/metadata-io/src/main/java/com/linkedin/metadata/timeline/eventgenerator/ChangeEventGeneratorUtils.java @@ -1,13 +1,16 @@ package com.linkedin.metadata.timeline.eventgenerator; +import com.linkedin.common.AuditStamp; import com.linkedin.common.urn.Urn; import com.linkedin.common.urn.UrnUtils; +import com.linkedin.data.template.RecordTemplate; import com.linkedin.metadata.timeline.data.ChangeEvent; import com.linkedin.metadata.timeline.data.dataset.schema.SchemaFieldGlossaryTermChangeEvent; import com.linkedin.metadata.timeline.data.dataset.schema.SchemaFieldTagChangeEvent; import com.linkedin.metadata.timeline.data.entity.GlossaryTermChangeEvent; import com.linkedin.metadata.timeline.data.entity.TagChangeEvent; import com.linkedin.schema.SchemaField; +import java.util.ArrayList; import java.util.Arrays; import java.util.List; import java.util.stream.Collectors; @@ -95,5 +98,27 @@ public static List convertEntityGlossaryTermChangeEvents( .collect(Collectors.toList()); } + public static List generateChangeEvents( + @Nonnull EntityChangeEventGeneratorRegistry entityChangeEventGeneratorRegistry, + @Nonnull final Urn urn, + @Nonnull final String entityName, + @Nonnull final String aspectName, + @Nonnull final Aspect from, + @Nonnull final Aspect to, + @Nonnull AuditStamp auditStamp) { + final List> entityChangeEventGenerators = + entityChangeEventGeneratorRegistry.getEntityChangeEventGenerators(aspectName).stream() + // Note: Assumes that correct types have been registered for the aspect. + .map(changeEventGenerator -> (EntityChangeEventGenerator) changeEventGenerator) + .collect(Collectors.toList()); + final List allChangeEvents = new ArrayList<>(); + for (EntityChangeEventGenerator entityChangeEventGenerator : entityChangeEventGenerators) { + allChangeEvents.addAll( + entityChangeEventGenerator.getChangeEvents( + urn, entityName, aspectName, from, to, auditStamp)); + } + return allChangeEvents; + } + private ChangeEventGeneratorUtils() {} } diff --git a/metadata-io/src/main/java/com/linkedin/metadata/timeline/eventgenerator/DatasetPropertiesChangeEventGenerator.java b/metadata-io/src/main/java/com/linkedin/metadata/timeline/eventgenerator/DatasetPropertiesChangeEventGenerator.java index f9e1d5c835c60..4f6ebd36829fa 100644 --- a/metadata-io/src/main/java/com/linkedin/metadata/timeline/eventgenerator/DatasetPropertiesChangeEventGenerator.java +++ b/metadata-io/src/main/java/com/linkedin/metadata/timeline/eventgenerator/DatasetPropertiesChangeEventGenerator.java @@ -4,7 +4,6 @@ import static com.linkedin.metadata.timeline.eventgenerator.EditableDatasetPropertiesChangeEventGenerator.*; import com.datahub.util.RecordUtils; -import com.github.fge.jsonpatch.JsonPatch; import com.google.common.collect.ImmutableMap; import com.linkedin.common.AuditStamp; import com.linkedin.common.urn.Urn; @@ -15,6 +14,7 @@ import com.linkedin.metadata.timeline.data.ChangeOperation; import com.linkedin.metadata.timeline.data.ChangeTransaction; import com.linkedin.metadata.timeline.data.SemanticChangeType; +import jakarta.json.JsonPatch; import java.util.ArrayList; import java.util.Comparator; import java.util.List; diff --git a/metadata-io/src/main/java/com/linkedin/metadata/timeline/eventgenerator/EditableDatasetPropertiesChangeEventGenerator.java b/metadata-io/src/main/java/com/linkedin/metadata/timeline/eventgenerator/EditableDatasetPropertiesChangeEventGenerator.java index 4b112b15792fe..3dee36628b731 100644 --- a/metadata-io/src/main/java/com/linkedin/metadata/timeline/eventgenerator/EditableDatasetPropertiesChangeEventGenerator.java +++ b/metadata-io/src/main/java/com/linkedin/metadata/timeline/eventgenerator/EditableDatasetPropertiesChangeEventGenerator.java @@ -3,7 +3,6 @@ import static com.linkedin.metadata.Constants.*; import com.datahub.util.RecordUtils; -import com.github.fge.jsonpatch.JsonPatch; import com.google.common.collect.ImmutableMap; import com.linkedin.common.AuditStamp; import com.linkedin.common.urn.Urn; @@ -14,6 +13,7 @@ import com.linkedin.metadata.timeline.data.ChangeOperation; import com.linkedin.metadata.timeline.data.ChangeTransaction; import com.linkedin.metadata.timeline.data.SemanticChangeType; +import jakarta.json.JsonPatch; import java.util.ArrayList; import java.util.Comparator; import java.util.List; diff --git a/metadata-io/src/main/java/com/linkedin/metadata/timeline/eventgenerator/EditableSchemaMetadataChangeEventGenerator.java b/metadata-io/src/main/java/com/linkedin/metadata/timeline/eventgenerator/EditableSchemaMetadataChangeEventGenerator.java index 4850fde426f00..f244053e8a1f1 100644 --- a/metadata-io/src/main/java/com/linkedin/metadata/timeline/eventgenerator/EditableSchemaMetadataChangeEventGenerator.java +++ b/metadata-io/src/main/java/com/linkedin/metadata/timeline/eventgenerator/EditableSchemaMetadataChangeEventGenerator.java @@ -4,7 +4,6 @@ import static com.linkedin.metadata.timeline.eventgenerator.ChangeEventGeneratorUtils.*; import com.datahub.util.RecordUtils; -import com.github.fge.jsonpatch.JsonPatch; import com.google.common.collect.ImmutableMap; import com.linkedin.common.AuditStamp; import com.linkedin.common.GlobalTags; @@ -20,6 +19,7 @@ import com.linkedin.schema.EditableSchemaFieldInfo; import com.linkedin.schema.EditableSchemaFieldInfoArray; import com.linkedin.schema.EditableSchemaMetadata; +import jakarta.json.JsonPatch; import java.util.ArrayList; import java.util.Collections; import java.util.Comparator; diff --git a/metadata-io/src/main/java/com/linkedin/metadata/timeline/eventgenerator/EntityChangeEventGenerator.java b/metadata-io/src/main/java/com/linkedin/metadata/timeline/eventgenerator/EntityChangeEventGenerator.java index ff6361981f510..0afb06a5095f0 100644 --- a/metadata-io/src/main/java/com/linkedin/metadata/timeline/eventgenerator/EntityChangeEventGenerator.java +++ b/metadata-io/src/main/java/com/linkedin/metadata/timeline/eventgenerator/EntityChangeEventGenerator.java @@ -1,6 +1,5 @@ package com.linkedin.metadata.timeline.eventgenerator; -import com.github.fge.jsonpatch.JsonPatch; import com.linkedin.common.AuditStamp; import com.linkedin.common.urn.Urn; import com.linkedin.data.template.RecordTemplate; @@ -8,6 +7,7 @@ import com.linkedin.metadata.timeline.data.ChangeCategory; import com.linkedin.metadata.timeline.data.ChangeEvent; import com.linkedin.metadata.timeline.data.ChangeTransaction; +import jakarta.json.JsonPatch; import java.util.List; import javax.annotation.Nonnull; diff --git a/metadata-io/src/main/java/com/linkedin/metadata/timeline/eventgenerator/GlobalTagsChangeEventGenerator.java b/metadata-io/src/main/java/com/linkedin/metadata/timeline/eventgenerator/GlobalTagsChangeEventGenerator.java index ef40c5dc81a3c..a98593750548d 100644 --- a/metadata-io/src/main/java/com/linkedin/metadata/timeline/eventgenerator/GlobalTagsChangeEventGenerator.java +++ b/metadata-io/src/main/java/com/linkedin/metadata/timeline/eventgenerator/GlobalTagsChangeEventGenerator.java @@ -3,7 +3,6 @@ import static com.linkedin.metadata.Constants.*; import com.datahub.util.RecordUtils; -import com.github.fge.jsonpatch.JsonPatch; import com.linkedin.common.AuditStamp; import com.linkedin.common.GlobalTags; import com.linkedin.common.TagAssociation; @@ -16,6 +15,7 @@ import com.linkedin.metadata.timeline.data.ChangeTransaction; import com.linkedin.metadata.timeline.data.SemanticChangeType; import com.linkedin.metadata.timeline.data.entity.TagChangeEvent; +import jakarta.json.JsonPatch; import java.util.ArrayList; import java.util.Comparator; import java.util.List; diff --git a/metadata-io/src/main/java/com/linkedin/metadata/timeline/eventgenerator/GlossaryTermInfoChangeEventGenerator.java b/metadata-io/src/main/java/com/linkedin/metadata/timeline/eventgenerator/GlossaryTermInfoChangeEventGenerator.java index eb002a9a83cea..8b6ae1f4e7ef0 100644 --- a/metadata-io/src/main/java/com/linkedin/metadata/timeline/eventgenerator/GlossaryTermInfoChangeEventGenerator.java +++ b/metadata-io/src/main/java/com/linkedin/metadata/timeline/eventgenerator/GlossaryTermInfoChangeEventGenerator.java @@ -4,7 +4,6 @@ import static com.linkedin.metadata.timeline.eventgenerator.EditableDatasetPropertiesChangeEventGenerator.*; import com.datahub.util.RecordUtils; -import com.github.fge.jsonpatch.JsonPatch; import com.linkedin.common.AuditStamp; import com.linkedin.common.urn.Urn; import com.linkedin.glossary.GlossaryTermInfo; @@ -14,6 +13,7 @@ import com.linkedin.metadata.timeline.data.ChangeOperation; import com.linkedin.metadata.timeline.data.ChangeTransaction; import com.linkedin.metadata.timeline.data.SemanticChangeType; +import jakarta.json.JsonPatch; import java.util.ArrayList; import java.util.Comparator; import java.util.List; diff --git a/metadata-io/src/main/java/com/linkedin/metadata/timeline/eventgenerator/GlossaryTermsChangeEventGenerator.java b/metadata-io/src/main/java/com/linkedin/metadata/timeline/eventgenerator/GlossaryTermsChangeEventGenerator.java index 6e56a7e7bbeb1..4e2110a6e35c1 100644 --- a/metadata-io/src/main/java/com/linkedin/metadata/timeline/eventgenerator/GlossaryTermsChangeEventGenerator.java +++ b/metadata-io/src/main/java/com/linkedin/metadata/timeline/eventgenerator/GlossaryTermsChangeEventGenerator.java @@ -3,7 +3,6 @@ import static com.linkedin.metadata.Constants.*; import com.datahub.util.RecordUtils; -import com.github.fge.jsonpatch.JsonPatch; import com.linkedin.common.AuditStamp; import com.linkedin.common.GlossaryTermAssociation; import com.linkedin.common.GlossaryTermAssociationArray; @@ -16,6 +15,7 @@ import com.linkedin.metadata.timeline.data.ChangeTransaction; import com.linkedin.metadata.timeline.data.SemanticChangeType; import com.linkedin.metadata.timeline.data.entity.GlossaryTermChangeEvent; +import jakarta.json.JsonPatch; import java.util.ArrayList; import java.util.Comparator; import java.util.List; diff --git a/metadata-io/src/main/java/com/linkedin/metadata/timeline/eventgenerator/InstitutionalMemoryChangeEventGenerator.java b/metadata-io/src/main/java/com/linkedin/metadata/timeline/eventgenerator/InstitutionalMemoryChangeEventGenerator.java index bf3ff3293d2a2..6d5ff2abadf01 100644 --- a/metadata-io/src/main/java/com/linkedin/metadata/timeline/eventgenerator/InstitutionalMemoryChangeEventGenerator.java +++ b/metadata-io/src/main/java/com/linkedin/metadata/timeline/eventgenerator/InstitutionalMemoryChangeEventGenerator.java @@ -3,7 +3,6 @@ import static com.linkedin.metadata.Constants.*; import com.datahub.util.RecordUtils; -import com.github.fge.jsonpatch.JsonPatch; import com.linkedin.common.AuditStamp; import com.linkedin.common.InstitutionalMemory; import com.linkedin.common.InstitutionalMemoryMetadata; @@ -16,6 +15,7 @@ import com.linkedin.metadata.timeline.data.ChangeOperation; import com.linkedin.metadata.timeline.data.ChangeTransaction; import com.linkedin.metadata.timeline.data.SemanticChangeType; +import jakarta.json.JsonPatch; import java.util.ArrayList; import java.util.Comparator; import java.util.List; diff --git a/metadata-io/src/main/java/com/linkedin/metadata/timeline/eventgenerator/OwnershipChangeEventGenerator.java b/metadata-io/src/main/java/com/linkedin/metadata/timeline/eventgenerator/OwnershipChangeEventGenerator.java index 1ef5d0f20da5a..3a66d5d8f016d 100644 --- a/metadata-io/src/main/java/com/linkedin/metadata/timeline/eventgenerator/OwnershipChangeEventGenerator.java +++ b/metadata-io/src/main/java/com/linkedin/metadata/timeline/eventgenerator/OwnershipChangeEventGenerator.java @@ -3,7 +3,6 @@ import static com.linkedin.metadata.Constants.*; import com.datahub.util.RecordUtils; -import com.github.fge.jsonpatch.JsonPatch; import com.linkedin.common.AuditStamp; import com.linkedin.common.Owner; import com.linkedin.common.OwnerArray; @@ -16,6 +15,7 @@ import com.linkedin.metadata.timeline.data.ChangeTransaction; import com.linkedin.metadata.timeline.data.SemanticChangeType; import com.linkedin.metadata.timeline.data.entity.OwnerChangeEvent; +import jakarta.json.JsonPatch; import java.util.ArrayList; import java.util.Comparator; import java.util.List; diff --git a/metadata-io/src/main/java/com/linkedin/metadata/timeline/eventgenerator/SchemaMetadataChangeEventGenerator.java b/metadata-io/src/main/java/com/linkedin/metadata/timeline/eventgenerator/SchemaMetadataChangeEventGenerator.java index 483ab806c8462..129a42c0775d7 100644 --- a/metadata-io/src/main/java/com/linkedin/metadata/timeline/eventgenerator/SchemaMetadataChangeEventGenerator.java +++ b/metadata-io/src/main/java/com/linkedin/metadata/timeline/eventgenerator/SchemaMetadataChangeEventGenerator.java @@ -3,7 +3,6 @@ import static com.linkedin.metadata.timeline.eventgenerator.ChangeEventGeneratorUtils.*; import com.datahub.util.RecordUtils; -import com.github.fge.jsonpatch.JsonPatch; import com.google.common.collect.ImmutableMap; import com.linkedin.common.AuditStamp; import com.linkedin.common.urn.DatasetUrn; @@ -19,6 +18,7 @@ import com.linkedin.schema.SchemaField; import com.linkedin.schema.SchemaFieldArray; import com.linkedin.schema.SchemaMetadata; +import jakarta.json.JsonPatch; import java.net.URISyntaxException; import java.util.ArrayList; import java.util.Collections; diff --git a/metadata-io/src/test/java/com/linkedin/metadata/schemafields/sideeffects/SchemaFieldSideEffectTest.java b/metadata-io/src/test/java/com/linkedin/metadata/schemafields/sideeffects/SchemaFieldSideEffectTest.java new file mode 100644 index 0000000000000..6139776702c71 --- /dev/null +++ b/metadata-io/src/test/java/com/linkedin/metadata/schemafields/sideeffects/SchemaFieldSideEffectTest.java @@ -0,0 +1,713 @@ +package com.linkedin.metadata.schemafields.sideeffects; + +import static com.linkedin.metadata.Constants.DATASET_ENTITY_NAME; +import static com.linkedin.metadata.Constants.DATASET_KEY_ASPECT_NAME; +import static com.linkedin.metadata.Constants.SCHEMA_FIELD_ALIASES_ASPECT; +import static com.linkedin.metadata.Constants.SCHEMA_FIELD_ENTITY_NAME; +import static com.linkedin.metadata.Constants.SCHEMA_FIELD_KEY_ASPECT; +import static com.linkedin.metadata.Constants.SCHEMA_METADATA_ASPECT_NAME; +import static com.linkedin.metadata.Constants.STATUS_ASPECT_NAME; +import static org.mockito.ArgumentMatchers.anySet; +import static org.mockito.ArgumentMatchers.eq; +import static org.mockito.Mockito.mock; +import static org.mockito.Mockito.reset; +import static org.mockito.Mockito.when; +import static org.testng.Assert.assertEquals; + +import com.linkedin.common.Status; +import com.linkedin.common.UrnArray; +import com.linkedin.common.urn.Urn; +import com.linkedin.common.urn.UrnUtils; +import com.linkedin.data.ByteString; +import com.linkedin.entity.Aspect; +import com.linkedin.events.metadata.ChangeType; +import com.linkedin.metadata.aspect.AspectRetriever; +import com.linkedin.metadata.aspect.batch.MCLItem; +import com.linkedin.metadata.aspect.batch.MCPItem; +import com.linkedin.metadata.aspect.plugins.config.AspectPluginConfig; +import com.linkedin.metadata.entity.SearchRetriever; +import com.linkedin.metadata.entity.ebean.batch.ChangeItemImpl; +import com.linkedin.metadata.entity.ebean.batch.DeleteItemImpl; +import com.linkedin.metadata.entity.ebean.batch.MCLItemImpl; +import com.linkedin.metadata.models.AspectSpec; +import com.linkedin.metadata.models.registry.EntityRegistry; +import com.linkedin.metadata.timeline.eventgenerator.EntityChangeEventGeneratorRegistry; +import com.linkedin.metadata.timeline.eventgenerator.EntityKeyChangeEventGenerator; +import com.linkedin.metadata.timeline.eventgenerator.SchemaMetadataChangeEventGenerator; +import com.linkedin.metadata.timeline.eventgenerator.StatusChangeEventGenerator; +import com.linkedin.metadata.utils.AuditStampUtils; +import com.linkedin.metadata.utils.GenericRecordUtils; +import com.linkedin.metadata.utils.SystemMetadataUtils; +import com.linkedin.mxe.MetadataChangeLog; +import com.linkedin.mxe.MetadataChangeProposal; +import com.linkedin.mxe.SystemMetadata; +import com.linkedin.schema.SchemaMetadata; +import com.linkedin.schemafield.SchemaFieldAliases; +import com.linkedin.test.metadata.aspect.TestEntityRegistry; +import com.linkedin.test.metadata.aspect.batch.TestMCP; +import io.datahubproject.metadata.context.RetrieverContext; +import io.datahubproject.test.metadata.context.TestOperationContexts; +import java.nio.charset.StandardCharsets; +import java.util.ArrayList; +import java.util.List; +import java.util.Map; +import java.util.Set; +import java.util.stream.Collectors; +import org.testng.annotations.BeforeMethod; +import org.testng.annotations.Test; + +public class SchemaFieldSideEffectTest { + private static final EntityRegistry TEST_REGISTRY = new TestEntityRegistry(); + private static final List SUPPORTED_CHANGE_TYPES = + List.of( + ChangeType.CREATE, + ChangeType.CREATE_ENTITY, + ChangeType.UPSERT, + ChangeType.DELETE, + ChangeType.RESTATE); + private static final Urn TEST_URN = + UrnUtils.getUrn("urn:li:dataset:(urn:li:dataPlatform:hive,fct_users_created,PROD)"); + private static final AspectPluginConfig TEST_PLUGIN_CONFIG = + AspectPluginConfig.builder() + .className(SchemaFieldSideEffect.class.getName()) + .enabled(true) + .supportedOperations( + SUPPORTED_CHANGE_TYPES.stream() + .map(ChangeType::toString) + .collect(Collectors.toList())) + .supportedEntityAspectNames( + List.of( + AspectPluginConfig.EntityAspectName.builder() + .entityName(DATASET_ENTITY_NAME) + .aspectName(SCHEMA_METADATA_ASPECT_NAME) + .build(), + AspectPluginConfig.EntityAspectName.builder() + .entityName(DATASET_ENTITY_NAME) + .aspectName(STATUS_ASPECT_NAME) + .build())) + .build(); + + private AspectRetriever mockAspectRetriever; + private RetrieverContext retrieverContext; + + @BeforeMethod + public void setup() { + mockAspectRetriever = mock(AspectRetriever.class); + when(mockAspectRetriever.getEntityRegistry()).thenReturn(TEST_REGISTRY); + retrieverContext = + RetrieverContext.builder() + .searchRetriever(mock(SearchRetriever.class)) + .aspectRetriever(mockAspectRetriever) + .graphRetriever(TestOperationContexts.emptyGraphRetriever) + .build(); + } + + @Test + public void schemaMetadataToSchemaFieldKeyTest() { + SchemaFieldSideEffect test = new SchemaFieldSideEffect(); + test.setConfig(TEST_PLUGIN_CONFIG); + SchemaMetadata schemaMetadata = getTestSchemaMetadata(); + + List testOutput; + for (ChangeType changeType : + List.of(ChangeType.CREATE, ChangeType.CREATE_ENTITY, ChangeType.UPSERT)) { + // Run test + ChangeItemImpl schemaMetadataChangeItem = + ChangeItemImpl.builder() + .urn(TEST_URN) + .aspectName(SCHEMA_METADATA_ASPECT_NAME) + .changeType(changeType) + .entitySpec(TEST_REGISTRY.getEntitySpec(DATASET_ENTITY_NAME)) + .aspectSpec( + TEST_REGISTRY + .getEntitySpec(DATASET_ENTITY_NAME) + .getAspectSpec(SCHEMA_METADATA_ASPECT_NAME)) + .recordTemplate(schemaMetadata) + .auditStamp(AuditStampUtils.createDefaultAuditStamp()) + .build(mockAspectRetriever); + testOutput = + test.postMCPSideEffect( + List.of( + MCLItemImpl.builder() + .build( + schemaMetadataChangeItem, + null, + null, + retrieverContext.getAspectRetriever())), + retrieverContext) + .toList(); + + // Verify test + switch (changeType) { + default -> { + assertEquals( + testOutput.size(), 2, "Unexpected output items for changeType:" + changeType); + + assertEquals( + testOutput, + List.of( + ChangeItemImpl.builder() + .urn( + UrnUtils.getUrn( + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:hive,fct_users_created,PROD),user_id)")) + .aspectName(SCHEMA_FIELD_ALIASES_ASPECT) + .changeType(changeType) + .entitySpec(TEST_REGISTRY.getEntitySpec(SCHEMA_FIELD_ENTITY_NAME)) + .aspectSpec( + TEST_REGISTRY + .getEntitySpec(SCHEMA_FIELD_ENTITY_NAME) + .getAspectSpec(SCHEMA_FIELD_ALIASES_ASPECT)) + .recordTemplate( + new SchemaFieldAliases() + .setAliases( + new UrnArray( + List.of( + UrnUtils.getUrn( + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:hive,fct_users_created,PROD),user_id)"))))) + .auditStamp(schemaMetadataChangeItem.getAuditStamp()) + .systemMetadata(schemaMetadataChangeItem.getSystemMetadata()) + .build(mockAspectRetriever), + ChangeItemImpl.builder() + .urn( + UrnUtils.getUrn( + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:hive,fct_users_created,PROD),user_name)")) + .aspectName(SCHEMA_FIELD_ALIASES_ASPECT) + .changeType(changeType) + .entitySpec(TEST_REGISTRY.getEntitySpec(SCHEMA_FIELD_ENTITY_NAME)) + .aspectSpec( + TEST_REGISTRY + .getEntitySpec(SCHEMA_FIELD_ENTITY_NAME) + .getAspectSpec(SCHEMA_FIELD_ALIASES_ASPECT)) + .recordTemplate( + new SchemaFieldAliases() + .setAliases( + new UrnArray( + List.of( + UrnUtils.getUrn( + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:hive,fct_users_created,PROD),user_name)"))))) + .auditStamp(schemaMetadataChangeItem.getAuditStamp()) + .systemMetadata(schemaMetadataChangeItem.getSystemMetadata()) + .build(mockAspectRetriever))); + } + } + } + } + + @Test + public void statusToSchemaFieldStatusTest() { + SchemaFieldSideEffect test = new SchemaFieldSideEffect(); + test.setConfig(TEST_PLUGIN_CONFIG); + SchemaMetadata schemaMetadata = getTestSchemaMetadata(); + Status status = new Status().setRemoved(true); + + // Case 1. schemaMetadata (exists), then status updated + reset(mockAspectRetriever); + when(mockAspectRetriever.getEntityRegistry()).thenReturn(TEST_REGISTRY); + when(mockAspectRetriever.getLatestAspectObjects( + Set.of(TEST_URN), Set.of(SCHEMA_METADATA_ASPECT_NAME))) + .thenReturn( + Map.of( + TEST_URN, Map.of(SCHEMA_METADATA_ASPECT_NAME, new Aspect(schemaMetadata.data())))); + + List testOutput; + for (ChangeType changeType : List.of(ChangeType.CREATE, ChangeType.UPSERT)) { + // Run Status test + ChangeItemImpl statusChangeItem = + ChangeItemImpl.builder() + .urn(TEST_URN) + .aspectName(STATUS_ASPECT_NAME) + .changeType(changeType) + .entitySpec(TEST_REGISTRY.getEntitySpec(DATASET_ENTITY_NAME)) + .aspectSpec( + TEST_REGISTRY + .getEntitySpec(DATASET_ENTITY_NAME) + .getAspectSpec(STATUS_ASPECT_NAME)) + .recordTemplate(status) + .auditStamp(AuditStampUtils.createDefaultAuditStamp()) + .build(mockAspectRetriever); + testOutput = + test.postMCPSideEffect( + List.of( + MCLItemImpl.builder() + .build( + statusChangeItem, null, null, retrieverContext.getAspectRetriever())), + retrieverContext) + .collect(Collectors.toList()); + + // Verify test + switch (changeType) { + default -> { + assertEquals( + testOutput.size(), 2, "Unexpected output items for changeType:" + changeType); + + assertEquals( + testOutput, + List.of( + ChangeItemImpl.builder() + .urn( + UrnUtils.getUrn( + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:hive,fct_users_created,PROD),user_id)")) + .aspectName(STATUS_ASPECT_NAME) + .changeType(changeType) + .entitySpec(TEST_REGISTRY.getEntitySpec(SCHEMA_FIELD_ENTITY_NAME)) + .aspectSpec( + TEST_REGISTRY + .getEntitySpec(SCHEMA_FIELD_ENTITY_NAME) + .getAspectSpec(STATUS_ASPECT_NAME)) + .recordTemplate(status) + .auditStamp(statusChangeItem.getAuditStamp()) + .systemMetadata(statusChangeItem.getSystemMetadata()) + .build(mockAspectRetriever), + ChangeItemImpl.builder() + .urn( + UrnUtils.getUrn( + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:hive,fct_users_created,PROD),user_name)")) + .aspectName(STATUS_ASPECT_NAME) + .changeType(changeType) + .entitySpec(TEST_REGISTRY.getEntitySpec(SCHEMA_FIELD_ENTITY_NAME)) + .aspectSpec( + TEST_REGISTRY + .getEntitySpec(SCHEMA_FIELD_ENTITY_NAME) + .getAspectSpec(STATUS_ASPECT_NAME)) + .recordTemplate(status) + .auditStamp(statusChangeItem.getAuditStamp()) + .systemMetadata(statusChangeItem.getSystemMetadata()) + .build(mockAspectRetriever))); + } + } + } + + // Case 2. status (exists), then schemaMetadata + reset(mockAspectRetriever); + when(mockAspectRetriever.getEntityRegistry()).thenReturn(TEST_REGISTRY); + when(mockAspectRetriever.getLatestAspectObjects(Set.of(TEST_URN), Set.of(STATUS_ASPECT_NAME))) + .thenReturn(Map.of(TEST_URN, Map.of(STATUS_ASPECT_NAME, new Aspect(status.data())))); + + for (ChangeType changeType : List.of(ChangeType.CREATE, ChangeType.UPSERT)) { + // Run test + ChangeItemImpl schemaMetadataChangeItem = + ChangeItemImpl.builder() + .urn(TEST_URN) + .aspectName(SCHEMA_METADATA_ASPECT_NAME) + .changeType(changeType) + .entitySpec(TEST_REGISTRY.getEntitySpec(DATASET_ENTITY_NAME)) + .aspectSpec( + TEST_REGISTRY + .getEntitySpec(DATASET_ENTITY_NAME) + .getAspectSpec(SCHEMA_METADATA_ASPECT_NAME)) + .recordTemplate(schemaMetadata) + .auditStamp(AuditStampUtils.createDefaultAuditStamp()) + .build(mockAspectRetriever); + testOutput = + test.postMCPSideEffect( + List.of( + MCLItemImpl.builder() + .build( + schemaMetadataChangeItem, + null, + null, + retrieverContext.getAspectRetriever())), + retrieverContext) + .collect(Collectors.toList()); + + // Verify test + switch (changeType) { + default -> { + assertEquals( + testOutput.size(), 4, "Unexpected output items for changeType:" + changeType); + + assertEquals( + testOutput, + List.of( + ChangeItemImpl.builder() + .urn( + UrnUtils.getUrn( + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:hive,fct_users_created,PROD),user_id)")) + .aspectName(STATUS_ASPECT_NAME) + .changeType(changeType) + .entitySpec(TEST_REGISTRY.getEntitySpec(SCHEMA_FIELD_ENTITY_NAME)) + .aspectSpec( + TEST_REGISTRY + .getEntitySpec(SCHEMA_FIELD_ENTITY_NAME) + .getAspectSpec(STATUS_ASPECT_NAME)) + .recordTemplate(status) + .auditStamp(schemaMetadataChangeItem.getAuditStamp()) + .systemMetadata(schemaMetadataChangeItem.getSystemMetadata()) + .build(mockAspectRetriever), + ChangeItemImpl.builder() + .urn( + UrnUtils.getUrn( + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:hive,fct_users_created,PROD),user_name)")) + .aspectName(STATUS_ASPECT_NAME) + .changeType(changeType) + .entitySpec(TEST_REGISTRY.getEntitySpec(SCHEMA_FIELD_ENTITY_NAME)) + .aspectSpec( + TEST_REGISTRY + .getEntitySpec(SCHEMA_FIELD_ENTITY_NAME) + .getAspectSpec(STATUS_ASPECT_NAME)) + .recordTemplate(status) + .auditStamp(schemaMetadataChangeItem.getAuditStamp()) + .systemMetadata(schemaMetadataChangeItem.getSystemMetadata()) + .build(mockAspectRetriever), + ChangeItemImpl.builder() + .urn( + UrnUtils.getUrn( + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:hive,fct_users_created,PROD),user_id)")) + .aspectName(SCHEMA_FIELD_ALIASES_ASPECT) + .changeType(changeType) + .entitySpec(TEST_REGISTRY.getEntitySpec(SCHEMA_FIELD_ENTITY_NAME)) + .aspectSpec( + TEST_REGISTRY + .getEntitySpec(SCHEMA_FIELD_ENTITY_NAME) + .getAspectSpec(SCHEMA_FIELD_ALIASES_ASPECT)) + .recordTemplate( + new SchemaFieldAliases() + .setAliases( + new UrnArray( + List.of( + UrnUtils.getUrn( + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:hive,fct_users_created,PROD),user_id)"))))) + .auditStamp(schemaMetadataChangeItem.getAuditStamp()) + .systemMetadata(schemaMetadataChangeItem.getSystemMetadata()) + .build(mockAspectRetriever), + ChangeItemImpl.builder() + .urn( + UrnUtils.getUrn( + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:hive,fct_users_created,PROD),user_name)")) + .aspectName(SCHEMA_FIELD_ALIASES_ASPECT) + .changeType(changeType) + .entitySpec(TEST_REGISTRY.getEntitySpec(SCHEMA_FIELD_ENTITY_NAME)) + .aspectSpec( + TEST_REGISTRY + .getEntitySpec(SCHEMA_FIELD_ENTITY_NAME) + .getAspectSpec(SCHEMA_FIELD_ALIASES_ASPECT)) + .recordTemplate( + new SchemaFieldAliases() + .setAliases( + new UrnArray( + List.of( + UrnUtils.getUrn( + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:hive,fct_users_created,PROD),user_name)"))))) + .auditStamp(schemaMetadataChangeItem.getAuditStamp()) + .systemMetadata(schemaMetadataChangeItem.getSystemMetadata()) + .build(mockAspectRetriever))); + } + } + } + } + + @Test + public void schemaMetadataDeleteTest() { + SchemaFieldSideEffect test = new SchemaFieldSideEffect(); + test.setConfig(TEST_PLUGIN_CONFIG); + SchemaMetadata schemaMetadata = getTestSchemaMetadata(); + + // Run test + MCLItem schemaMetadataChangeItem = + MCLItemImpl.builder() + .metadataChangeLog( + new MetadataChangeLog() + .setChangeType(ChangeType.DELETE) + .setEntityUrn(TEST_URN) + .setEntityType(DATASET_ENTITY_NAME) + .setAspectName(SCHEMA_METADATA_ASPECT_NAME) + .setPreviousAspectValue(GenericRecordUtils.serializeAspect(schemaMetadata)) + .setCreated(AuditStampUtils.createDefaultAuditStamp())) + .build(retrieverContext.getAspectRetriever()); + + List testOutput = + test.postMCPSideEffect(List.of(schemaMetadataChangeItem), retrieverContext).toList(); + + List expectedEveryAspectPerField = new ArrayList<>(); + for (String schemaField : + List.of( + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:hive,fct_users_created,PROD),user_id)", + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:hive,fct_users_created,PROD),user_name)")) { + for (AspectSpec aspectSpec : + TEST_REGISTRY.getEntitySpec(SCHEMA_FIELD_ENTITY_NAME).getAspectSpecs()) { + expectedEveryAspectPerField.add( + DeleteItemImpl.builder() + .urn(UrnUtils.getUrn(schemaField)) + .aspectName(aspectSpec.getName()) + .auditStamp(schemaMetadataChangeItem.getAuditStamp()) + .entitySpec(TEST_REGISTRY.getEntitySpec(SCHEMA_FIELD_ENTITY_NAME)) + .aspectSpec(aspectSpec) + .build(retrieverContext.getAspectRetriever())); + } + } + + assertEquals( + testOutput.size(), + expectedEveryAspectPerField.size(), + "Unexpected output items for changeType:" + ChangeType.DELETE); + assertEquals( + testOutput.stream() + .filter(item -> item.getAspectName().equals(SCHEMA_FIELD_KEY_ASPECT)) + .count(), + 2, + "Expected both key aspects"); + + assertEquals(testOutput, expectedEveryAspectPerField); + } + + @Test + public void statusDeleteTest() { + SchemaFieldSideEffect test = new SchemaFieldSideEffect(); + test.setConfig(TEST_PLUGIN_CONFIG); + Status status = new Status().setRemoved(false); + + // mock response + reset(mockAspectRetriever); + when(mockAspectRetriever.getEntityRegistry()).thenReturn(TEST_REGISTRY); + when(mockAspectRetriever.getLatestAspectObjects(eq(Set.of(TEST_URN)), anySet())) + .thenReturn( + Map.of( + TEST_URN, + Map.of(SCHEMA_METADATA_ASPECT_NAME, new Aspect(getTestSchemaMetadata().data())))); + + // Run test + MCLItem statusChangeItem = + MCLItemImpl.builder() + .metadataChangeLog( + new MetadataChangeLog() + .setChangeType(ChangeType.DELETE) + .setEntityUrn(TEST_URN) + .setEntityType(DATASET_ENTITY_NAME) + .setAspectName(STATUS_ASPECT_NAME) + .setPreviousAspectValue(GenericRecordUtils.serializeAspect(status)) + .setCreated(AuditStampUtils.createDefaultAuditStamp())) + .build(retrieverContext.getAspectRetriever()); + + List testOutput = + test.postMCPSideEffect(List.of(statusChangeItem), retrieverContext).toList(); + + List expectedStatusDeletePerField = new ArrayList<>(); + for (String schemaField : + List.of( + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:hive,fct_users_created,PROD),user_id)", + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:hive,fct_users_created,PROD),user_name)")) { + for (AspectSpec aspectSpec : + List.of( + TEST_REGISTRY + .getEntitySpec(SCHEMA_FIELD_ENTITY_NAME) + .getAspectSpec(STATUS_ASPECT_NAME))) { + expectedStatusDeletePerField.add( + DeleteItemImpl.builder() + .urn(UrnUtils.getUrn(schemaField)) + .aspectName(aspectSpec.getName()) + .auditStamp(statusChangeItem.getAuditStamp()) + .entitySpec(TEST_REGISTRY.getEntitySpec(SCHEMA_FIELD_ENTITY_NAME)) + .aspectSpec(aspectSpec) + .build(retrieverContext.getAspectRetriever())); + } + } + + assertEquals( + testOutput.size(), + expectedStatusDeletePerField.size(), + "Unexpected output items for changeType:" + ChangeType.DELETE); + assertEquals( + testOutput.stream().filter(item -> item.getAspectName().equals(STATUS_ASPECT_NAME)).count(), + 2, + "Expected both status aspects"); + assertEquals(testOutput, expectedStatusDeletePerField); + } + + @Test + public void schemaMetadataRemovedFieldTest() { + SchemaFieldSideEffect test = new SchemaFieldSideEffect(); + test.setConfig(TEST_PLUGIN_CONFIG); + test.setEntityChangeEventGeneratorRegistry(buildEntityChangeEventGeneratorRegistry()); + + SchemaMetadata previousSchemaMetadata = getTestSchemaMetadata(); + SchemaMetadata currentSchemaMetadata = getTestSchemaMetadataWithRemovedField(); + + List testOutput; + for (ChangeType changeType : List.of(ChangeType.UPSERT)) { + // Run test + ChangeItemImpl schemaMetadataChangeItem = + ChangeItemImpl.builder() + .urn(TEST_URN) + .aspectName(SCHEMA_METADATA_ASPECT_NAME) + .changeType(changeType) + .entitySpec(TEST_REGISTRY.getEntitySpec(DATASET_ENTITY_NAME)) + .aspectSpec( + TEST_REGISTRY + .getEntitySpec(DATASET_ENTITY_NAME) + .getAspectSpec(SCHEMA_METADATA_ASPECT_NAME)) + .recordTemplate(currentSchemaMetadata) + .auditStamp(AuditStampUtils.createDefaultAuditStamp()) + .build(mockAspectRetriever); + testOutput = + test.postMCPSideEffect( + List.of( + MCLItemImpl.builder() + .build( + schemaMetadataChangeItem, + // populate previous item with the now removed field + previousSchemaMetadata, + null, + retrieverContext.getAspectRetriever())), + retrieverContext) + .toList(); + + // Verify test + switch (changeType) { + default -> { + assertEquals( + testOutput.size(), 1, "Unexpected output items for changeType:" + changeType); + + assertEquals( + testOutput, + List.of( + ChangeItemImpl.builder() + .urn( + UrnUtils.getUrn( + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:hive,fct_users_created,PROD),user_name)")) + .aspectName(STATUS_ASPECT_NAME) + .changeType(changeType) + .entitySpec(TEST_REGISTRY.getEntitySpec(SCHEMA_FIELD_ENTITY_NAME)) + .aspectSpec( + TEST_REGISTRY + .getEntitySpec(SCHEMA_FIELD_ENTITY_NAME) + .getAspectSpec(STATUS_ASPECT_NAME)) + .recordTemplate(new Status().setRemoved(true)) + .auditStamp(schemaMetadataChangeItem.getAuditStamp()) + .systemMetadata(schemaMetadataChangeItem.getSystemMetadata()) + .build(mockAspectRetriever))); + } + } + } + } + + private static SchemaMetadata getTestSchemaMetadata() { + String rawSchemaMetadataString = + "{\"foreignKeys\":[{\"name\":\"user id\",\"sourceFields\":[\"urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:hive,fct_users_created,PROD),user_id)\"],\"foreignFields\":[\"urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:hive,fct_users_deleted,PROD),user_id)\"],\"foreignDataset\":\"urn:li:dataset:(urn:li:dataPlatform:hive,fct_users_deleted,PROD)\"}],\"platformSchema\":{\"com.linkedin.schema.KafkaSchema\":{\"documentSchemaType\":\"AVRO\",\"documentSchema\":\"{\\\"type\\\":\\\"record\\\",\\\"name\\\":\\\"SampleHiveSchema\\\",\\\"namespace\\\":\\\"com.linkedin.dataset\\\",\\\"doc\\\":\\\"Sample Hive dataset\\\",\\\"fields\\\":[{\\\"name\\\":\\\"field_foo\\\",\\\"type\\\":[\\\"string\\\"]},{\\\"name\\\":\\\"field_bar\\\",\\\"type\\\":[\\\"boolean\\\"]}]}\"}},\"created\":{\"actor\":\"urn:li:corpuser:jdoe\",\"time\":1674291843000},\"lastModified\":{\"actor\":\"urn:li:corpuser:jdoe\",\"time\":1674291843000},\"fields\":[{\"nullable\":false,\"fieldPath\":\"user_id\",\"description\":\"Id of the user created\",\"isPartOfKey\":false,\"type\":{\"type\":{\"com.linkedin.schema.BooleanType\":{}}},\"recursive\":false,\"nativeDataType\":\"varchar(100)\"},{\"nullable\":false,\"fieldPath\":\"user_name\",\"description\":\"Name of the user who signed up\",\"isPartOfKey\":false,\"type\":{\"type\":{\"com.linkedin.schema.BooleanType\":{}}},\"recursive\":false,\"nativeDataType\":\"boolean\"}],\"schemaName\":\"SampleHiveSchema\",\"version\":0,\"hash\":\"\",\"platform\":\"urn:li:dataPlatform:hive\"}"; + ByteString rawSchemaMetadataBytes = + ByteString.copyString(rawSchemaMetadataString, StandardCharsets.UTF_8); + return GenericRecordUtils.deserializeAspect( + rawSchemaMetadataBytes, "application/json", SchemaMetadata.class); + } + + private static SchemaMetadata getTestSchemaMetadataWithRemovedField() { + String rawSchemaMetadataString = + "{\"foreignKeys\":[{\"name\":\"user id\",\"sourceFields\":[\"urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:hive,fct_users_created,PROD),user_id)\"],\"foreignFields\":[\"urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:hive,fct_users_deleted,PROD),user_id)\"],\"foreignDataset\":\"urn:li:dataset:(urn:li:dataPlatform:hive,fct_users_deleted,PROD)\"}],\"platformSchema\":{\"com.linkedin.schema.KafkaSchema\":{\"documentSchemaType\":\"AVRO\",\"documentSchema\":\"{\\\"type\\\":\\\"record\\\",\\\"name\\\":\\\"SampleHiveSchema\\\",\\\"namespace\\\":\\\"com.linkedin.dataset\\\",\\\"doc\\\":\\\"Sample Hive dataset\\\",\\\"fields\\\":[{\\\"name\\\":\\\"field_foo\\\",\\\"type\\\":[\\\"string\\\"]},{\\\"name\\\":\\\"field_bar\\\",\\\"type\\\":[\\\"boolean\\\"]}]}\"}},\"created\":{\"actor\":\"urn:li:corpuser:jdoe\",\"time\":1674291843000},\"lastModified\":{\"actor\":\"urn:li:corpuser:jdoe\",\"time\":1674291843000},\"fields\":[{\"nullable\":false,\"fieldPath\":\"user_id\",\"description\":\"Id of the user created\",\"isPartOfKey\":false,\"type\":{\"type\":{\"com.linkedin.schema.BooleanType\":{}}},\"recursive\":false,\"nativeDataType\":\"varchar(100)\"}],\"schemaName\":\"SampleHiveSchema\",\"version\":0,\"hash\":\"\",\"platform\":\"urn:li:dataPlatform:hive\"}"; + ByteString rawSchemaMetadataBytes = + ByteString.copyString(rawSchemaMetadataString, StandardCharsets.UTF_8); + return GenericRecordUtils.deserializeAspect( + rawSchemaMetadataBytes, "application/json", SchemaMetadata.class); + } + + private static EntityChangeEventGeneratorRegistry buildEntityChangeEventGeneratorRegistry() { + final EntityChangeEventGeneratorRegistry registry = new EntityChangeEventGeneratorRegistry(); + registry.register(SCHEMA_METADATA_ASPECT_NAME, new SchemaMetadataChangeEventGenerator()); + + // Entity Lifecycle change event generators + registry.register(DATASET_KEY_ASPECT_NAME, new EntityKeyChangeEventGenerator<>()); + registry.register(STATUS_ASPECT_NAME, new StatusChangeEventGenerator()); + + return registry; + } + + @Test + public void schemaMetadataRestateAliasesTest() throws CloneNotSupportedException { + SchemaFieldSideEffect test = new SchemaFieldSideEffect(); + test.setEntityChangeEventGeneratorRegistry(mock(EntityChangeEventGeneratorRegistry.class)); + test.setConfig(TEST_PLUGIN_CONFIG); + SchemaMetadata schemaMetadata = getTestSchemaMetadata(); + + List testOutput; + for (ChangeType changeType : List.of(ChangeType.RESTATE)) { + // Run test with RESTATE MCP + SystemMetadata systemMetadata = SystemMetadataUtils.createDefaultSystemMetadata(); + MetadataChangeProposal restateMCP = + new MetadataChangeProposal() + .setEntityUrn(TEST_URN) + .setChangeType(changeType) + .setAspectName(SCHEMA_METADATA_ASPECT_NAME) + .setEntityType(TEST_URN.getEntityType()) + .setSystemMetadata(systemMetadata) + .setAspect(GenericRecordUtils.serializeAspect(schemaMetadata)); + + MCPItem schemaMetadataChangeItem = + TestMCP.builder() + .urn(TEST_URN) + .metadataChangeProposal(restateMCP) + .entitySpec(TEST_REGISTRY.getEntitySpec(DATASET_ENTITY_NAME)) + .changeType(changeType) + .aspectSpec( + TEST_REGISTRY + .getEntitySpec(DATASET_ENTITY_NAME) + .getAspectSpec(SCHEMA_METADATA_ASPECT_NAME)) + .auditStamp(AuditStampUtils.createDefaultAuditStamp()) + .systemMetadata(systemMetadata) + .build(); + + testOutput = + test.postMCPSideEffect( + List.of( + MCLItemImpl.builder() + .build( + schemaMetadataChangeItem, + schemaMetadata, + schemaMetadataChangeItem.getSystemMetadata(), + retrieverContext.getAspectRetriever())), + retrieverContext) + .toList(); + + // Verify test + switch (changeType) { + default -> { + assertEquals( + testOutput.size(), 2, "Unexpected output items for changeType:" + changeType); + + assertEquals( + testOutput, + List.of( + ChangeItemImpl.builder() + .urn( + UrnUtils.getUrn( + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:hive,fct_users_created,PROD),user_id)")) + .aspectName(SCHEMA_FIELD_ALIASES_ASPECT) + .changeType(ChangeType.UPSERT) + .entitySpec(TEST_REGISTRY.getEntitySpec(SCHEMA_FIELD_ENTITY_NAME)) + .aspectSpec( + TEST_REGISTRY + .getEntitySpec(SCHEMA_FIELD_ENTITY_NAME) + .getAspectSpec(SCHEMA_FIELD_ALIASES_ASPECT)) + .recordTemplate( + new SchemaFieldAliases() + .setAliases( + new UrnArray( + List.of( + UrnUtils.getUrn( + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:hive,fct_users_created,PROD),user_id)"))))) + .auditStamp(schemaMetadataChangeItem.getAuditStamp()) + .systemMetadata(systemMetadata) + .build(mockAspectRetriever), + ChangeItemImpl.builder() + .urn( + UrnUtils.getUrn( + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:hive,fct_users_created,PROD),user_name)")) + .aspectName(SCHEMA_FIELD_ALIASES_ASPECT) + .changeType(ChangeType.UPSERT) + .entitySpec(TEST_REGISTRY.getEntitySpec(SCHEMA_FIELD_ENTITY_NAME)) + .aspectSpec( + TEST_REGISTRY + .getEntitySpec(SCHEMA_FIELD_ENTITY_NAME) + .getAspectSpec(SCHEMA_FIELD_ALIASES_ASPECT)) + .recordTemplate( + new SchemaFieldAliases() + .setAliases( + new UrnArray( + List.of( + UrnUtils.getUrn( + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:hive,fct_users_created,PROD),user_name)"))))) + .auditStamp(schemaMetadataChangeItem.getAuditStamp()) + .systemMetadata(systemMetadata) + .build(mockAspectRetriever))); + } + } + } + } +} diff --git a/metadata-io/src/test/java/com/linkedin/metadata/search/LineageServiceTestBase.java b/metadata-io/src/test/java/com/linkedin/metadata/search/LineageServiceTestBase.java index 99e4923885a41..eee0e0d0f2ec6 100644 --- a/metadata-io/src/test/java/com/linkedin/metadata/search/LineageServiceTestBase.java +++ b/metadata-io/src/test/java/com/linkedin/metadata/search/LineageServiceTestBase.java @@ -27,7 +27,11 @@ import com.linkedin.data.template.LongMap; import com.linkedin.data.template.SetMode; import com.linkedin.metadata.TestEntityUtil; +import com.linkedin.metadata.config.DataHubAppConfiguration; +import com.linkedin.metadata.config.MetadataChangeProposalConfig; +import com.linkedin.metadata.config.cache.CacheConfiguration; import com.linkedin.metadata.config.cache.EntityDocCountCacheConfiguration; +import com.linkedin.metadata.config.cache.SearchCacheConfiguration; import com.linkedin.metadata.config.cache.SearchLineageCacheConfiguration; import com.linkedin.metadata.config.search.SearchConfiguration; import com.linkedin.metadata.config.search.custom.CustomSearchConfiguration; @@ -122,7 +126,11 @@ public void setup() throws RemoteInvocationException, URISyntaxException { operationContext = TestOperationContexts.systemContextNoSearchAuthorization( new SnapshotEntityRegistry(new Snapshot()), - new IndexConventionImpl("lineage_search_service_test", "MD5")) + new IndexConventionImpl( + IndexConventionImpl.IndexConventionConfig.builder() + .prefix("lineage_search_service_test") + .hashIdAlgo("MD5") + .build())) .asSession(RequestContext.TEST, Authorizer.EMPTY, TestOperationContexts.TEST_USER_AUTH); settingsBuilder = new SettingsBuilder(null); elasticSearchService = buildEntitySearchService(); @@ -139,10 +147,25 @@ private void resetService(boolean withCache, boolean withLightingCache) { new EntityDocCountCacheConfiguration(); entityDocCountCacheConfiguration.setTtlSeconds(600L); - SearchLineageCacheConfiguration searchLineageCacheConfiguration = - new SearchLineageCacheConfiguration(); - searchLineageCacheConfiguration.setTtlSeconds(600L); - searchLineageCacheConfiguration.setLightningThreshold(withLightingCache ? -1 : 300); + DataHubAppConfiguration appConfig = new DataHubAppConfiguration(); + appConfig.setCache(new CacheConfiguration()); + appConfig.getCache().setSearch(new SearchCacheConfiguration()); + appConfig.getCache().getSearch().setLineage(new SearchLineageCacheConfiguration()); + appConfig.getCache().getSearch().getLineage().setTtlSeconds(600L); + appConfig + .getCache() + .getSearch() + .getLineage() + .setLightningThreshold(withLightingCache ? -1 : 300); + appConfig.setMetadataChangeProposal(new MetadataChangeProposalConfig()); + appConfig + .getMetadataChangeProposal() + .setSideEffects(new MetadataChangeProposalConfig.SideEffectsConfig()); + appConfig + .getMetadataChangeProposal() + .getSideEffects() + .setSchemaField(new MetadataChangeProposalConfig.SideEffectConfig()); + appConfig.getMetadataChangeProposal().getSideEffects().getSchemaField().setEnabled(false); lineageSearchService = spy( @@ -157,7 +180,7 @@ private void resetService(boolean withCache, boolean withLightingCache) { graphService, cacheManager.getCache("test"), withCache, - searchLineageCacheConfiguration)); + appConfig)); } @BeforeMethod diff --git a/metadata-io/src/test/java/com/linkedin/metadata/search/SearchServiceTestBase.java b/metadata-io/src/test/java/com/linkedin/metadata/search/SearchServiceTestBase.java index 5e30e01a8ea69..1cd0c9550a0fc 100644 --- a/metadata-io/src/test/java/com/linkedin/metadata/search/SearchServiceTestBase.java +++ b/metadata-io/src/test/java/com/linkedin/metadata/search/SearchServiceTestBase.java @@ -79,7 +79,11 @@ public void setup() throws RemoteInvocationException, URISyntaxException { operationContext = TestOperationContexts.systemContextNoSearchAuthorization( new SnapshotEntityRegistry(new Snapshot()), - new IndexConventionImpl("search_service_test", "MD5")) + new IndexConventionImpl( + IndexConventionImpl.IndexConventionConfig.builder() + .prefix("search_service_test") + .hashIdAlgo("MD5") + .build())) .asSession(RequestContext.TEST, Authorizer.EMPTY, TestOperationContexts.TEST_USER_AUTH); settingsBuilder = new SettingsBuilder(null); diff --git a/metadata-io/src/test/java/com/linkedin/metadata/search/TestEntityTestBase.java b/metadata-io/src/test/java/com/linkedin/metadata/search/TestEntityTestBase.java index 282a3d8e3ea6a..b04c7d2bc60b9 100644 --- a/metadata-io/src/test/java/com/linkedin/metadata/search/TestEntityTestBase.java +++ b/metadata-io/src/test/java/com/linkedin/metadata/search/TestEntityTestBase.java @@ -63,7 +63,11 @@ public void setup() { opContext = TestOperationContexts.systemContextNoSearchAuthorization( new SnapshotEntityRegistry(new Snapshot()), - new IndexConventionImpl("es_service_test", "MD5")); + new IndexConventionImpl( + IndexConventionImpl.IndexConventionConfig.builder() + .prefix("es_service_test") + .hashIdAlgo("MD5") + .build())); settingsBuilder = new SettingsBuilder(null); elasticSearchService = buildService(); elasticSearchService.reindexAll(Collections.emptySet()); diff --git a/metadata-io/src/test/java/com/linkedin/metadata/search/query/BrowseDAOTest.java b/metadata-io/src/test/java/com/linkedin/metadata/search/query/BrowseDAOTest.java index 8044515e3dc6a..b71e4ddc54a78 100644 --- a/metadata-io/src/test/java/com/linkedin/metadata/search/query/BrowseDAOTest.java +++ b/metadata-io/src/test/java/com/linkedin/metadata/search/query/BrowseDAOTest.java @@ -45,7 +45,11 @@ public void setup() throws RemoteInvocationException, URISyntaxException { mockClient = mock(RestHighLevelClient.class); opContext = TestOperationContexts.systemContextNoSearchAuthorization( - new IndexConventionImpl("es_browse_dao_test", "MD5")); + new IndexConventionImpl( + IndexConventionImpl.IndexConventionConfig.builder() + .prefix("es_browse_dao_test") + .hashIdAlgo("MD5") + .build())); browseDAO = new ESBrowseDAO(mockClient, searchConfiguration, customSearchConfiguration); } diff --git a/metadata-io/src/test/java/com/linkedin/metadata/systemmetadata/SystemMetadataServiceTestBase.java b/metadata-io/src/test/java/com/linkedin/metadata/systemmetadata/SystemMetadataServiceTestBase.java index 1b9d8c57b4cad..7cf3fab6e5bb8 100644 --- a/metadata-io/src/test/java/com/linkedin/metadata/systemmetadata/SystemMetadataServiceTestBase.java +++ b/metadata-io/src/test/java/com/linkedin/metadata/systemmetadata/SystemMetadataServiceTestBase.java @@ -32,7 +32,11 @@ public abstract class SystemMetadataServiceTestBase extends AbstractTestNGSpring protected abstract ESIndexBuilder getIndexBuilder(); private final IndexConvention _indexConvention = - new IndexConventionImpl("es_system_metadata_service_test", "MD5"); + new IndexConventionImpl( + IndexConventionImpl.IndexConventionConfig.builder() + .prefix("es_system_metadata_service_test") + .hashIdAlgo("MD5") + .build()); private ElasticSearchSystemMetadataService _client; diff --git a/metadata-io/src/test/java/com/linkedin/metadata/timeseries/search/TimeseriesAspectServiceTestBase.java b/metadata-io/src/test/java/com/linkedin/metadata/timeseries/search/TimeseriesAspectServiceTestBase.java index 414183c8882f9..6c650e725fd5c 100644 --- a/metadata-io/src/test/java/com/linkedin/metadata/timeseries/search/TimeseriesAspectServiceTestBase.java +++ b/metadata-io/src/test/java/com/linkedin/metadata/timeseries/search/TimeseriesAspectServiceTestBase.java @@ -126,7 +126,12 @@ public void setup() throws RemoteInvocationException, URISyntaxException { opContext = TestOperationContexts.systemContextNoSearchAuthorization( - entityRegistry, new IndexConventionImpl("es_timeseries_aspect_service_test", "MD5")); + entityRegistry, + new IndexConventionImpl( + IndexConventionImpl.IndexConventionConfig.builder() + .prefix("es_timeseries_aspect_service_test") + .hashIdAlgo("MD5") + .build())); elasticSearchTimeseriesAspectService = buildService(); elasticSearchTimeseriesAspectService.reindexAll(Collections.emptySet()); diff --git a/metadata-io/src/test/java/io/datahubproject/test/fixtures/search/SampleDataFixtureConfiguration.java b/metadata-io/src/test/java/io/datahubproject/test/fixtures/search/SampleDataFixtureConfiguration.java index 6a95d16c25437..20f6084f95329 100644 --- a/metadata-io/src/test/java/io/datahubproject/test/fixtures/search/SampleDataFixtureConfiguration.java +++ b/metadata-io/src/test/java/io/datahubproject/test/fixtures/search/SampleDataFixtureConfiguration.java @@ -86,12 +86,20 @@ protected String longTailIndexPrefix() { @Bean(name = "sampleDataIndexConvention") protected IndexConvention indexConvention(@Qualifier("sampleDataPrefix") String prefix) { - return new IndexConventionImpl(prefix, "MD5"); + return new IndexConventionImpl( + IndexConventionImpl.IndexConventionConfig.builder() + .prefix(prefix) + .hashIdAlgo("MD5") + .build()); } @Bean(name = "longTailIndexConvention") protected IndexConvention longTailIndexConvention(@Qualifier("longTailPrefix") String prefix) { - return new IndexConventionImpl(prefix, "MD5"); + return new IndexConventionImpl( + IndexConventionImpl.IndexConventionConfig.builder() + .prefix(prefix) + .hashIdAlgo("MD5") + .build()); } @Bean(name = "sampleDataFixtureName") diff --git a/metadata-io/src/test/java/io/datahubproject/test/fixtures/search/SearchLineageFixtureConfiguration.java b/metadata-io/src/test/java/io/datahubproject/test/fixtures/search/SearchLineageFixtureConfiguration.java index 33e04af83c0a3..71ccaa1d32501 100644 --- a/metadata-io/src/test/java/io/datahubproject/test/fixtures/search/SearchLineageFixtureConfiguration.java +++ b/metadata-io/src/test/java/io/datahubproject/test/fixtures/search/SearchLineageFixtureConfiguration.java @@ -5,8 +5,12 @@ import com.linkedin.entity.client.EntityClient; import com.linkedin.metadata.client.JavaEntityClient; +import com.linkedin.metadata.config.DataHubAppConfiguration; +import com.linkedin.metadata.config.MetadataChangeProposalConfig; import com.linkedin.metadata.config.PreProcessHooks; +import com.linkedin.metadata.config.cache.CacheConfiguration; import com.linkedin.metadata.config.cache.EntityDocCountCacheConfiguration; +import com.linkedin.metadata.config.cache.SearchCacheConfiguration; import com.linkedin.metadata.config.cache.SearchLineageCacheConfiguration; import com.linkedin.metadata.config.search.ElasticSearchConfiguration; import com.linkedin.metadata.config.search.SearchConfiguration; @@ -71,7 +75,11 @@ protected String indexPrefix() { @Bean(name = "searchLineageIndexConvention") protected IndexConvention indexConvention(@Qualifier("searchLineagePrefix") String prefix) { - return new IndexConventionImpl(prefix, "MD5"); + return new IndexConventionImpl( + IndexConventionImpl.IndexConventionConfig.builder() + .prefix(prefix) + .hashIdAlgo("MD5") + .build()); } @Bean(name = "searchLineageFixtureName") @@ -79,11 +87,21 @@ protected String fixtureName() { return "search_lineage"; } - @Bean(name = "lineageCacheConfiguration") - protected SearchLineageCacheConfiguration searchLineageCacheConfiguration() { - SearchLineageCacheConfiguration conf = new SearchLineageCacheConfiguration(); - conf.setLightningThreshold(300); - conf.setTtlSeconds(30); + @Bean(name = "lineageAppConfig") + protected DataHubAppConfiguration searchLineageAppConfiguration() { + DataHubAppConfiguration conf = new DataHubAppConfiguration(); + conf.setCache(new CacheConfiguration()); + conf.getCache().setSearch(new SearchCacheConfiguration()); + conf.getCache().getSearch().setLineage(new SearchLineageCacheConfiguration()); + conf.getCache().getSearch().getLineage().setLightningThreshold(300); + conf.getCache().getSearch().getLineage().setTtlSeconds(30); + conf.setMetadataChangeProposal(new MetadataChangeProposalConfig()); + conf.getMetadataChangeProposal() + .setSideEffects(new MetadataChangeProposalConfig.SideEffectsConfig()); + conf.getMetadataChangeProposal() + .getSideEffects() + .setSchemaField(new MetadataChangeProposalConfig.SideEffectConfig()); + conf.getMetadataChangeProposal().getSideEffects().getSchemaField().setEnabled(false); return conf; } @@ -186,7 +204,7 @@ protected LineageSearchService lineageSearchService( @Qualifier("searchLineageGraphService") ElasticSearchGraphService graphService, @Qualifier("searchLineagePrefix") String prefix, @Qualifier("searchLineageFixtureName") String fixtureName, - @Qualifier("lineageCacheConfiguration") SearchLineageCacheConfiguration cacheConfiguration) + @Qualifier("lineageAppConfig") DataHubAppConfiguration appConfig) throws IOException { // Load fixture data (after graphService mappings applied) @@ -198,7 +216,7 @@ protected LineageSearchService lineageSearchService( .build() .read(); - return new LineageSearchService(searchService, graphService, null, false, cacheConfiguration); + return new LineageSearchService(searchService, graphService, null, false, appConfig); } @Bean(name = "searchLineageSearchService") diff --git a/metadata-io/src/test/java/io/datahubproject/test/search/SearchTestUtils.java b/metadata-io/src/test/java/io/datahubproject/test/search/SearchTestUtils.java index 24df2afb3b781..78e274063b6c7 100644 --- a/metadata-io/src/test/java/io/datahubproject/test/search/SearchTestUtils.java +++ b/metadata-io/src/test/java/io/datahubproject/test/search/SearchTestUtils.java @@ -15,6 +15,7 @@ import com.linkedin.datahub.graphql.types.SearchableEntityType; import com.linkedin.datahub.graphql.types.entitytype.EntityTypeMapper; import com.linkedin.metadata.aspect.AspectRetriever; +import com.linkedin.metadata.config.DataHubAppConfiguration; import com.linkedin.metadata.config.search.GraphQueryConfiguration; import com.linkedin.metadata.graph.LineageDirection; import com.linkedin.metadata.query.filter.Filter; @@ -223,6 +224,11 @@ public Authorizer getAuthorizer() { public OperationContext getOperationContext() { return opContext; } + + @Override + public DataHubAppConfiguration getDataHubAppConfig() { + return new DataHubAppConfiguration(); + } }); } diff --git a/metadata-jobs/mae-consumer/src/main/java/com/linkedin/metadata/kafka/hook/event/EntityChangeEventGeneratorHook.java b/metadata-jobs/mae-consumer/src/main/java/com/linkedin/metadata/kafka/hook/event/EntityChangeEventGeneratorHook.java index 59d068a46d8c6..de570cc91b2fe 100644 --- a/metadata-jobs/mae-consumer/src/main/java/com/linkedin/metadata/kafka/hook/event/EntityChangeEventGeneratorHook.java +++ b/metadata-jobs/mae-consumer/src/main/java/com/linkedin/metadata/kafka/hook/event/EntityChangeEventGeneratorHook.java @@ -1,5 +1,7 @@ package com.linkedin.metadata.kafka.hook.event; +import static com.linkedin.metadata.Constants.SCHEMA_FIELD_ENTITY_NAME; + import com.google.common.annotations.VisibleForTesting; import com.google.common.collect.ImmutableSet; import com.linkedin.common.AuditStamp; @@ -14,6 +16,7 @@ import com.linkedin.metadata.models.AspectSpec; import com.linkedin.metadata.timeline.data.ChangeEvent; import com.linkedin.metadata.timeline.eventgenerator.Aspect; +import com.linkedin.metadata.timeline.eventgenerator.ChangeEventGeneratorUtils; import com.linkedin.metadata.timeline.eventgenerator.EntityChangeEventGenerator; import com.linkedin.metadata.timeline.eventgenerator.EntityChangeEventGeneratorRegistry; import com.linkedin.metadata.utils.GenericRecordUtils; @@ -80,9 +83,11 @@ public class EntityChangeEventGeneratorHook implements MetadataChangeLogHook { private static final Set SUPPORTED_OPERATIONS = ImmutableSet.of("CREATE", "UPSERT", "DELETE"); + private static final Set ENTITY_EXCLUSIONS = ImmutableSet.of(SCHEMA_FIELD_ENTITY_NAME); + private final EntityChangeEventGeneratorRegistry entityChangeEventGeneratorRegistry; private final OperationContext systemOperationContext; - private final SystemEntityClient entityClient; + private final SystemEntityClient systemEntityClient; private final Boolean isEnabled; @Getter private final String consumerGroupSuffix; @@ -97,7 +102,7 @@ public EntityChangeEventGeneratorHook( this.systemOperationContext = systemOperationContext; this.entityChangeEventGeneratorRegistry = Objects.requireNonNull(entityChangeEventGeneratorRegistry); - this.entityClient = Objects.requireNonNull(entityClient); + this.systemEntityClient = Objects.requireNonNull(entityClient); this.isEnabled = isEnabled; this.consumerGroupSuffix = consumerGroupSuffix; } @@ -148,7 +153,8 @@ public void invoke(@Nonnull final MetadataChangeLog logEvent) throws Exception { : null; final List changeEvents = - generateChangeEvents( + ChangeEventGeneratorUtils.generateChangeEvents( + entityChangeEventGeneratorRegistry, logEvent.getEntityUrn(), logEvent.getEntityType(), logEvent.getAspectName(), @@ -195,12 +201,13 @@ private List generateChangeEvents( private boolean isEligibleForProcessing(final MetadataChangeLog log) { return SUPPORTED_OPERATIONS.contains(log.getChangeType().toString()) - && SUPPORTED_ASPECT_NAMES.contains(log.getAspectName()); + && SUPPORTED_ASPECT_NAMES.contains(log.getAspectName()) + && !ENTITY_EXCLUSIONS.contains(log.getEntityType()); } private void emitPlatformEvent( @Nonnull final PlatformEvent event, @Nonnull final String partitioningKey) throws Exception { - entityClient.producePlatformEvent( + systemEntityClient.producePlatformEvent( systemOperationContext, Constants.CHANGE_EVENT_PLATFORM_EVENT_NAME, partitioningKey, event); } diff --git a/metadata-jobs/mae-consumer/src/test/java/com/linkedin/metadata/kafka/hook/UpdateIndicesHookTest.java b/metadata-jobs/mae-consumer/src/test/java/com/linkedin/metadata/kafka/hook/UpdateIndicesHookTest.java index 4cd59992eb2f0..9f6734852bd25 100644 --- a/metadata-jobs/mae-consumer/src/test/java/com/linkedin/metadata/kafka/hook/UpdateIndicesHookTest.java +++ b/metadata-jobs/mae-consumer/src/test/java/com/linkedin/metadata/kafka/hook/UpdateIndicesHookTest.java @@ -4,6 +4,7 @@ import static com.linkedin.metadata.kafka.hook.MCLProcessingTestDataGenerator.*; import static com.linkedin.metadata.search.utils.QueryUtils.newRelationshipFilter; import static org.mockito.ArgumentMatchers.any; +import static org.mockito.Mockito.when; import com.linkedin.common.AuditStamp; import com.linkedin.common.InputField; @@ -47,6 +48,7 @@ import com.linkedin.metadata.systemmetadata.SystemMetadataService; import com.linkedin.metadata.timeseries.TimeseriesAspectService; import com.linkedin.metadata.utils.GenericRecordUtils; +import com.linkedin.metadata.utils.elasticsearch.IndexConventionImpl; import com.linkedin.mxe.MetadataChangeLog; import com.linkedin.mxe.SystemMetadata; import com.linkedin.schema.NumberType; @@ -113,11 +115,12 @@ public void setupTest() { mockConfigurationProvider = Mockito.mock(ConfigurationProvider.class); mockEntityIndexBuilders = Mockito.mock(EntityIndexBuilders.class); + when(mockEntityIndexBuilders.getIndexConvention()).thenReturn(IndexConventionImpl.noPrefix("")); + ElasticSearchConfiguration elasticSearchConfiguration = new ElasticSearchConfiguration(); SystemUpdateConfiguration systemUpdateConfiguration = new SystemUpdateConfiguration(); systemUpdateConfiguration.setWaitForSystemUpdate(false); - Mockito.when(mockConfigurationProvider.getElasticSearch()) - .thenReturn(elasticSearchConfiguration); + when(mockConfigurationProvider.getElasticSearch()).thenReturn(elasticSearchConfiguration); updateIndicesService = new UpdateIndicesService( mockGraphService, @@ -485,32 +488,27 @@ private EntityRegistry createMockEntityRegistry() { AspectSpec aspectSpec = createMockAspectSpec(InputFields.class, InputFields.dataSchema()); AspectSpec upstreamLineageAspectSpec = createMockAspectSpec(UpstreamLineage.class, UpstreamLineage.dataSchema()); - Mockito.when(mockEntityRegistry.getEntitySpec(Constants.CHART_ENTITY_NAME)) - .thenReturn(entitySpec); - Mockito.when(mockEntityRegistry.getEntitySpec(Constants.DATASET_ENTITY_NAME)) - .thenReturn(entitySpec); - Mockito.when(mockEntityRegistry.getEntitySpec(SCHEMA_FIELD_ENTITY_NAME)).thenReturn(entitySpec); - Mockito.when(mockEntityRegistry.getEntitySpec(DATA_PLATFORM_ENTITY_NAME)) - .thenReturn(entitySpec); - Mockito.when(entitySpec.getAspectSpec(Constants.INPUT_FIELDS_ASPECT_NAME)) - .thenReturn(aspectSpec); - Mockito.when(entitySpec.getAspectSpec(Constants.UPSTREAM_LINEAGE_ASPECT_NAME)) + when(mockEntityRegistry.getEntitySpec(Constants.CHART_ENTITY_NAME)).thenReturn(entitySpec); + when(mockEntityRegistry.getEntitySpec(Constants.DATASET_ENTITY_NAME)).thenReturn(entitySpec); + when(mockEntityRegistry.getEntitySpec(SCHEMA_FIELD_ENTITY_NAME)).thenReturn(entitySpec); + when(mockEntityRegistry.getEntitySpec(DATA_PLATFORM_ENTITY_NAME)).thenReturn(entitySpec); + when(entitySpec.getAspectSpec(Constants.INPUT_FIELDS_ASPECT_NAME)).thenReturn(aspectSpec); + when(entitySpec.getAspectSpec(Constants.UPSTREAM_LINEAGE_ASPECT_NAME)) .thenReturn(upstreamLineageAspectSpec); - Mockito.when(aspectSpec.isTimeseries()).thenReturn(false); - Mockito.when(aspectSpec.getName()).thenReturn(Constants.INPUT_FIELDS_ASPECT_NAME); - Mockito.when(upstreamLineageAspectSpec.isTimeseries()).thenReturn(false); - Mockito.when(upstreamLineageAspectSpec.getName()) - .thenReturn(Constants.UPSTREAM_LINEAGE_ASPECT_NAME); + when(aspectSpec.isTimeseries()).thenReturn(false); + when(aspectSpec.getName()).thenReturn(Constants.INPUT_FIELDS_ASPECT_NAME); + when(upstreamLineageAspectSpec.isTimeseries()).thenReturn(false); + when(upstreamLineageAspectSpec.getName()).thenReturn(Constants.UPSTREAM_LINEAGE_ASPECT_NAME); AspectSpec chartKeyAspectSpec = createMockAspectSpec(ChartKey.class, ChartKey.dataSchema()); - Mockito.when(entitySpec.getKeyAspectSpec()).thenReturn(chartKeyAspectSpec); + when(entitySpec.getKeyAspectSpec()).thenReturn(chartKeyAspectSpec); return mockEntityRegistry; } private AspectSpec createMockAspectSpec( Class clazz, RecordDataSchema schema) { AspectSpec mockSpec = Mockito.mock(AspectSpec.class); - Mockito.when(mockSpec.getDataTemplateClass()).thenReturn((Class) clazz); - Mockito.when(mockSpec.getPegasusSchema()).thenReturn(schema); + when(mockSpec.getDataTemplateClass()).thenReturn((Class) clazz); + when(mockSpec.getPegasusSchema()).thenReturn(schema); return mockSpec; } diff --git a/metadata-models/src/main/pegasus/com/linkedin/dataproduct/DataProductAssociation.pdl b/metadata-models/src/main/pegasus/com/linkedin/dataproduct/DataProductAssociation.pdl index 93bd9a4e0e561..bb43695427c63 100644 --- a/metadata-models/src/main/pegasus/com/linkedin/dataproduct/DataProductAssociation.pdl +++ b/metadata-models/src/main/pegasus/com/linkedin/dataproduct/DataProductAssociation.pdl @@ -7,4 +7,9 @@ import com.linkedin.common.Edge **/ record DataProductAssociation includes Edge { + /** + * If set to true, this asset is an output port of the Data Product. + */ + outputPort: boolean = false + } \ No newline at end of file diff --git a/metadata-models/src/main/pegasus/com/linkedin/metadata/search/SearchEntity.pdl b/metadata-models/src/main/pegasus/com/linkedin/metadata/search/SearchEntity.pdl index df457c1ba26f9..046c076dd151d 100644 --- a/metadata-models/src/main/pegasus/com/linkedin/metadata/search/SearchEntity.pdl +++ b/metadata-models/src/main/pegasus/com/linkedin/metadata/search/SearchEntity.pdl @@ -35,4 +35,9 @@ record SearchEntity { * If the key aspect is present, assume ALL aspects should be restricted including the entity's Urn. */ restrictedAspects: optional array[string] + + /** + * Extra fields from the search document based on what is requested in the search request + */ + extraFields: optional map[string, string] } \ No newline at end of file diff --git a/metadata-models/src/main/pegasus/com/linkedin/post/PostInfo.pdl b/metadata-models/src/main/pegasus/com/linkedin/post/PostInfo.pdl index 7eb080653e9c3..70ff38f3b7633 100644 --- a/metadata-models/src/main/pegasus/com/linkedin/post/PostInfo.pdl +++ b/metadata-models/src/main/pegasus/com/linkedin/post/PostInfo.pdl @@ -1,5 +1,8 @@ namespace com.linkedin.post +import com.linkedin.common.Urn +import com.linkedin.common.AuditStamp + /** * Information about a DataHub Post. */ @@ -32,4 +35,24 @@ record PostInfo { "fieldType": "COUNT" } lastModified: long + + /** + * The audit stamp at which the request was last updated + */ + @Searchable = { + "/time": { + "fieldName": "created", + "fieldType": "COUNT" + } + } + auditStamp: optional AuditStamp + + /** + * Optional URN that the post is associated with. + */ + @Relationship = { + "name": "PostTarget", + "entityTypes": [ "dataset", "schemaField", "chart", "dashboard", "dataFlow", "dataJob", "dataProduct" ] + } + target: optional Urn } \ No newline at end of file diff --git a/metadata-models/src/main/pegasus/com/linkedin/schemafield/schemaFieldAliases.pdl b/metadata-models/src/main/pegasus/com/linkedin/schemafield/schemaFieldAliases.pdl new file mode 100644 index 0000000000000..d735ef6305d54 --- /dev/null +++ b/metadata-models/src/main/pegasus/com/linkedin/schemafield/schemaFieldAliases.pdl @@ -0,0 +1,22 @@ +namespace com.linkedin.schemafield + +import com.linkedin.common.Urn + +@Aspect = { + "name": "schemaFieldAliases" +} + +record SchemaFieldAliases { + + /** + * Used to store aliases + */ + @Searchable = { + "/*": { + "fieldName": "schemaFieldAliases", + "fieldType": "URN", + "queryByDefault": false, + } + } + aliases: optional array[Urn] +} \ No newline at end of file diff --git a/metadata-models/src/main/pegasus/com/linkedin/schemafield/schemafieldInfo.pdl b/metadata-models/src/main/pegasus/com/linkedin/schemafield/schemafieldInfo.pdl index 086d9df34dead..b29ca92876598 100644 --- a/metadata-models/src/main/pegasus/com/linkedin/schemafield/schemafieldInfo.pdl +++ b/metadata-models/src/main/pegasus/com/linkedin/schemafield/schemafieldInfo.pdl @@ -1,5 +1,7 @@ namespace com.linkedin.schemafield +import com.linkedin.common.Urn + @Aspect = { "name": "schemafieldInfo" } @@ -8,6 +10,17 @@ record SchemaFieldInfo { @Searchable = { "fieldType": "KEYWORD", "fieldNameAliases": [ "_entityName" ] - } - name: optional string + } + name: optional string + + /** + * Used to store field path variations for the schemaField urn. + */ + @Searchable = { + "/*": { + "fieldType": "URN", + "queryByDefault": true, + } + } + schemaFieldAliases: optional array[Urn] } \ No newline at end of file diff --git a/metadata-models/src/main/pegasus/com/linkedin/upgrade/DataHubUpgradeResult.pdl b/metadata-models/src/main/pegasus/com/linkedin/upgrade/DataHubUpgradeResult.pdl index fc5becba97941..c9c08270c29b0 100644 --- a/metadata-models/src/main/pegasus/com/linkedin/upgrade/DataHubUpgradeResult.pdl +++ b/metadata-models/src/main/pegasus/com/linkedin/upgrade/DataHubUpgradeResult.pdl @@ -8,6 +8,11 @@ namespace com.linkedin.upgrade } record DataHubUpgradeResult { + /** + * Upgrade state UpgradeResult.Result + */ + state: optional DataHubUpgradeState = "SUCCEEDED" + /** * Timestamp when we started this DataHubUpgrade */ diff --git a/metadata-models/src/main/pegasus/com/linkedin/upgrade/DataHubUpgradeState.pdl b/metadata-models/src/main/pegasus/com/linkedin/upgrade/DataHubUpgradeState.pdl new file mode 100644 index 0000000000000..d620f29f3d882 --- /dev/null +++ b/metadata-models/src/main/pegasus/com/linkedin/upgrade/DataHubUpgradeState.pdl @@ -0,0 +1,23 @@ +namespace com.linkedin.upgrade + +enum DataHubUpgradeState { + /** + * Upgrade in progress. + */ + IN_PROGRESS + + /** + * Upgrade was successful. + */ + SUCCEEDED + + /** + * Upgrade with an error state, however the upgrade should be re-run. + */ + FAILED + + /** + * Upgrade with an error state and should not be re-run. + */ + ABORTED +} \ No newline at end of file diff --git a/metadata-models/src/main/resources/entity-registry.yml b/metadata-models/src/main/resources/entity-registry.yml index f8520990a0984..7beb08a6b1032 100644 --- a/metadata-models/src/main/resources/entity-registry.yml +++ b/metadata-models/src/main/resources/entity-registry.yml @@ -475,6 +475,8 @@ entities: - structuredProperties - forms - businessAttributes + - status + - schemaFieldAliases - documentation - testResults - name: globalSettings @@ -672,6 +674,12 @@ plugins: aspectName: propertyDefinition - entityName: structuredProperty aspectName: structuredPropertyKey + - className: 'com.linkedin.metadata.aspect.plugins.hooks.MCPSideEffect' + enabled: true + spring: + enabled: true + packageScan: + - com.linkedin.gms.factory.plugins mutationHooks: - className: 'com.linkedin.metadata.structuredproperties.hooks.StructuredPropertiesSoftDelete' packageScan: diff --git a/metadata-operation-context/src/test/java/io/datahubproject/metadata/context/SearchContextTest.java b/metadata-operation-context/src/test/java/io/datahubproject/metadata/context/SearchContextTest.java index 2e0585cc82a4f..ba955af9a113d 100644 --- a/metadata-operation-context/src/test/java/io/datahubproject/metadata/context/SearchContextTest.java +++ b/metadata-operation-context/src/test/java/io/datahubproject/metadata/context/SearchContextTest.java @@ -53,7 +53,12 @@ public void searchContextId() { assertNotEquals( testNoFlags.getCacheKeyComponent(), SearchContext.builder() - .indexConvention(new IndexConventionImpl("Some Prefix", "MD5")) + .indexConvention( + new IndexConventionImpl( + IndexConventionImpl.IndexConventionConfig.builder() + .prefix("Some Prefix") + .hashIdAlgo("MD5") + .build())) .searchFlags(null) .build() .getCacheKeyComponent(), diff --git a/metadata-service/auth-impl/src/main/java/com/datahub/authentication/post/PostService.java b/metadata-service/auth-impl/src/main/java/com/datahub/authentication/post/PostService.java index f5cb5edb608e0..63e5fcb2c4bbd 100644 --- a/metadata-service/auth-impl/src/main/java/com/datahub/authentication/post/PostService.java +++ b/metadata-service/auth-impl/src/main/java/com/datahub/authentication/post/PostService.java @@ -2,6 +2,7 @@ import static com.linkedin.metadata.Constants.*; import static com.linkedin.metadata.entity.AspectUtils.*; +import static com.linkedin.metadata.utils.SystemMetadataUtils.createDefaultSystemMetadata; import com.linkedin.common.Media; import com.linkedin.common.MediaType; @@ -63,10 +64,11 @@ public PostContent mapPostContent( } public boolean createPost( - @Nonnull OperationContext opCcontext, + @Nonnull OperationContext opContext, @Nonnull String postType, - @Nonnull PostContent postContent) - throws RemoteInvocationException { + @Nonnull PostContent postContent, + @Nullable String targetUrn) + throws RemoteInvocationException, URISyntaxException { final String uuid = UUID.randomUUID().toString(); final PostKey postKey = new PostKey().setId(uuid); final long currentTimeMillis = Instant.now().toEpochMilli(); @@ -75,11 +77,28 @@ public boolean createPost( .setType(PostType.valueOf(postType)) .setContent(postContent) .setCreated(currentTimeMillis) + .setAuditStamp( + new com.linkedin.common.AuditStamp() + .setTime(currentTimeMillis) + .setActor( + Urn.createFromString( + opContext.getSessionAuthentication().getActor().toUrnStr()))) .setLastModified(currentTimeMillis); + if (targetUrn != null) { + try { + postInfo.setTarget(Urn.createFromString(targetUrn)); + } catch (URISyntaxException e) { + throw new RuntimeException(e); + } + } + final MetadataChangeProposal proposal = buildMetadataChangeProposal(POST_ENTITY_NAME, postKey, POST_INFO_ASPECT_NAME, postInfo); - _entityClient.ingestProposal(opCcontext, proposal); + + proposal.setSystemMetadata(createDefaultSystemMetadata()); + + _entityClient.ingestProposal(opContext, proposal); return true; } diff --git a/metadata-service/auth-impl/src/test/java/com/datahub/authentication/post/PostServiceTest.java b/metadata-service/auth-impl/src/test/java/com/datahub/authentication/post/PostServiceTest.java index a4f7ad6cd6780..1028e28ed1624 100644 --- a/metadata-service/auth-impl/src/test/java/com/datahub/authentication/post/PostServiceTest.java +++ b/metadata-service/auth-impl/src/test/java/com/datahub/authentication/post/PostServiceTest.java @@ -18,11 +18,13 @@ import com.linkedin.r2.RemoteInvocationException; import io.datahubproject.metadata.context.OperationContext; import io.datahubproject.test.metadata.context.TestOperationContexts; +import java.net.URISyntaxException; import org.testng.annotations.BeforeMethod; import org.testng.annotations.Test; public class PostServiceTest { private static final Urn POST_URN = UrnUtils.getUrn("urn:li:post:123"); + private static final Urn ENTITY_URN = UrnUtils.getUrn("urn:li:domain:123"); private static final MediaType POST_MEDIA_TYPE = MediaType.IMAGE; private static final String POST_MEDIA_LOCATION = "https://datahubproject.io/img/datahub-logo-color-light-horizontal.svg"; @@ -69,8 +71,8 @@ public void testMapPostContent() { } @Test - public void testCreatePost() throws RemoteInvocationException { - _postService.createPost(opContext, POST_TYPE.toString(), POST_CONTENT); + public void testCreatePost() throws RemoteInvocationException, URISyntaxException { + _postService.createPost(opContext, POST_TYPE.toString(), POST_CONTENT, ENTITY_URN.toString()); verify(_entityClient, times(1)).ingestProposal(any(OperationContext.class), any()); } diff --git a/datahub-graphql-core/src/main/java/com/linkedin/datahub/graphql/featureflags/FeatureFlags.java b/metadata-service/configuration/src/main/java/com/linkedin/datahub/graphql/featureflags/FeatureFlags.java similarity index 100% rename from datahub-graphql-core/src/main/java/com/linkedin/datahub/graphql/featureflags/FeatureFlags.java rename to metadata-service/configuration/src/main/java/com/linkedin/datahub/graphql/featureflags/FeatureFlags.java diff --git a/metadata-service/configuration/src/main/java/com/linkedin/metadata/config/DataHubAppConfiguration.java b/metadata-service/configuration/src/main/java/com/linkedin/metadata/config/DataHubAppConfiguration.java new file mode 100644 index 0000000000000..28cc9304bf913 --- /dev/null +++ b/metadata-service/configuration/src/main/java/com/linkedin/metadata/config/DataHubAppConfiguration.java @@ -0,0 +1,57 @@ +package com.linkedin.metadata.config; + +import com.linkedin.datahub.graphql.featureflags.FeatureFlags; +import com.linkedin.metadata.config.cache.CacheConfiguration; +import com.linkedin.metadata.config.kafka.KafkaConfiguration; +import com.linkedin.metadata.config.search.ElasticSearchConfiguration; +import com.linkedin.metadata.config.telemetry.TelemetryConfiguration; +import lombok.Data; + +@Data +public class DataHubAppConfiguration { + + /** Ingestion related configs */ + private IngestionConfiguration ingestion; + + /** Telemetry related configs */ + private TelemetryConfiguration telemetry; + + /** Viz related configs */ + private VisualConfiguration visualConfig; + + /** Tests related configs */ + private TestsConfiguration metadataTests; + + /** DataHub top-level server configurations */ + private DataHubConfiguration datahub; + + /** Views feature related configs */ + private ViewsConfiguration views; + + /** Feature flags indicating what is turned on vs turned off */ + private FeatureFlags featureFlags; + + /** Kafka related configs. */ + private KafkaConfiguration kafka; + + /** ElasticSearch configurations */ + private ElasticSearchConfiguration elasticSearch; + + /** System Update configurations */ + private SystemUpdateConfiguration systemUpdate; + + /** The base URL where DataHub is hosted. */ + private String baseUrl; + + /** Configuration for caching */ + private CacheConfiguration cache; + + /** Ebean related configuration */ + private EbeanConfiguration ebean; + + /** GraphQL Configurations */ + private GraphQLConfiguration graphQL; + + /** MCP throttling configuration */ + private MetadataChangeProposalConfig metadataChangeProposal; +} diff --git a/metadata-service/configuration/src/main/java/com/linkedin/metadata/config/MetadataChangeProposalConfig.java b/metadata-service/configuration/src/main/java/com/linkedin/metadata/config/MetadataChangeProposalConfig.java index 3d3808bc5feb4..f988758beee36 100644 --- a/metadata-service/configuration/src/main/java/com/linkedin/metadata/config/MetadataChangeProposalConfig.java +++ b/metadata-service/configuration/src/main/java/com/linkedin/metadata/config/MetadataChangeProposalConfig.java @@ -8,6 +8,7 @@ public class MetadataChangeProposalConfig { ThrottlesConfig throttle; + SideEffectsConfig sideEffects; @Data @Accessors(chain = true) @@ -27,4 +28,16 @@ public static class ThrottleConfig { Integer multiplier; Integer maxIntervalMs; } + + @Data + @Accessors(chain = true) + public static class SideEffectsConfig { + SideEffectConfig schemaField; + } + + @Data + @Accessors(chain = true) + public static class SideEffectConfig { + boolean enabled; + } } diff --git a/metadata-service/configuration/src/main/java/com/linkedin/metadata/config/search/DocIdsConfiguration.java b/metadata-service/configuration/src/main/java/com/linkedin/metadata/config/search/DocIdsConfiguration.java new file mode 100644 index 0000000000000..56bcbc8d0c4fd --- /dev/null +++ b/metadata-service/configuration/src/main/java/com/linkedin/metadata/config/search/DocIdsConfiguration.java @@ -0,0 +1,8 @@ +package com.linkedin.metadata.config.search; + +import lombok.Data; + +@Data +public class DocIdsConfiguration { + private EntityDocIdConfiguration schemaField; +} diff --git a/metadata-service/configuration/src/main/java/com/linkedin/metadata/config/search/ElasticSearchConfiguration.java b/metadata-service/configuration/src/main/java/com/linkedin/metadata/config/search/ElasticSearchConfiguration.java index 7d68e18940401..9426c83f17b70 100644 --- a/metadata-service/configuration/src/main/java/com/linkedin/metadata/config/search/ElasticSearchConfiguration.java +++ b/metadata-service/configuration/src/main/java/com/linkedin/metadata/config/search/ElasticSearchConfiguration.java @@ -9,4 +9,5 @@ public class ElasticSearchConfiguration { public String implementation; private SearchConfiguration search; private String idHashAlgo; + private IndexConfiguration index; } diff --git a/metadata-service/configuration/src/main/java/com/linkedin/metadata/config/search/EntityDocIdConfiguration.java b/metadata-service/configuration/src/main/java/com/linkedin/metadata/config/search/EntityDocIdConfiguration.java new file mode 100644 index 0000000000000..5e580fe30ee32 --- /dev/null +++ b/metadata-service/configuration/src/main/java/com/linkedin/metadata/config/search/EntityDocIdConfiguration.java @@ -0,0 +1,8 @@ +package com.linkedin.metadata.config.search; + +import lombok.Data; + +@Data +public class EntityDocIdConfiguration { + private boolean hashIdEnabled; +} diff --git a/metadata-service/configuration/src/main/java/com/linkedin/metadata/config/search/IndexConfiguration.java b/metadata-service/configuration/src/main/java/com/linkedin/metadata/config/search/IndexConfiguration.java new file mode 100644 index 0000000000000..b54cc89726858 --- /dev/null +++ b/metadata-service/configuration/src/main/java/com/linkedin/metadata/config/search/IndexConfiguration.java @@ -0,0 +1,9 @@ +package com.linkedin.metadata.config.search; + +import lombok.Data; + +@Data +public class IndexConfiguration { + private String prefix; + private DocIdsConfiguration docIds; +} diff --git a/metadata-service/configuration/src/main/resources/application.yaml b/metadata-service/configuration/src/main/resources/application.yaml index 37399466c50b0..8a667ca056a35 100644 --- a/metadata-service/configuration/src/main/resources/application.yaml +++ b/metadata-service/configuration/src/main/resources/application.yaml @@ -209,6 +209,9 @@ elasticsearch: enableSettingsReindex: ${ELASTICSEARCH_INDEX_BUILDER_SETTINGS_REINDEX:false} settingsOverrides: ${ELASTICSEARCH_INDEX_BUILDER_SETTINGS_OVERRIDES:#{null}} entitySettingsOverrides: ${ELASTICSEARCH_INDEX_BUILDER_ENTITY_SETTINGS_OVERRIDES:#{null}} + docIds: + schemaField: + hashIdEnabled: ${ELASTICSEARCH_INDEX_DOC_IDS_SCHEMA_FIELD_HASH_ID_ENABLED:false} buildIndices: allowDocCountMismatch: ${ELASTICSEARCH_BUILD_INDICES_ALLOW_DOC_COUNT_MISMATCH:false} # when cloneIndices is also enabled cloneIndices: ${ELASTICSEARCH_BUILD_INDICES_CLONE_INDICES:true} @@ -357,6 +360,16 @@ systemUpdate: batchSize: ${BOOTSTRAP_SYSTEM_UPDATE_OWNERSHIP_TYPES_BATCH_SIZE:1000} reprocess: enabled: ${BOOTSTRAP_SYSTEM_UPDATE_OWNERSHIP_TYPES_REPROCESS:false} + schemaFieldsFromSchemaMetadata: + enabled: ${SYSTEM_UPDATE_SCHEMA_FIELDS_FROM_SCHEMA_METADATA_ENABLED:false} + batchSize: ${SYSTEM_UPDATE_SCHEMA_FIELDS_FROM_SCHEMA_METADATA_BATCH_SIZE:500} + delayMs: ${SYSTEM_UPDATE_SCHEMA_FIELDS_FROM_SCHEMA_METADATA_DELAY_MS:1000} + limit: ${SYSTEM_UPDATE_SCHEMA_FIELDS_FROM_SCHEMA_METADATA_LIMIT:0} + schemaFieldsDocIds: + enabled: ${SYSTEM_UPDATE_SCHEMA_FIELDS_DOC_IDS_ENABLED:false} + batchSize: ${SYSTEM_UPDATE_SCHEMA_FIELDS_DOC_IDS_BATCH_SIZE:500} + delayMs: ${SYSTEM_UPDATE_SCHEMA_FIELDS_DOC_IDS_DELAY_MS:5000} + limit: ${SYSTEM_UPDATE_SCHEMA_FIELDS_DOC_IDS_LIMIT:0} structuredProperties: enabled: ${ENABLE_STRUCTURED_PROPERTIES_HOOK:true} # applies structured properties mappings @@ -487,6 +500,9 @@ businessAttribute: metadataChangeProposal: validation: ignoreUnknown: ${MCP_VALIDATION_IGNORE_UNKNOWN:true} + sideEffects: + schemaField: + enabled: ${MCP_SIDE_EFFECTS_SCHEMA_FIELD_ENABLED:false} throttle: updateIntervalMs: ${MCP_THROTTLE_UPDATE_INTERVAL_MS:60000} diff --git a/metadata-service/factories/src/main/java/com/linkedin/gms/factory/common/IndexConventionFactory.java b/metadata-service/factories/src/main/java/com/linkedin/gms/factory/common/IndexConventionFactory.java index 2288c8d4ecd50..859c9cfcd58ba 100644 --- a/metadata-service/factories/src/main/java/com/linkedin/gms/factory/common/IndexConventionFactory.java +++ b/metadata-service/factories/src/main/java/com/linkedin/gms/factory/common/IndexConventionFactory.java @@ -1,8 +1,9 @@ package com.linkedin.gms.factory.common; +import com.linkedin.gms.factory.config.ConfigurationProvider; +import com.linkedin.metadata.config.search.ElasticSearchConfiguration; import com.linkedin.metadata.utils.elasticsearch.IndexConvention; import com.linkedin.metadata.utils.elasticsearch.IndexConventionImpl; -import org.springframework.beans.factory.annotation.Value; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; @@ -15,12 +16,20 @@ public class IndexConventionFactory { public static final String INDEX_CONVENTION_BEAN = "searchIndexConvention"; - @Value("${elasticsearch.index.prefix:}") - private String indexPrefix; - @Bean(name = INDEX_CONVENTION_BEAN) - protected IndexConvention createInstance( - @Value("${elasticsearch.idHashAlgo}") final String isHashAlgo) { - return new IndexConventionImpl(indexPrefix, isHashAlgo); + protected IndexConvention createInstance(final ConfigurationProvider configurationProvider) { + ElasticSearchConfiguration elasticSearchConfiguration = + configurationProvider.getElasticSearch(); + return new IndexConventionImpl( + IndexConventionImpl.IndexConventionConfig.builder() + .prefix(elasticSearchConfiguration.getIndex().getPrefix()) + .hashIdAlgo(elasticSearchConfiguration.getIdHashAlgo()) + .schemaFieldDocIdHashEnabled( + elasticSearchConfiguration + .getIndex() + .getDocIds() + .getSchemaField() + .isHashIdEnabled()) + .build()); } } diff --git a/metadata-service/factories/src/main/java/com/linkedin/gms/factory/config/ConfigurationProvider.java b/metadata-service/factories/src/main/java/com/linkedin/gms/factory/config/ConfigurationProvider.java index 08adbd54730a7..f57829baba6ba 100644 --- a/metadata-service/factories/src/main/java/com/linkedin/gms/factory/config/ConfigurationProvider.java +++ b/metadata-service/factories/src/main/java/com/linkedin/gms/factory/config/ConfigurationProvider.java @@ -2,86 +2,30 @@ import com.datahub.authentication.AuthenticationConfiguration; import com.datahub.authorization.AuthorizationConfiguration; -import com.linkedin.datahub.graphql.featureflags.FeatureFlags; -import com.linkedin.metadata.config.DataHubConfiguration; -import com.linkedin.metadata.config.EbeanConfiguration; -import com.linkedin.metadata.config.GraphQLConfiguration; -import com.linkedin.metadata.config.IngestionConfiguration; -import com.linkedin.metadata.config.MetadataChangeProposalConfig; -import com.linkedin.metadata.config.SystemUpdateConfiguration; -import com.linkedin.metadata.config.TestsConfiguration; -import com.linkedin.metadata.config.ViewsConfiguration; -import com.linkedin.metadata.config.VisualConfiguration; -import com.linkedin.metadata.config.cache.CacheConfiguration; -import com.linkedin.metadata.config.kafka.KafkaConfiguration; -import com.linkedin.metadata.config.search.ElasticSearchConfiguration; -import com.linkedin.metadata.config.telemetry.TelemetryConfiguration; +import com.linkedin.metadata.config.DataHubAppConfiguration; import lombok.Data; +import lombok.EqualsAndHashCode; import org.springframework.boot.autoconfigure.kafka.KafkaProperties; import org.springframework.boot.context.properties.ConfigurationProperties; import org.springframework.boot.context.properties.EnableConfigurationProperties; import org.springframework.stereotype.Component; +@EqualsAndHashCode(callSuper = true) @Component // Include extra kafka properties @EnableConfigurationProperties(KafkaProperties.class) @ConfigurationProperties @Data -public class ConfigurationProvider { +public class ConfigurationProvider extends DataHubAppConfiguration { /** Authentication related configs */ private AuthenticationConfiguration authentication; /** Authorizer related configs */ private AuthorizationConfiguration authorization; - /** Ingestion related configs */ - private IngestionConfiguration ingestion; - - /** Telemetry related configs */ - private TelemetryConfiguration telemetry; - - /** Viz related configs */ - private VisualConfiguration visualConfig; - - /** Tests related configs */ - private TestsConfiguration metadataTests; - - /** DataHub top-level server configurations */ - private DataHubConfiguration datahub; - - /** Views feature related configs */ - private ViewsConfiguration views; - - /** Feature flags indicating what is turned on vs turned off */ - private FeatureFlags featureFlags; - - /** Kafka related configs. */ - private KafkaConfiguration kafka; - - /** ElasticSearch configurations */ - private ElasticSearchConfiguration elasticSearch; - - /** System Update configurations */ - private SystemUpdateConfiguration systemUpdate; - - /** The base URL where DataHub is hosted. */ - private String baseUrl; - - /** Configuration for caching */ - private CacheConfiguration cache; - /** Configuration for the health check server */ private HealthCheckConfiguration healthCheck; /** Structured properties related configurations */ private StructuredPropertiesConfiguration structuredProperties; - - /** Ebean related configuration */ - private EbeanConfiguration ebean; - - /** GraphQL Configurations */ - private GraphQLConfiguration graphQL; - - /** MCP throttling configuration */ - private MetadataChangeProposalConfig metadataChangeProposal; } diff --git a/metadata-service/factories/src/main/java/com/linkedin/gms/factory/context/SystemOperationContextFactory.java b/metadata-service/factories/src/main/java/com/linkedin/gms/factory/context/SystemOperationContextFactory.java index 6870d10c87001..9d92468ce649f 100644 --- a/metadata-service/factories/src/main/java/com/linkedin/gms/factory/context/SystemOperationContextFactory.java +++ b/metadata-service/factories/src/main/java/com/linkedin/gms/factory/context/SystemOperationContextFactory.java @@ -17,7 +17,6 @@ import io.datahubproject.metadata.context.ServicesRegistryContext; import io.datahubproject.metadata.services.RestrictedService; import javax.annotation.Nonnull; -import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Qualifier; import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty; import org.springframework.context.annotation.Bean; @@ -26,10 +25,6 @@ @Configuration public class SystemOperationContextFactory { - @Autowired - @Qualifier("baseElasticSearchComponents") - private BaseElasticSearchComponentsFactory.BaseElasticSearchComponents components; - /** * Used inside GMS * @@ -45,7 +40,9 @@ protected OperationContext javaSystemOperationContext( @Nonnull final EntityService entityService, @Nonnull final RestrictedService restrictedService, @Nonnull final GraphRetriever graphRetriever, - @Nonnull final SearchService searchService) { + @Nonnull final SearchService searchService, + @Qualifier("baseElasticSearchComponents") + BaseElasticSearchComponentsFactory.BaseElasticSearchComponents components) { EntityServiceAspectRetriever entityServiceAspectRetriever = EntityServiceAspectRetriever.builder() @@ -91,7 +88,9 @@ protected OperationContext restliSystemOperationContext( @Nonnull final OperationContextConfig operationContextConfig, @Nonnull final RestrictedService restrictedService, @Nonnull final GraphRetriever graphRetriever, - @Nonnull final SearchService searchService) { + @Nonnull final SearchService searchService, + @Qualifier("baseElasticSearchComponents") + BaseElasticSearchComponentsFactory.BaseElasticSearchComponents components) { EntityClientAspectRetriever entityServiceAspectRetriever = EntityClientAspectRetriever.builder().entityClient(systemEntityClient).build(); diff --git a/metadata-service/factories/src/main/java/com/linkedin/gms/factory/kafka/schemaregistry/SystemUpdateSchemaRegistryFactory.java b/metadata-service/factories/src/main/java/com/linkedin/gms/factory/kafka/schemaregistry/SystemUpdateSchemaRegistryFactory.java index d02cdc0e68f52..9f2e7f60793a3 100644 --- a/metadata-service/factories/src/main/java/com/linkedin/gms/factory/kafka/schemaregistry/SystemUpdateSchemaRegistryFactory.java +++ b/metadata-service/factories/src/main/java/com/linkedin/gms/factory/kafka/schemaregistry/SystemUpdateSchemaRegistryFactory.java @@ -27,6 +27,7 @@ public class SystemUpdateSchemaRegistryFactory { SYSTEM_UPDATE_TOPIC_KEY_PREFIX + "duhe"; public static final String MCL_VERSIONED_SCHEMA_REGISTRY_TOPIC_KEY = SYSTEM_UPDATE_TOPIC_KEY_PREFIX + "mcl-versioned"; + public static final String MCP_SCHEMA_REGISTRY_TOPIC_KEY = SYSTEM_UPDATE_TOPIC_KEY_PREFIX + "mcp"; @Value(TOPIC_NAME) private String duheTopicName; @@ -34,6 +35,9 @@ public class SystemUpdateSchemaRegistryFactory { @Value("${METADATA_CHANGE_LOG_VERSIONED_TOPIC_NAME:" + Topics.METADATA_CHANGE_LOG_VERSIONED + "}") private String mclTopicName; + @Value("${METADATA_CHANGE_PROPOSAL_TOPIC_NAME:" + Topics.METADATA_CHANGE_PROPOSAL + "}") + private String mcpTopicName; + /** Configure Kafka Producer/Consumer processes with a custom schema registry. */ @Bean("duheSchemaRegistryConfig") protected SchemaRegistryConfig duheSchemaRegistryConfig( @@ -49,15 +53,18 @@ protected SchemaRegistryConfig duheSchemaRegistryConfig( props.putAll( Map.of( DUHE_SCHEMA_REGISTRY_TOPIC_KEY, duheTopicName, - MCL_VERSIONED_SCHEMA_REGISTRY_TOPIC_KEY, mclTopicName)); + MCL_VERSIONED_SCHEMA_REGISTRY_TOPIC_KEY, mclTopicName, + MCP_SCHEMA_REGISTRY_TOPIC_KEY, mcpTopicName)); // topic ordinals props.putAll( Map.of( DUHE_SCHEMA_REGISTRY_TOPIC_KEY + SYSTEM_UPDATE_TOPIC_KEY_ID_SUFFIX, - schemaRegistryService.getSchemaIdForTopic(duheTopicName).get().toString(), + schemaRegistryService.getSchemaIdForTopic(duheTopicName).get().toString(), MCL_VERSIONED_SCHEMA_REGISTRY_TOPIC_KEY + SYSTEM_UPDATE_TOPIC_KEY_ID_SUFFIX, - schemaRegistryService.getSchemaIdForTopic(mclTopicName).get().toString())); + schemaRegistryService.getSchemaIdForTopic(mclTopicName).get().toString(), + MCP_SCHEMA_REGISTRY_TOPIC_KEY + SYSTEM_UPDATE_TOPIC_KEY_ID_SUFFIX, + schemaRegistryService.getSchemaIdForTopic(mcpTopicName).get().toString())); log.info("DataHub System Update Registry"); return new SchemaRegistryConfig( diff --git a/metadata-service/factories/src/main/java/com/linkedin/gms/factory/plugins/SpringStandardPluginConfiguration.java b/metadata-service/factories/src/main/java/com/linkedin/gms/factory/plugins/SpringStandardPluginConfiguration.java index fa4f520dc88c7..67fe2dd6d605d 100644 --- a/metadata-service/factories/src/main/java/com/linkedin/gms/factory/plugins/SpringStandardPluginConfiguration.java +++ b/metadata-service/factories/src/main/java/com/linkedin/gms/factory/plugins/SpringStandardPluginConfiguration.java @@ -1,26 +1,42 @@ package com.linkedin.gms.factory.plugins; +import static com.linkedin.metadata.Constants.SCHEMA_METADATA_ASPECT_NAME; + +import com.linkedin.metadata.Constants; import com.linkedin.metadata.aspect.hooks.IgnoreUnknownMutator; import com.linkedin.metadata.aspect.plugins.config.AspectPluginConfig; +import com.linkedin.metadata.aspect.plugins.hooks.MCPSideEffect; import com.linkedin.metadata.aspect.plugins.hooks.MutationHook; +import com.linkedin.metadata.schemafields.sideeffects.SchemaFieldSideEffect; +import com.linkedin.metadata.timeline.eventgenerator.EntityChangeEventGeneratorRegistry; +import com.linkedin.metadata.timeline.eventgenerator.SchemaMetadataChangeEventGenerator; import java.util.List; +import lombok.extern.slf4j.Slf4j; import org.springframework.beans.factory.annotation.Value; +import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; @Configuration +@Slf4j public class SpringStandardPluginConfiguration { @Value("${metadataChangeProposal.validation.ignoreUnknown}") private boolean ignoreUnknownEnabled; + @Value("${metadataChangeProposal.validation.extensions.enabled:false}") + private boolean extensionsEnabled; + @Bean + @ConditionalOnProperty( + name = "metadataChangeProposal.validation.extensions.enabled", + havingValue = "false") public MutationHook ignoreUnknownMutator() { return new IgnoreUnknownMutator() .setConfig( AspectPluginConfig.builder() .className(IgnoreUnknownMutator.class.getName()) - .enabled(ignoreUnknownEnabled) + .enabled(ignoreUnknownEnabled && !extensionsEnabled) .supportedOperations(List.of("CREATE", "CREATE_ENTITY", "UPSERT")) .supportedEntityAspectNames( List.of( @@ -30,4 +46,38 @@ public MutationHook ignoreUnknownMutator() { .build())) .build()); } + + @Bean + @ConditionalOnProperty( + name = "metadataChangeProposal.sideEffects.schemaField.enabled", + havingValue = "true") + public MCPSideEffect schemaFieldSideEffect() { + AspectPluginConfig config = + AspectPluginConfig.builder() + .enabled(true) + .className(SchemaFieldSideEffect.class.getName()) + .supportedOperations(List.of("CREATE", "CREATE_ENTITY", "UPSERT", "RESTATE", "DELETE")) + .supportedEntityAspectNames( + List.of( + AspectPluginConfig.EntityAspectName.builder() + .entityName(Constants.DATASET_ENTITY_NAME) + .aspectName(Constants.STATUS_ASPECT_NAME) + .build(), + AspectPluginConfig.EntityAspectName.builder() + .entityName(Constants.DATASET_ENTITY_NAME) + .aspectName(Constants.SCHEMA_METADATA_ASPECT_NAME) + .build())) + .build(); + + // prevent recursive dependency from using primary bean + final EntityChangeEventGeneratorRegistry entityChangeEventGeneratorRegistry = + new EntityChangeEventGeneratorRegistry(); + entityChangeEventGeneratorRegistry.register( + SCHEMA_METADATA_ASPECT_NAME, new SchemaMetadataChangeEventGenerator()); + + log.info("Initialized {}", SchemaFieldSideEffect.class.getName()); + return new SchemaFieldSideEffect() + .setConfig(config) + .setEntityChangeEventGeneratorRegistry(entityChangeEventGeneratorRegistry); + } } diff --git a/metadata-service/factories/src/main/java/com/linkedin/gms/factory/search/LineageSearchServiceFactory.java b/metadata-service/factories/src/main/java/com/linkedin/gms/factory/search/LineageSearchServiceFactory.java index a0df92f6f6bb0..253a79a7b05a8 100644 --- a/metadata-service/factories/src/main/java/com/linkedin/gms/factory/search/LineageSearchServiceFactory.java +++ b/metadata-service/factories/src/main/java/com/linkedin/gms/factory/search/LineageSearchServiceFactory.java @@ -32,6 +32,6 @@ protected LineageSearchService getInstance( graphService, cacheEnabled ? cacheManager.getCache(LINEAGE_SEARCH_SERVICE_CACHE_NAME) : null, cacheEnabled, - configurationProvider.getCache().getSearch().getLineage()); + configurationProvider); } } diff --git a/metadata-service/factories/src/main/java/com/linkedin/metadata/boot/BootstrapStep.java b/metadata-service/factories/src/main/java/com/linkedin/metadata/boot/BootstrapStep.java index 16531466fcddc..d907f0fe53d06 100644 --- a/metadata-service/factories/src/main/java/com/linkedin/metadata/boot/BootstrapStep.java +++ b/metadata-service/factories/src/main/java/com/linkedin/metadata/boot/BootstrapStep.java @@ -1,6 +1,9 @@ package com.linkedin.metadata.boot; import com.linkedin.common.urn.Urn; +import com.linkedin.data.template.RecordTemplate; +import com.linkedin.data.template.SetMode; +import com.linkedin.data.template.StringMap; import com.linkedin.events.metadata.ChangeType; import com.linkedin.metadata.Constants; import com.linkedin.metadata.entity.EntityService; @@ -10,8 +13,12 @@ import com.linkedin.metadata.utils.GenericRecordUtils; import com.linkedin.mxe.MetadataChangeProposal; import com.linkedin.upgrade.DataHubUpgradeResult; +import com.linkedin.upgrade.DataHubUpgradeState; import io.datahubproject.metadata.context.OperationContext; +import java.util.Map; +import java.util.Optional; import javax.annotation.Nonnull; +import javax.annotation.Nullable; /** A single step in the Bootstrap process. */ public interface BootstrapStep { @@ -40,10 +47,38 @@ static Urn getUpgradeUrn(String upgradeId) { new DataHubUpgradeKey().setId(upgradeId), Constants.DATA_HUB_UPGRADE_ENTITY_NAME); } + static Optional getUpgradeResult( + @Nonnull OperationContext opContext, Urn urn, EntityService entityService) { + RecordTemplate recordTemplate = + entityService.getLatestAspect( + opContext, urn, Constants.DATA_HUB_UPGRADE_RESULT_ASPECT_NAME); + return Optional.ofNullable(recordTemplate).map(rt -> new DataHubUpgradeResult(rt.data())); + } + static void setUpgradeResult( @Nonnull OperationContext opContext, Urn urn, EntityService entityService) { + setUpgradeResult(opContext, urn, entityService, null); + } + + static void setUpgradeResult( + @Nonnull OperationContext opContext, + Urn urn, + EntityService entityService, + @Nullable Map result) { + setUpgradeResult(opContext, urn, entityService, DataHubUpgradeState.SUCCEEDED, result); + } + + static void setUpgradeResult( + @Nonnull OperationContext opContext, + Urn urn, + EntityService entityService, + @Nullable DataHubUpgradeState state, + @Nullable Map result) { final DataHubUpgradeResult upgradeResult = - new DataHubUpgradeResult().setTimestampMs(System.currentTimeMillis()); + new DataHubUpgradeResult() + .setTimestampMs(System.currentTimeMillis()) + .setState(state, SetMode.IGNORE_NULL) + .setResult(result != null ? new StringMap(result) : null, SetMode.IGNORE_NULL); // Ingest the upgrade result final MetadataChangeProposal upgradeProposal = new MetadataChangeProposal(); diff --git a/metadata-service/factories/src/main/java/com/linkedin/metadata/boot/kafka/MockSystemUpdateSerializer.java b/metadata-service/factories/src/main/java/com/linkedin/metadata/boot/kafka/MockSystemUpdateSerializer.java index 8699695fffbb9..ed2b3c817ed38 100644 --- a/metadata-service/factories/src/main/java/com/linkedin/metadata/boot/kafka/MockSystemUpdateSerializer.java +++ b/metadata-service/factories/src/main/java/com/linkedin/metadata/boot/kafka/MockSystemUpdateSerializer.java @@ -2,6 +2,7 @@ import static com.linkedin.gms.factory.kafka.schemaregistry.SystemUpdateSchemaRegistryFactory.DUHE_SCHEMA_REGISTRY_TOPIC_KEY; import static com.linkedin.gms.factory.kafka.schemaregistry.SystemUpdateSchemaRegistryFactory.MCL_VERSIONED_SCHEMA_REGISTRY_TOPIC_KEY; +import static com.linkedin.gms.factory.kafka.schemaregistry.SystemUpdateSchemaRegistryFactory.MCP_SCHEMA_REGISTRY_TOPIC_KEY; import static com.linkedin.gms.factory.kafka.schemaregistry.SystemUpdateSchemaRegistryFactory.SYSTEM_UPDATE_TOPIC_KEY_ID_SUFFIX; import static com.linkedin.gms.factory.kafka.schemaregistry.SystemUpdateSchemaRegistryFactory.SYSTEM_UPDATE_TOPIC_KEY_PREFIX; import static io.datahubproject.openapi.schema.registry.Constants.FIXED_SCHEMA_VERSION; @@ -27,9 +28,12 @@ public class MockSystemUpdateSerializer extends KafkaAvroSerializer { private static final Map AVRO_SCHEMA_MAP = Map.of( - DUHE_SCHEMA_REGISTRY_TOPIC_KEY, new AvroSchema(EventUtils.ORIGINAL_DUHE_AVRO_SCHEMA), + DUHE_SCHEMA_REGISTRY_TOPIC_KEY, + new AvroSchema(EventUtils.ORIGINAL_DUHE_AVRO_SCHEMA), MCL_VERSIONED_SCHEMA_REGISTRY_TOPIC_KEY, - new AvroSchema(EventUtils.RENAMED_MCL_AVRO_SCHEMA)); + new AvroSchema(EventUtils.RENAMED_MCL_AVRO_SCHEMA), + MCP_SCHEMA_REGISTRY_TOPIC_KEY, + new AvroSchema(EventUtils.RENAMED_MCP_AVRO_SCHEMA)); private Map> topicNameToAvroSchemaMap; diff --git a/metadata-service/factories/src/main/java/com/linkedin/metadata/boot/steps/IngestPoliciesStep.java b/metadata-service/factories/src/main/java/com/linkedin/metadata/boot/steps/IngestPoliciesStep.java index baced32d3826e..eb6bfe17ac198 100644 --- a/metadata-service/factories/src/main/java/com/linkedin/metadata/boot/steps/IngestPoliciesStep.java +++ b/metadata-service/factories/src/main/java/com/linkedin/metadata/boot/steps/IngestPoliciesStep.java @@ -20,7 +20,6 @@ import com.linkedin.metadata.query.ListUrnsResult; import com.linkedin.metadata.search.EntitySearchService; import com.linkedin.metadata.search.transformer.SearchDocumentTransformer; -import com.linkedin.metadata.search.utils.SearchUtils; import com.linkedin.metadata.utils.EntityKeyUtils; import com.linkedin.metadata.utils.GenericRecordUtils; import com.linkedin.mxe.GenericAspect; @@ -188,14 +187,11 @@ private void insertPolicyDocument( return; } - Optional docId = SearchUtils.getDocId(entityResponse.getUrn()); - - if (!docId.isPresent()) { - return; - } + final String docId = + _entitySearchService.getIndexConvention().getEntityDocumentId(entityResponse.getUrn()); _entitySearchService.upsertDocument( - systemOperationContext, Constants.POLICY_ENTITY_NAME, searchDocument.get(), docId.get()); + systemOperationContext, Constants.POLICY_ENTITY_NAME, searchDocument.get(), docId); } private void ingestPolicy( diff --git a/metadata-service/graphql-servlet-impl/src/main/java/com/datahub/graphql/GraphQLController.java b/metadata-service/graphql-servlet-impl/src/main/java/com/datahub/graphql/GraphQLController.java index f04f5f80d03a4..2f66b30f55844 100644 --- a/metadata-service/graphql-servlet-impl/src/main/java/com/datahub/graphql/GraphQLController.java +++ b/metadata-service/graphql-servlet-impl/src/main/java/com/datahub/graphql/GraphQLController.java @@ -15,6 +15,7 @@ import com.linkedin.datahub.graphql.GraphQLEngine; import com.linkedin.datahub.graphql.concurrency.GraphQLConcurrencyUtils; import com.linkedin.datahub.graphql.exception.DataHubGraphQLError; +import com.linkedin.gms.factory.config.ConfigurationProvider; import com.linkedin.metadata.utils.metrics.MetricUtils; import graphql.ExecutionResult; import io.datahubproject.metadata.context.OperationContext; @@ -51,6 +52,8 @@ public GraphQLController() { @Inject AuthorizerChain _authorizerChain; + @Inject ConfigurationProvider configurationProvider; + @Nonnull @Inject @Named("systemOperationContext") @@ -122,6 +125,7 @@ CompletableFuture> postGraphQL( authentication, _authorizerChain, systemOperationContext, + configurationProvider, request, operationName, query, diff --git a/metadata-service/graphql-servlet-impl/src/main/java/com/datahub/graphql/SpringQueryContext.java b/metadata-service/graphql-servlet-impl/src/main/java/com/datahub/graphql/SpringQueryContext.java index 8aa22efb785e2..cd8ce56bf36f9 100644 --- a/metadata-service/graphql-servlet-impl/src/main/java/com/datahub/graphql/SpringQueryContext.java +++ b/metadata-service/graphql-servlet-impl/src/main/java/com/datahub/graphql/SpringQueryContext.java @@ -3,6 +3,7 @@ import com.datahub.authentication.Authentication; import com.datahub.plugins.auth.authorization.Authorizer; import com.linkedin.datahub.graphql.QueryContext; +import com.linkedin.metadata.config.DataHubAppConfiguration; import graphql.language.OperationDefinition; import graphql.parser.Parser; import io.datahubproject.metadata.context.OperationContext; @@ -21,12 +22,14 @@ public class SpringQueryContext implements QueryContext { private final Authorizer authorizer; @Getter private final String queryName; @Nonnull private final OperationContext operationContext; + @Nonnull private final DataHubAppConfiguration dataHubAppConfig; public SpringQueryContext( final boolean isAuthenticated, final Authentication authentication, final Authorizer authorizer, @Nonnull final OperationContext systemOperationContext, + @Nonnull final DataHubAppConfiguration dataHubAppConfig, @Nonnull final HttpServletRequest request, @Nullable final String operationName, String jsonQuery, @@ -57,5 +60,7 @@ public SpringQueryContext( authorizer, authentication, true); + + this.dataHubAppConfig = dataHubAppConfig; } } diff --git a/metadata-service/restli-api/src/main/snapshot/com.linkedin.entity.aspects.snapshot.json b/metadata-service/restli-api/src/main/snapshot/com.linkedin.entity.aspects.snapshot.json index c85e57a35eac7..3688311b1f234 100644 --- a/metadata-service/restli-api/src/main/snapshot/com.linkedin.entity.aspects.snapshot.json +++ b/metadata-service/restli-api/src/main/snapshot/com.linkedin.entity.aspects.snapshot.json @@ -3180,7 +3180,7 @@ }, { "name" : "isPartitioningKey", "type" : "boolean", - "doc" : "For Datasets which are partitioned, this determines the partitioning key.", + "doc" : "For Datasets which are partitioned, this determines the partitioning key.\nNote that multiple columns can be part of a partitioning key, but currently we do not support\nrendering the ordered partitioning key.", "optional" : true }, { "name" : "jsonProps", diff --git a/metadata-service/restli-api/src/main/snapshot/com.linkedin.entity.entities.snapshot.json b/metadata-service/restli-api/src/main/snapshot/com.linkedin.entity.entities.snapshot.json index 5b6f7a290fd1a..59894ed083a2e 100644 --- a/metadata-service/restli-api/src/main/snapshot/com.linkedin.entity.entities.snapshot.json +++ b/metadata-service/restli-api/src/main/snapshot/com.linkedin.entity.entities.snapshot.json @@ -3572,7 +3572,7 @@ }, { "name" : "isPartitioningKey", "type" : "boolean", - "doc" : "For Datasets which are partitioned, this determines the partitioning key.", + "doc" : "For Datasets which are partitioned, this determines the partitioning key.\nNote that multiple columns can be part of a partitioning key, but currently we do not support\nrendering the ordered partitioning key.", "optional" : true }, { "name" : "jsonProps", @@ -6366,6 +6366,14 @@ }, "doc" : "A list of the the restricted aspects on the entity.\nIf the key aspect is present, assume ALL aspects should be restricted including the entity's Urn.", "optional" : true + }, { + "name" : "extraFields", + "type" : { + "type" : "map", + "values" : "string" + }, + "doc" : "Extra fields from the search document based on what is requested in the search request", + "optional" : true } ] } ], "fields" : [ { diff --git a/metadata-service/restli-api/src/main/snapshot/com.linkedin.entity.runs.snapshot.json b/metadata-service/restli-api/src/main/snapshot/com.linkedin.entity.runs.snapshot.json index dc226adf635c4..16549757a961f 100644 --- a/metadata-service/restli-api/src/main/snapshot/com.linkedin.entity.runs.snapshot.json +++ b/metadata-service/restli-api/src/main/snapshot/com.linkedin.entity.runs.snapshot.json @@ -2908,7 +2908,7 @@ }, { "name" : "isPartitioningKey", "type" : "boolean", - "doc" : "For Datasets which are partitioned, this determines the partitioning key.", + "doc" : "For Datasets which are partitioned, this determines the partitioning key.\nNote that multiple columns can be part of a partitioning key, but currently we do not support\nrendering the ordered partitioning key.", "optional" : true }, { "name" : "jsonProps", diff --git a/metadata-service/restli-api/src/main/snapshot/com.linkedin.operations.operations.snapshot.json b/metadata-service/restli-api/src/main/snapshot/com.linkedin.operations.operations.snapshot.json index 7bc02ce2017fd..95df1d2ce21d9 100644 --- a/metadata-service/restli-api/src/main/snapshot/com.linkedin.operations.operations.snapshot.json +++ b/metadata-service/restli-api/src/main/snapshot/com.linkedin.operations.operations.snapshot.json @@ -2902,7 +2902,7 @@ }, { "name" : "isPartitioningKey", "type" : "boolean", - "doc" : "For Datasets which are partitioned, this determines the partitioning key.", + "doc" : "For Datasets which are partitioned, this determines the partitioning key.\nNote that multiple columns can be part of a partitioning key, but currently we do not support\nrendering the ordered partitioning key.", "optional" : true }, { "name" : "jsonProps", diff --git a/metadata-service/restli-api/src/main/snapshot/com.linkedin.platform.platform.snapshot.json b/metadata-service/restli-api/src/main/snapshot/com.linkedin.platform.platform.snapshot.json index 3f64d1b948035..3d16550db1e0f 100644 --- a/metadata-service/restli-api/src/main/snapshot/com.linkedin.platform.platform.snapshot.json +++ b/metadata-service/restli-api/src/main/snapshot/com.linkedin.platform.platform.snapshot.json @@ -3566,7 +3566,7 @@ }, { "name" : "isPartitioningKey", "type" : "boolean", - "doc" : "For Datasets which are partitioned, this determines the partitioning key.", + "doc" : "For Datasets which are partitioned, this determines the partitioning key.\nNote that multiple columns can be part of a partitioning key, but currently we do not support\nrendering the ordered partitioning key.", "optional" : true }, { "name" : "jsonProps", diff --git a/metadata-service/services/src/main/java/com/linkedin/metadata/entity/restoreindices/RestoreIndicesArgs.java b/metadata-service/services/src/main/java/com/linkedin/metadata/entity/restoreindices/RestoreIndicesArgs.java index 89e69174c1502..cae8c97456c06 100644 --- a/metadata-service/services/src/main/java/com/linkedin/metadata/entity/restoreindices/RestoreIndicesArgs.java +++ b/metadata-service/services/src/main/java/com/linkedin/metadata/entity/restoreindices/RestoreIndicesArgs.java @@ -1,6 +1,8 @@ package com.linkedin.metadata.entity.restoreindices; import java.time.Instant; +import java.util.Collections; +import java.util.List; import lombok.Data; import lombok.experimental.Accessors; @@ -20,6 +22,7 @@ public class RestoreIndicesArgs implements Cloneable { public long gePitEpochMs = DEFAULT_GE_PIT_EPOCH_MS; public long lePitEpochMs; public String aspectName; + public List aspectNames = Collections.emptyList(); public String urn; public String urnLike; public Boolean urnBasedPagination = false; diff --git a/metadata-service/services/src/main/java/com/linkedin/metadata/search/EntitySearchService.java b/metadata-service/services/src/main/java/com/linkedin/metadata/search/EntitySearchService.java index 1b32ddc7c3ecb..26f2335d0c59f 100644 --- a/metadata-service/services/src/main/java/com/linkedin/metadata/search/EntitySearchService.java +++ b/metadata-service/services/src/main/java/com/linkedin/metadata/search/EntitySearchService.java @@ -6,6 +6,7 @@ import com.linkedin.metadata.query.AutoCompleteResult; import com.linkedin.metadata.query.filter.Filter; import com.linkedin.metadata.query.filter.SortCriterion; +import com.linkedin.metadata.utils.elasticsearch.IndexConvention; import io.datahubproject.metadata.context.OperationContext; import java.util.List; import java.util.Map; @@ -321,4 +322,11 @@ ExplainResponse explain( @Nullable String keepAlive, int size, @Nullable List facets); + + /** + * Return index convention + * + * @return convent + */ + IndexConvention getIndexConvention(); } diff --git a/metadata-service/services/src/main/java/com/linkedin/metadata/search/utils/QueryUtils.java b/metadata-service/services/src/main/java/com/linkedin/metadata/search/utils/QueryUtils.java index a148a45b20e0c..730a2886ab2bf 100644 --- a/metadata-service/services/src/main/java/com/linkedin/metadata/search/utils/QueryUtils.java +++ b/metadata-service/services/src/main/java/com/linkedin/metadata/search/utils/QueryUtils.java @@ -4,9 +4,11 @@ import com.datahub.util.ModelUtils; import com.google.common.collect.ImmutableList; +import com.linkedin.common.urn.Urn; import com.linkedin.data.template.RecordTemplate; import com.linkedin.data.template.StringArray; import com.linkedin.metadata.aspect.AspectVersion; +import com.linkedin.metadata.config.DataHubAppConfiguration; import com.linkedin.metadata.models.EntitySpec; import com.linkedin.metadata.models.SearchableFieldSpec; import com.linkedin.metadata.models.annotation.SearchableAnnotation; @@ -20,14 +22,17 @@ import com.linkedin.metadata.query.filter.RelationshipDirection; import com.linkedin.metadata.query.filter.RelationshipFilter; import com.linkedin.util.Pair; +import java.util.Arrays; import java.util.Collections; import java.util.List; import java.util.Map; import java.util.Objects; import java.util.Set; import java.util.stream.Collectors; +import java.util.stream.Stream; import javax.annotation.Nonnull; import javax.annotation.Nullable; +import org.apache.commons.collections.CollectionUtils; public class QueryUtils { @@ -87,6 +92,25 @@ public static Filter newFilter(@Nonnull Criterion criterion) { .setAnd(new CriterionArray(ImmutableList.of(criterion)))))); } + @Nonnull + public static Filter newDisjunctiveFilter(@Nonnull Criterion... orCriterion) { + return new Filter() + .setOr( + Arrays.stream(orCriterion) + .map( + criterion -> + new ConjunctiveCriterion() + .setAnd(new CriterionArray(ImmutableList.of(criterion)))) + .collect(Collectors.toCollection(ConjunctiveCriterionArray::new))); + } + + @Nonnull + public static ConjunctiveCriterion add( + @Nonnull ConjunctiveCriterion conjunctiveCriterion, @Nonnull Criterion element) { + conjunctiveCriterion.getAnd().add(element); + return conjunctiveCriterion; + } + @Nonnull public static Filter filterOrDefaultEmptyFilter(@Nullable Filter filter) { return filter != null ? filter : EMPTY_FILTER; @@ -195,4 +219,77 @@ public static List getQueryByDefaultEntitySpecs(EntityRegistry entit .map(Pair::getFirst) .collect(Collectors.toList()); } + + /** + * Build a filter with URNs and an optional existing filter + * + * @param urns urns to limit returns + * @param inputFilters optional existing filter + * @return filter with additional URN criterion + */ + public static Filter buildFilterWithUrns( + @Nonnull DataHubAppConfiguration appConfig, + @Nonnull Set urns, + @Nullable Filter inputFilters) { + // Determine which field is used for urn selection based on config + boolean schemaFieldEnabled = + appConfig.getMetadataChangeProposal().getSideEffects().getSchemaField().isEnabled(); + + // Prevent increasing the query size by avoiding querying multiple fields with the + // same URNs + Criterion urnMatchCriterion = + new Criterion() + .setField("urn") + .setValue("") + .setValues( + new StringArray( + urns.stream() + .filter( + urn -> + !schemaFieldEnabled + || !urn.getEntityType().equals(SCHEMA_FIELD_ENTITY_NAME)) + .map(Object::toString) + .collect(Collectors.toList()))); + + Criterion schemaUrnAliasCriterion = + new Criterion() + .setField(String.format("%s.keyword", SCHEMA_FIELD_ALIASES_ASPECT)) + .setValue("") + .setValues( + new StringArray( + urns.stream() + .filter( + urn -> + schemaFieldEnabled + && urn.getEntityType().equals(SCHEMA_FIELD_ENTITY_NAME)) + .map(Object::toString) + .collect(Collectors.toList()))); + + if (inputFilters == null || CollectionUtils.isEmpty(inputFilters.getOr())) { + return QueryUtils.newDisjunctiveFilter(urnMatchCriterion, schemaUrnAliasCriterion); + } + + // Add urn match criterion to each or clause + inputFilters.setOr( + inputFilters.getOr().stream() + .flatMap( + existingCriterion -> { + try { + return Stream.concat( + urnMatchCriterion.getValues().isEmpty() + ? Stream.of() + : Stream.of( + QueryUtils.add(existingCriterion.copy(), urnMatchCriterion)), + schemaUrnAliasCriterion.getValues().isEmpty() + ? Stream.of() + : Stream.of( + QueryUtils.add(existingCriterion.copy(), schemaUrnAliasCriterion))); + } catch (CloneNotSupportedException e) { + throw new RuntimeException(e); + } + }) + .collect(Collectors.toCollection(ConjunctiveCriterionArray::new))); + + return inputFilters; + } } diff --git a/metadata-service/services/src/main/java/com/linkedin/metadata/service/FormService.java b/metadata-service/services/src/main/java/com/linkedin/metadata/service/FormService.java index 210fba82eb4e2..b702a61840423 100644 --- a/metadata-service/services/src/main/java/com/linkedin/metadata/service/FormService.java +++ b/metadata-service/services/src/main/java/com/linkedin/metadata/service/FormService.java @@ -312,7 +312,7 @@ private void ingestSchemaFieldStructuredProperties( @Nonnull final PrimitivePropertyValueArray values, @Nonnull final String fieldPath) throws Exception { - Urn schemaFieldUrn = SchemaFieldUtils.generateSchemaFieldUrn(entityUrn.toString(), fieldPath); + Urn schemaFieldUrn = SchemaFieldUtils.generateSchemaFieldUrn(entityUrn, fieldPath); ingestStructuredProperties(opContext, schemaFieldUrn, structuredPropertyUrn, values); } diff --git a/metadata-service/services/src/main/java/com/linkedin/metadata/timeline/data/ChangeTransaction.java b/metadata-service/services/src/main/java/com/linkedin/metadata/timeline/data/ChangeTransaction.java index 3e963dba0cdb4..f34c20e6acd76 100644 --- a/metadata-service/services/src/main/java/com/linkedin/metadata/timeline/data/ChangeTransaction.java +++ b/metadata-service/services/src/main/java/com/linkedin/metadata/timeline/data/ChangeTransaction.java @@ -1,8 +1,8 @@ package com.linkedin.metadata.timeline.data; -import com.github.fge.jsonpatch.JsonPatch; import io.swagger.v3.oas.annotations.media.ArraySchema; import io.swagger.v3.oas.annotations.media.Schema; +import jakarta.json.JsonPatch; import java.util.List; import lombok.Builder; import lombok.Getter; diff --git a/metadata-utils/src/main/java/com/linkedin/metadata/utils/SchemaFieldUtils.java b/metadata-utils/src/main/java/com/linkedin/metadata/utils/SchemaFieldUtils.java index edf959d04a37b..4515008b050a1 100644 --- a/metadata-utils/src/main/java/com/linkedin/metadata/utils/SchemaFieldUtils.java +++ b/metadata-utils/src/main/java/com/linkedin/metadata/utils/SchemaFieldUtils.java @@ -1,22 +1,124 @@ package com.linkedin.metadata.utils; +import static com.linkedin.metadata.Constants.SCHEMA_FIELD_ENTITY_NAME; +import static org.apache.commons.codec.digest.DigestUtils.sha256Hex; + +import com.google.common.annotations.VisibleForTesting; import com.linkedin.common.urn.Urn; import com.linkedin.common.urn.UrnUtils; -import com.linkedin.metadata.Constants; -import com.linkedin.metadata.key.SchemaFieldKey; +import com.linkedin.schema.SchemaField; +import com.linkedin.schema.SchemaMetadata; +import com.linkedin.util.Pair; +import java.util.Arrays; +import java.util.HashSet; +import java.util.Set; +import java.util.stream.Collectors; import javax.annotation.Nonnull; public class SchemaFieldUtils { + private static final String FIELD_PATH_V2 = "[version=2.0]"; private SchemaFieldUtils() {} + /** + * Generate schemaFieldUrn from the parent dataset urn from schemaMetadata field + * + * @param parentUrn the dataset's urn + * @param field field from schemaMetadata + * @return schemaField URN + */ + public static Urn generateSchemaFieldUrn(Urn parentUrn, SchemaField field) { + return generateSchemaFieldUrn(parentUrn, field.getFieldPath()); + } + + public static String generateDocumentId(Urn schemaFieldUrn) { + if (!SCHEMA_FIELD_ENTITY_NAME.equals(schemaFieldUrn.getEntityType())) { + throw new IllegalArgumentException( + String.format( + "Invalid URN, expected entity %s, found %s", + SCHEMA_FIELD_ENTITY_NAME, schemaFieldUrn.getEntityType())); + } + + return String.format( + "urn:li:%s:(%s,%s)", + SCHEMA_FIELD_ENTITY_NAME, + sha256Hex(schemaFieldUrn.getEntityKey().get(0)), + sha256Hex(schemaFieldUrn.getEntityKey().get(1))); + } + + /** + * Handles our url encoding for URN characters. + * + * @param parentUrn the dataset's urn + * @param fieldPath field path + * @return schemaField URN + */ public static Urn generateSchemaFieldUrn( - @Nonnull final String resourceUrn, @Nonnull final String fieldPath) { + @Nonnull final Urn parentUrn, @Nonnull final String fieldPath) { // we rely on schemaField fieldPaths to be encoded since we do that on the ingestion side final String encodedFieldPath = fieldPath.replaceAll("\\(", "%28").replaceAll("\\)", "%29").replaceAll(",", "%2C"); - final SchemaFieldKey key = - new SchemaFieldKey().setParent(UrnUtils.getUrn(resourceUrn)).setFieldPath(encodedFieldPath); - return EntityKeyUtils.convertEntityKeyToUrn(key, Constants.SCHEMA_FIELD_ENTITY_NAME); + return Urn.createFromTuple(SCHEMA_FIELD_ENTITY_NAME, parentUrn.toString(), encodedFieldPath); + } + + /** + * Produce schemaField URN aliases v1/v2 variants given a schemeField target URN (either v1/v2), + * the parent dataset URN and the parent dataset's schemaMetadata aspect. + * + * @param datasetUrn parent dataset's urn + * @param schemaMetadata parent dataset's schemaMetadata + * @param schemaField target schemeField + * @return all aliases of the given schemaField URN including itself (if it exists within the + * schemaMetadata) + */ + public static Set getSchemaFieldAliases( + @Nonnull Urn datasetUrn, + @Nonnull SchemaMetadata schemaMetadata, + @Nonnull SchemaField schemaField) { + + Urn downgradedUrn = + downgradeSchemaFieldUrn( + generateSchemaFieldUrn(datasetUrn, downgradeFieldPath(schemaField.getFieldPath()))); + + // Find all collisions after v2 -> v1 conversion + HashSet aliases = + schemaMetadata.getFields().stream() + .map( + field -> + Pair.of( + generateSchemaFieldUrn( + datasetUrn, downgradeFieldPath(field.getFieldPath())), + generateSchemaFieldUrn(datasetUrn, field.getFieldPath()))) + .filter(pair -> pair.getFirst().equals(downgradedUrn)) + .map(Pair::getSecond) + .collect(Collectors.toCollection(HashSet::new)); + + if (!aliases.isEmpty()) { + // if v2 -> v1 + aliases.add(downgradedUrn); + } + + return aliases; + } + + @VisibleForTesting + @Nonnull + static Urn downgradeSchemaFieldUrn(@Nonnull Urn schemaFieldUrn) { + return generateSchemaFieldUrn( + UrnUtils.getUrn(schemaFieldUrn.getId()), + downgradeFieldPath(schemaFieldUrn.getEntityKey().get(1))); + } + + // https://datahubproject.io/docs/advanced/field-path-spec-v2/#backward-compatibility + @Nonnull + private static String downgradeFieldPath(@Nonnull String fieldPath) { + if (fieldPath.startsWith(FIELD_PATH_V2)) { + return Arrays.stream(fieldPath.substring(FIELD_PATH_V2.length()).split("[.]")) + .filter( + component -> + !component.isEmpty() && !(component.startsWith("[") && component.endsWith("]"))) + .collect(Collectors.joining(".")); + } + return fieldPath; } } diff --git a/metadata-utils/src/main/java/com/linkedin/metadata/utils/elasticsearch/IndexConvention.java b/metadata-utils/src/main/java/com/linkedin/metadata/utils/elasticsearch/IndexConvention.java index 87aebabf64366..b4c95ce106de5 100644 --- a/metadata-utils/src/main/java/com/linkedin/metadata/utils/elasticsearch/IndexConvention.java +++ b/metadata-utils/src/main/java/com/linkedin/metadata/utils/elasticsearch/IndexConvention.java @@ -1,5 +1,6 @@ package com.linkedin.metadata.utils.elasticsearch; +import com.linkedin.common.urn.Urn; import com.linkedin.data.template.RecordTemplate; import com.linkedin.metadata.models.EntitySpec; import com.linkedin.util.Pair; @@ -50,4 +51,13 @@ public interface IndexConvention { @Nonnull String getIdHashAlgo(); + + /** + * Given the URN generate the document id for entity indices + * + * @param entityUrn the entity which the document belongs + * @return document id + */ + @Nonnull + String getEntityDocumentId(Urn entityUrn); } diff --git a/metadata-utils/src/main/java/com/linkedin/metadata/utils/elasticsearch/IndexConventionImpl.java b/metadata-utils/src/main/java/com/linkedin/metadata/utils/elasticsearch/IndexConventionImpl.java index 2c9c927cd8c34..5855715fb7eba 100644 --- a/metadata-utils/src/main/java/com/linkedin/metadata/utils/elasticsearch/IndexConventionImpl.java +++ b/metadata-utils/src/main/java/com/linkedin/metadata/utils/elasticsearch/IndexConventionImpl.java @@ -1,20 +1,28 @@ package com.linkedin.metadata.utils.elasticsearch; +import static com.linkedin.metadata.Constants.SCHEMA_FIELD_ENTITY_NAME; + +import com.linkedin.common.urn.Urn; import com.linkedin.data.template.RecordTemplate; import com.linkedin.metadata.models.EntitySpec; +import com.linkedin.metadata.utils.SchemaFieldUtils; import com.linkedin.util.Pair; +import java.net.URLEncoder; +import java.nio.charset.StandardCharsets; import java.util.Map; import java.util.Optional; import java.util.concurrent.ConcurrentHashMap; import javax.annotation.Nonnull; import javax.annotation.Nullable; +import lombok.Builder; import lombok.Getter; +import lombok.Value; import org.apache.commons.lang3.StringUtils; // Default implementation of search index naming convention public class IndexConventionImpl implements IndexConvention { public static IndexConvention noPrefix(@Nonnull String idHashAlgo) { - return new IndexConventionImpl(null, idHashAlgo); + return new IndexConventionImpl(IndexConventionConfig.builder().hashIdAlgo(idHashAlgo).build()); } // Map from Entity name -> Index name @@ -22,16 +30,19 @@ public static IndexConvention noPrefix(@Nonnull String idHashAlgo) { private final Optional _prefix; private final String _getAllEntityIndicesPattern; private final String _getAllTimeseriesIndicesPattern; - @Getter private final String idHashAlgo; + @Getter private final IndexConventionConfig indexConventionConfig; private static final String ENTITY_INDEX_VERSION = "v2"; private static final String ENTITY_INDEX_SUFFIX = "index"; private static final String TIMESERIES_INDEX_VERSION = "v1"; private static final String TIMESERIES_ENTITY_INDEX_SUFFIX = "aspect"; - public IndexConventionImpl(@Nullable String prefix, String idHashAlgo) { - _prefix = StringUtils.isEmpty(prefix) ? Optional.empty() : Optional.of(prefix); - this.idHashAlgo = idHashAlgo; + public IndexConventionImpl(IndexConventionConfig indexConventionConfig) { + this.indexConventionConfig = indexConventionConfig; + _prefix = + StringUtils.isEmpty(indexConventionConfig.getPrefix()) + ? Optional.empty() + : Optional.of(indexConventionConfig.getPrefix()); _getAllEntityIndicesPattern = _prefix.map(p -> p + "_").orElse("") + "*" @@ -46,6 +57,12 @@ public IndexConventionImpl(@Nullable String prefix, String idHashAlgo) { + TIMESERIES_INDEX_VERSION; } + @Nonnull + @Override + public String getIdHashAlgo() { + return indexConventionConfig.getHashIdAlgo(); + } + private String createIndexName(String baseName) { return (_prefix.map(prefix -> prefix + "_").orElse("") + baseName).toLowerCase(); } @@ -136,4 +153,27 @@ public Optional> getEntityAndAspectName(String timeseriesAs } return Optional.empty(); } + + @Nonnull + @Override + public String getEntityDocumentId(Urn entityUrn) { + final String unencodedId; + if (indexConventionConfig.schemaFieldDocIdHashEnabled + && SCHEMA_FIELD_ENTITY_NAME.equals(entityUrn.getEntityType())) { + unencodedId = SchemaFieldUtils.generateDocumentId(entityUrn); + } else { + unencodedId = entityUrn.toString(); + } + + return URLEncoder.encode(unencodedId, StandardCharsets.UTF_8); + } + + /** Since this is used outside of Spring */ + @Value + @Builder + public static class IndexConventionConfig { + @Builder.Default String hashIdAlgo = "MD5"; + @Builder.Default @Nullable String prefix = null; + @Builder.Default boolean schemaFieldDocIdHashEnabled = false; + } } diff --git a/metadata-utils/src/test/java/com/linkedin/metadata/utils/SchemaFieldUtilsTest.java b/metadata-utils/src/test/java/com/linkedin/metadata/utils/SchemaFieldUtilsTest.java new file mode 100644 index 0000000000000..53f24f1d99b95 --- /dev/null +++ b/metadata-utils/src/test/java/com/linkedin/metadata/utils/SchemaFieldUtilsTest.java @@ -0,0 +1,133 @@ +package com.linkedin.metadata.utils; + +import static org.testng.Assert.assertEquals; + +import com.linkedin.common.urn.Urn; +import com.linkedin.common.urn.UrnUtils; +import com.linkedin.schema.SchemaField; +import com.linkedin.schema.SchemaFieldArray; +import com.linkedin.schema.SchemaMetadata; +import java.util.List; +import java.util.Set; +import org.testng.annotations.Test; + +/** Tests the capabilities of {@link EntityKeyUtils} */ +public class SchemaFieldUtilsTest { + private static final Urn TEST_DATASET_URN = + UrnUtils.getUrn( + "urn:li:dataset:(urn:li:dataPlatform:bigquery,cypress_project.jaffle_shop.customers,PROD)"); + + @Test + public void testGenerateSchemaFieldURN() { + assertEquals( + SchemaFieldUtils.generateSchemaFieldUrn(TEST_DATASET_URN, "customer_id"), + UrnUtils.getUrn( + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:bigquery,cypress_project.jaffle_shop.customers,PROD),customer_id)")); + + assertEquals( + SchemaFieldUtils.generateSchemaFieldUrn( + TEST_DATASET_URN, + "[version=2.0].[type=ABFooUnion].[type=union].[type=array].[type=array].[type=Foo].a.[type=long].f"), + UrnUtils.getUrn( + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:bigquery,cypress_project.jaffle_shop.customers,PROD),[version=2.0].[type=ABFooUnion].[type=union].[type=array].[type=array].[type=Foo].a.[type=long].f)")); + } + + @Test + public void testDowngradeSchemaFieldUrn() { + assertEquals( + SchemaFieldUtils.downgradeSchemaFieldUrn( + UrnUtils.getUrn( + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:bigquery,cypress_project.jaffle_shop.customers,PROD),customer_id)")), + UrnUtils.getUrn( + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:bigquery,cypress_project.jaffle_shop.customers,PROD),customer_id)"), + "Expected no change to v1 field path schemaField URN"); + + assertEquals( + SchemaFieldUtils.downgradeSchemaFieldUrn( + UrnUtils.getUrn( + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:bigquery,cypress_project.jaffle_shop.customers,PROD),[version=2.0].[type=ABFooUnion].[type=union].[type=array].[type=array].[type=Foo].a.[type=long].f)")), + UrnUtils.getUrn( + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:bigquery,cypress_project.jaffle_shop.customers,PROD),a.f)"), + "Expected downgrade to v1 field path schemaField URN"); + } + + @Test + public void testSchemaFieldAliases() { + SchemaMetadata testSchema = new SchemaMetadata(); + testSchema.setFields( + new SchemaFieldArray( + List.of( + new SchemaField().setFieldPath("customer_id"), + new SchemaField().setFieldPath("[version=2.0].[type=ABFooUnion].[type=union].a"), + new SchemaField() + .setFieldPath("[version=2.0].[type=ABFooUnion].[type=union].[type=A].a"), + new SchemaField() + .setFieldPath( + "[version=2.0].[type=ABFooUnion].[type=union].[type=A].a.[type=string].f"), + new SchemaField() + .setFieldPath("[version=2.0].[type=ABFooUnion].[type=union].[type=B].a"), + new SchemaField() + .setFieldPath( + "[version=2.0].[type=ABFooUnion].[type=union].[type=B].a.[type=string].f"), + new SchemaField() + .setFieldPath( + "[version=2.0].[type=ABFooUnion].[type=union].[type=array].[type=array].[type=Foo].a"), + new SchemaField() + .setFieldPath( + "[version=2.0].[type=ABFooUnion].[type=union].[type=array].[type=array].[type=Foo].a.[type=long].f")))); + + assertEquals( + SchemaFieldUtils.getSchemaFieldAliases( + TEST_DATASET_URN, testSchema, new SchemaField().setFieldPath("customer_id")), + Set.of( + UrnUtils.getUrn( + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:bigquery,cypress_project.jaffle_shop.customers,PROD),customer_id)")), + "Expected only the target v1 schemaField and no aliases"); + + assertEquals( + SchemaFieldUtils.getSchemaFieldAliases( + TEST_DATASET_URN, + testSchema, + new SchemaField().setFieldPath("[version=2.0].[type=ABFooUnion].[type=union].a")), + Set.of( + UrnUtils.getUrn( + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:bigquery,cypress_project.jaffle_shop.customers,PROD),[version=2.0].[type=ABFooUnion].[type=union].a)"), + UrnUtils.getUrn( + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:bigquery,cypress_project.jaffle_shop.customers,PROD),a)"), + UrnUtils.getUrn( + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:bigquery,cypress_project.jaffle_shop.customers,PROD),[version=2.0].[type=ABFooUnion].[type=union].[type=A].a)"), + UrnUtils.getUrn( + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:bigquery,cypress_project.jaffle_shop.customers,PROD),[version=2.0].[type=ABFooUnion].[type=union].[type=B].a)"), + UrnUtils.getUrn( + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:bigquery,cypress_project.jaffle_shop.customers,PROD),[version=2.0].[type=ABFooUnion].[type=union].[type=array].[type=array].[type=Foo].a)")), + "Expected one v1 alias and 3 collisions. Excluding target"); + + assertEquals( + SchemaFieldUtils.getSchemaFieldAliases( + TEST_DATASET_URN, + testSchema, + new SchemaField() + .setFieldPath( + "[version=2.0].[type=ABFooUnion].[type=union].[type=array].[type=array].[type=Foo].a.[type=long].f")), + Set.of( + UrnUtils.getUrn( + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:bigquery,cypress_project.jaffle_shop.customers,PROD),[version=2.0].[type=ABFooUnion].[type=union].[type=array].[type=array].[type=Foo].a.[type=long].f)"), + UrnUtils.getUrn( + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:bigquery,cypress_project.jaffle_shop.customers,PROD),a.f)"), + UrnUtils.getUrn( + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:bigquery,cypress_project.jaffle_shop.customers,PROD),[version=2.0].[type=ABFooUnion].[type=union].[type=A].a.[type=string].f)"), + UrnUtils.getUrn( + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:bigquery,cypress_project.jaffle_shop.customers,PROD),[version=2.0].[type=ABFooUnion].[type=union].[type=B].a.[type=string].f)")), + "Expected one v1 alias and 2 collisions. Excluding target"); + + assertEquals( + SchemaFieldUtils.getSchemaFieldAliases( + TEST_DATASET_URN, + testSchema, + new SchemaField() + .setFieldPath( + "[version=2.0].[type=ABFooUnion].[type=union].[type=array].[type=array].[type=Foo].a.[type=long].z")), + Set.of(), + "Expected no aliases since target field is not present."); + } +} diff --git a/metadata-utils/src/test/java/com/linkedin/metadata/utils/elasticsearch/IndexConventionImplTest.java b/metadata-utils/src/test/java/com/linkedin/metadata/utils/elasticsearch/IndexConventionImplTest.java index 2f6c7138d3c4f..8768c44c70a82 100644 --- a/metadata-utils/src/test/java/com/linkedin/metadata/utils/elasticsearch/IndexConventionImplTest.java +++ b/metadata-utils/src/test/java/com/linkedin/metadata/utils/elasticsearch/IndexConventionImplTest.java @@ -1,8 +1,11 @@ package com.linkedin.metadata.utils.elasticsearch; +import static org.apache.commons.codec.digest.DigestUtils.sha256Hex; import static org.testng.Assert.*; +import com.linkedin.common.urn.UrnUtils; import com.linkedin.util.Pair; +import java.net.URLEncoder; import java.util.Optional; import org.testng.annotations.Test; @@ -25,7 +28,12 @@ public void testIndexConventionNoPrefix() { @Test public void testIndexConventionPrefix() { - IndexConvention indexConventionPrefix = new IndexConventionImpl("prefix", "MD5"); + IndexConvention indexConventionPrefix = + new IndexConventionImpl( + IndexConventionImpl.IndexConventionConfig.builder() + .prefix("prefix") + .hashIdAlgo("MD5") + .build()); String entityName = "dataset"; String expectedIndexName = "prefix_datasetindex_v2"; assertEquals(indexConventionPrefix.getEntityIndexName(entityName), expectedIndexName); @@ -64,7 +72,12 @@ public void testTimeseriesIndexConventionNoPrefix() { @Test public void testTimeseriesIndexConventionPrefix() { - IndexConvention indexConventionPrefix = new IndexConventionImpl("prefix", "MD5"); + IndexConvention indexConventionPrefix = + new IndexConventionImpl( + IndexConventionImpl.IndexConventionConfig.builder() + .prefix("prefix") + .hashIdAlgo("MD5") + .build()); String entityName = "dataset"; String aspectName = "datasetusagestatistics"; String expectedIndexName = "prefix_dataset_datasetusagestatisticsaspect_v1"; @@ -81,4 +94,24 @@ public void testTimeseriesIndexConventionPrefix() { indexConventionPrefix.getEntityAndAspectName("prefix_datasetusagestatisticsaspect_v1"), Optional.empty()); } + + @Test + public void testSchemaFieldDocumentId() { + assertEquals( + new IndexConventionImpl( + IndexConventionImpl.IndexConventionConfig.builder() + .prefix("") + .hashIdAlgo("") + .schemaFieldDocIdHashEnabled(true) + .build()) + .getEntityDocumentId( + UrnUtils.getUrn( + "urn:li:schemaField:(urn:li:dataset:(urn:li:dataPlatform:snowflake,economic_data.factor_income,PROD),year)")), + URLEncoder.encode( + String.format( + "urn:li:schemaField:(%s,%s)", + sha256Hex( + "urn:li:dataset:(urn:li:dataPlatform:snowflake,economic_data.factor_income,PROD)"), + sha256Hex("year")))); + } } diff --git a/smoke-test/tests/schema_fields/schema_evolution.py b/smoke-test/tests/schema_fields/schema_evolution.py new file mode 100644 index 0000000000000..256ae3c29ac04 --- /dev/null +++ b/smoke-test/tests/schema_fields/schema_evolution.py @@ -0,0 +1,230 @@ +import time +from enum import Enum + +import datahub.metadata.schema_classes as models +import pytest +from datahub.cli.cli_utils import get_aspects_for_entity +from datahub.emitter.mce_builder import make_dataset_urn, make_schema_field_urn +from datahub.emitter.mcp import MetadataChangeProposalWrapper +from datahub.ingestion.graph.client import DataHubGraph, get_default_graph +from tenacity import retry, stop_after_delay, wait_fixed + +from tests.utils import get_datahub_graph, ingest_file_via_rest, wait_for_writes_to_sync + +_MAX_DELAY_UNTIL_WRITES_VISIBLE_SECS = 30 +_ATTEMPT_RETRY_INTERVAL_SECS = 1 +large_dataset_urn = "urn:li:dataset:(urn:li:dataPlatform:looker,test-large-schema,PROD)" + + +class FieldPathStyle(Enum): + FLAT = "FLAT" + NESTED = "NESTED" + + +def _create_schema_with_fields( + entity_urn: str, + num_fields: int = 1, + field_path_style: FieldPathStyle = FieldPathStyle.FLAT, +) -> models.SchemaMetadataClass: + """ + A simple helper function to create a schema with a given number of fields. + The fields are created with the following naming convention: + - FLAT: field_0, field_1, field_2, ... + - NESTED: [version=2.0].[type=Address].parent_field.[type=string].field_0, + [version=2.0].[type=Address].parent_field.[type=string].field_1, ... + + TODO: Add support for more complex field types and descriptions beyond + strings. + """ + + schema = models.SchemaMetadataClass( + schemaName="my_schema", + platformSchema=models.OtherSchemaClass(rawSchema=""), + platform="urn:li:dataPlatform:bigquery", + version=0, + hash="", + fields=[ + models.SchemaFieldClass( + fieldPath=( + f"field_{i}" + if field_path_style == FieldPathStyle.FLAT + else f"[version=2.0].[type=Address].parent_field.[type=string].field_{i}" + ), + nativeDataType="STRING", + type=models.SchemaFieldDataTypeClass(type=models.StringTypeClass()), + description="", + nullable=True, + ) + for i in range(num_fields) + ], + ) + assert schema.validate() + return schema + + +@pytest.fixture(autouse=False) +def test_setup(): + """Fixture data""" + client = get_datahub_graph() + session = client._session + gms_host = client.config.server + + ingest_file_via_rest( + "tests/schema_fields/schema_field_side_effect_data.json" + ).config.run_id + + assert "schemaMetadata" in get_aspects_for_entity( + session, + gms_host, + entity_urn=large_dataset_urn, + aspects=["schemaMetadata"], + typed=False, + ) + + yield + # Deleting takes way too long for CI + # + # rollback_url = f"{gms_host}/runs?action=rollback" + # session.post( + # rollback_url, + # data=json.dumps( + # {"runId": ingested_dataset_run_id, "dryRun": False, "hardDelete": True} + # ), + # ) + # + # wait_for_writes_to_sync() + # + # assert "schemaMetadata" not in get_aspects_for_entity( + # entity_urn=large_dataset_urn, aspects=["schemaMetadata"], typed=False + # ) + + +@retry( + stop=stop_after_delay(_MAX_DELAY_UNTIL_WRITES_VISIBLE_SECS), + wait=wait_fixed(_ATTEMPT_RETRY_INTERVAL_SECS), + reraise=True, +) +def assert_schema_field_exists(graph: DataHubGraph, urn: str, field_path: str): + schema_field_urn = make_schema_field_urn(parent_urn=urn, field_path=field_path) + assert graph.exists(schema_field_urn) + status = graph.get_aspect(schema_field_urn, models.StatusClass) + assert status is None or status.removed is False + + +@retry( + stop=stop_after_delay(_MAX_DELAY_UNTIL_WRITES_VISIBLE_SECS), + wait=wait_fixed(_ATTEMPT_RETRY_INTERVAL_SECS), + reraise=True, +) +def assert_schema_field_soft_deleted(graph: DataHubGraph, urn: str, field_path: str): + schema_field_urn = make_schema_field_urn(parent_urn=urn, field_path=field_path) + status = graph.get_aspect(schema_field_urn, models.StatusClass) + assert status and status.removed is True + + +@pytest.mark.parametrize( + "field_path_style", + [ + FieldPathStyle.NESTED, + FieldPathStyle.FLAT, + ], +) +def test_schema_evolution_field_dropped(field_path_style: FieldPathStyle): + """ + Test that schema evolution works as expected + 1. Create a schema with 2 fields + 2. Sleep for 10 seconds + 3. Update the schema to have 1 field + 4. Sleep for 10 seconds + 5. Assert that the field_1 is removed + """ + + now = int(time.time()) + + urn = make_dataset_urn("bigquery", f"my_dataset.my_table.{now}") + print(urn) + with get_default_graph() as graph: + schema_with_2_fields = _create_schema_with_fields( + urn, 2, field_path_style=field_path_style + ) + field_names = [field.fieldPath for field in schema_with_2_fields.fields] + graph.emit( + MetadataChangeProposalWrapper( + entityUrn=urn, + aspect=schema_with_2_fields, + ) + ) + + for field_name in field_names: + print("Checking field: ", field_name) + assert_schema_field_exists(graph, urn, field_name) + + # Evolve the schema + schema_with_1_field = _create_schema_with_fields( + urn, 1, field_path_style=field_path_style + ) + new_field_name = schema_with_1_field.fields[0].fieldPath + + field_names.remove(new_field_name) + removed_field_name = field_names[0] + + graph.emit( + MetadataChangeProposalWrapper( + entityUrn=urn, + aspect=schema_with_1_field, + ) + ) + + assert_schema_field_exists(graph, urn, new_field_name) + assert_schema_field_soft_deleted(graph, urn, removed_field_name) + + +def test_soft_deleted_entity(): + """ + Test that we if there is a soft deleted dataset, its schema fields are + initialized with soft deleted status + 1. Create a schema with 2 fields + """ + + now = int(time.time()) + + urn = make_dataset_urn("bigquery", f"my_dataset.my_table.{now}") + print(urn) + with get_default_graph() as graph: + schema_with_2_fields = _create_schema_with_fields(urn, 2) + field_names = [field.fieldPath for field in schema_with_2_fields.fields] + graph.emit( + MetadataChangeProposalWrapper( + entityUrn=urn, + aspect=schema_with_2_fields, + ) + ) + + for field_name in field_names: + print("Checking field: ", field_name) + assert_schema_field_exists(graph, urn, field_name) + + # Soft delete the dataset + graph.emit( + MetadataChangeProposalWrapper( + entityUrn=urn, + aspect=models.StatusClass(removed=True), + ) + ) + + # Check that the fields are soft deleted + for field_name in field_names: + assert_schema_field_soft_deleted(graph, urn, field_name) + + +# Note: Does not execute deletes, too slow for CI +@pytest.mark.dependency() +def test_large_schema(test_setup): + wait_for_writes_to_sync() + with get_default_graph() as graph: + assert_schema_field_exists(graph, large_dataset_urn, "last_of.6800_cols") + + +if __name__ == "__main__": + test_schema_evolution_field_dropped() + test_soft_deleted_entity() diff --git a/smoke-test/tests/schema_fields/schema_field_side_effect_data.json b/smoke-test/tests/schema_fields/schema_field_side_effect_data.json new file mode 100644 index 0000000000000..8d40a1df1be5d --- /dev/null +++ b/smoke-test/tests/schema_fields/schema_field_side_effect_data.json @@ -0,0 +1,153085 @@ +[ + { + "auditHeader": null, + "proposedSnapshot": { + "com.linkedin.pegasus2avro.metadata.snapshot.DatasetSnapshot": { + "urn": "urn:li:dataset:(urn:li:dataPlatform:looker,test-large-schema,PROD)", + "aspects": [ + { + "com.linkedin.pegasus2avro.schema.SchemaMetadata": { + "primaryKeys": [], + "platformSchema": { + "com.linkedin.schema.OtherSchema": { + "rawSchema": "" + } + }, + "created": { + "actor": "urn:li:corpuser:unknown", + "time": 0 + }, + "lastModified": { + "actor": "urn:li:corpuser:unknown", + "time": 0 + }, + "fields": [ + { + "nullable": false, + "fieldPath": "m_c_i_c.e_a_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.e_a_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.e_a_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.e_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.e_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NullType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute30" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.e_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.e_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.e_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.e_a_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.e_a_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.e_a_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.e_a_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.e_a_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.e_a_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.e_a_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.e_a_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.e_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.f_c_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.f_c_i_c_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.f_c_i_c_r_1_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.f_c_i_c_r_2_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.f_c_i_c_r_3_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.f_c_i_c_r_4_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.f_c_i_c_r_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.f_i_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.f_i_i_c_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.f_i_i_c_r_1_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.f_i_i_c_r_2_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.f_i_i_c_r_3_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.f_i_i_c_r_4_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.f_i_i_c_r_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.f_o_c_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.f_o_c_r_1_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.f_o_c_r_2_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.f_o_c_r_3_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.f_o_c_r_4_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.f_o_c_r_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.f_a_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.f_q_t_a_c_q_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.h_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.h_a_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.h_a_e", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.h_a_l_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.h_a_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.h_a_w_l_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.h_b_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.h_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.h_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.h_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.h_s_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.h_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.i_c_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.i_c_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_h.e_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_h.c_f_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.i_a_t_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.i_a_t_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.i_c_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.i_c_i_c_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.i_c_i_c_r_1_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.i_c_i_c_r_2_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.i_c_i_c_r_3_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.i_c_i_c_r_4_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.i_c_i_c_r_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.i_i_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.i_i_i_c_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.i_i_i_c_r_1_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.i_i_i_c_r_2_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.i_i_i_c_r_3_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.i_i_i_c_r_4_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.i_i_i_c_r_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.i_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.i_c_t_a_c_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.i_c_r_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.i_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.i_c_i", + "description": " ", + "isPartOfKey": true, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.i_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.l", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.l_c_t_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.l_c_t_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.m_c_w_3_d_o_i_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.m_d_a_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.m_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.m_t_a_i_d_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "tier" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.m_t_d_a_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.o_c_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.o_c_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.o_a_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.o_a_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.o_a_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.o_a_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.o_a_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.o_a_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.o_a_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.o_a_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.o_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.o_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NullType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute30" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.o_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.o_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.o_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.o_a_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.o_a_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.o_a_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.o_a_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.o_a_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.o_a_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.o_a_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.o_a_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.s_c_i_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.s_c_i_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.v_t_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.v_t_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.w_l_c_t_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.w_l_c_t_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i.a_l", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i.e_a_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "m_c_i.e_a_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "m_c_i.e_a_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "m_c_i.e_a_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "m_c_i.e_a_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "m_c_i.e_a_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "m_c_i.e_a_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "m_c_i.e_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "m_c_i.e_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NullType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute30" + }, + { + "nullable": false, + "fieldPath": "m_c_i.e_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "m_c_i.e_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "m_c_i.e_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "m_c_i.e_a_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "m_c_i.e_a_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "m_c_i.e_a_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "m_c_i.e_a_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "m_c_i.e_a_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "m_c_i.e_a_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "m_c_i.e_a_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "m_c_i.e_a_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "m_c_i.f_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i.f_i_c_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i.f_i_c_r_1_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i.f_i_c_r_2_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i.f_i_c_r_3_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i.f_i_c_r_4_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i.f_i_c_r_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i.h_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_c_i.i_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i.i_i_c_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i.i_i_c_r_1_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i.i_i_c_r_2_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i.i_i_c_r_3_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i.i_i_c_r_4_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i.i_i_c_r_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i.i_c_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_a_f.i_c_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i.i_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i.i_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_a_f.i_i", + "description": "", + "isPartOfKey": true, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i.i_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i.i_o", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_c_i.i_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i.i_t_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i.i_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_c_i.m_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i.n_o_c_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_c_i.o_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i.o_a_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "m_c_i.o_a_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "m_c_i.o_a_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "m_c_i.o_a_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "m_c_i.o_a_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "m_c_i.o_a_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i.o_a_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "m_c_i.o_a_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "m_c_i.o_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "m_c_i.o_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NullType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute30" + }, + { + "nullable": false, + "fieldPath": "m_c_i.o_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "m_c_i.o_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "m_c_i.o_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "m_c_i.o_a_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "m_c_i.o_a_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "m_c_i.o_a_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "m_c_i.o_a_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "m_c_i.o_a_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "m_c_i.o_a_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "m_c_i.o_a_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "m_c_i.o_a_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "m_c_i.p_i_z_d_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_c_i.p_z_d_c_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_c_i.p_z_d_t_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_c_i.s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i.t_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_i.t_o", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_c_i.t_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_a_f.t_o_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_a_f.c_a_f", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_c_e.c_s_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_e.e_i", + "description": " ", + "isPartOfKey": true, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_e.e_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_e.i_c_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_e.i_c_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_e.i_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_e.i_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_e.l_m_i_f_i_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_e.m_i_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_e.o_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_e.o_a_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "m_c_e.o_a_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "m_c_e.o_a_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "m_c_e.o_a_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "m_c_e.o_a_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "m_c_e.o_a_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_e.o_a_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "m_c_e.o_a_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "m_c_e.o_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "m_c_e.o_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NullType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute30" + }, + { + "nullable": false, + "fieldPath": "m_c_e.o_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "m_c_e.o_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "m_c_e.o_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "m_c_e.o_a_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "m_c_e.o_a_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "m_c_e.o_a_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "m_c_e.o_a_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "m_c_e.o_a_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "m_c_e.o_a_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "m_c_e.o_a_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "m_c_e.o_a_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "m_c_e.s_c_i_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_e.t_i_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_e.t_o_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_e.z_t_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "a_b_v_m.a_m_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "a_b_v_m.a_q_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "a_b_v_m.c_r_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "a_b_v_m.c_r_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "a_b_v_m.f_s_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "a_b_v_m.m_e_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date" + }, + { + "nullable": false, + "fieldPath": "a_b_v_m.m_s_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date" + }, + { + "nullable": false, + "fieldPath": "a_b_v_m.t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "a_b_v_m.u_c_q_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "n_p._r", + "description": " ", + "isPartOfKey": true, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "n_p.a_D_E_D_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "n_p.a_D_E_D_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "n_p.a_D_E_D_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "n_p.a_D_E_D_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "n_p.a_D_E_D_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "n_p.a_e", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "n_p.a_i_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "n_p.a_N", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "n_p.a_p_n_3", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "n_p.a_p_n_6", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "n_p.a_p_n_9", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "n_p.a_S_D", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "n_p.a_s_d_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "n_p.A_G_o_T", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "n_p.A_G_w_1_w_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "n_p.A_G_w_2_w_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "n_p.A_D_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "n_p.A_D_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "n_p.A_D_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "n_p.A_D_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "n_p.A_D_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "n_p.C_E_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "n_p.C_E_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "n_p.C_E_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "n_p.C_E_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "n_p.C_E_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "n_p.C_S_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "n_p.C_S_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "n_p.C_S_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "n_p.C_S_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "n_p.C_S_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "n_p.C_T", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "n_p.C_W", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "n_p.D_o_A_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "n_p.D_o_A_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "n_p.D_o_A_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "n_p.D_o_A_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "n_p.D_o_A_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "n_p.d_n_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "duration_day" + }, + { + "nullable": false, + "fieldPath": "n_p.d_t_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "duration_day" + }, + { + "nullable": false, + "fieldPath": "n_p.G_D_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "n_p.G_D_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "n_p.G_D_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "n_p.G_D_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "n_p.G_D_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "n_p.I_A", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "n_p.L", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "n_p.L", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "n_p.m_n_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "duration_month" + }, + { + "nullable": false, + "fieldPath": "n_p.N_E_D_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "n_p.N_E_D_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "n_p.N_E_D_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "n_p.N_E_D_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "n_p.N_E_D_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "n_p.N_E_D_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "n_p.N_E_D_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "n_p.N_E_D_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "n_p.N_E_D_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "n_p.N_E_D_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "n_p.N_S_D_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "n_p.N_S_D_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "n_p.N_S_D_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "n_p.N_S_D_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "n_p.N_S_D_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "n_p.N_w_n_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "n_p.P_N_3_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "n_p.P_N_3_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "n_p.P_N_6_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "n_p.P_N_6_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "n_p.P_N_9_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "n_p.P_N_9_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "n_p.P_N_9_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "n_p.P_N_9_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "n_p.P_N_9_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "n_p.r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "n_p.s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "n_p.t_p_a_n_9", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "n_p.t_p_a_n_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "n_p.t_p_a_n_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "n_p.T_E", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "n_p.T_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "n_p.V", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "n_p.V_A", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "n_p.w_n_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "duration_week" + }, + { + "nullable": false, + "fieldPath": "n_p.w_t_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "duration_week" + }, + { + "nullable": false, + "fieldPath": "n_p.z_u_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "a_r_w_c.a_e", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "a_r_w_c.b", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "a_r_w_c.C_Q", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "a_r_w_c.c_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "a_r_w_c.c_a_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "a_r_w_c.c_a_d_o_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "a_r_w_c.c_a_d_o_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "a_r_w_c.c_a_d_o_w_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "a_r_w_c.c_a_d_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "a_r_w_c.c_a_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "a_r_w_c.c_a_h", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "a_r_w_c.c_a_h_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "a_r_w_c.c_a_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "a_r_w_c.c_a_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "a_r_w_c.c_a_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "a_r_w_c.c_a_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "a_r_w_c.c_a_q", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "a_r_w_c.c_a_q_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "a_r_w_c.c_a_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "a_r_w_c.c_a_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "a_r_w_c.c_a_t_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "a_r_w_c.c_a_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "a_r_w_c.c_a_w_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "a_r_w_c.c_a_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "a_r_w_c.e_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "a_r_w_c.l", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "a_r_w_c.m_b", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "a_r_w_c.o_c_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "a_r_w_c.p_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "a_r_w_c.r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "a_r_w_c.s_g", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "a_r_w_c.t_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "1_i_a_a.a_e", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "1_i_a_a.a_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "1_i_a_a.a_t_a_i_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "1_i_a_a.a_t_a_i_d_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "tier" + }, + { + "nullable": false, + "fieldPath": "1_i_a_a.a_t_a_i_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "1_i_a_a.a_t_a_i_m_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "tier" + }, + { + "nullable": false, + "fieldPath": "1_i_a_a.a_t_a_i_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "1_i_a_a.a_t_a_i_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "1_i_a_a.a_t_a_i_y_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "tier" + }, + { + "nullable": false, + "fieldPath": "1_i_a_a.B", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "1_i_e_q_d.b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "1_i_e_q_d.g_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "1_i_e_q_d.g_i", + "description": " ", + "isPartOfKey": true, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "1_i_e_q_d.g_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "1_i_a_a.l", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "1_i_e_q_d.m_f", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "1_i_e_q_d.o", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "1_i_e_q_d.c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "1_i_e_q_d.q_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "1_i_e_q_d.l", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "1_i_e_q_d.s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "1_i_a_a.s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "1_i_e_q_d.t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "1_i_e_q_d.t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "1_i_a_a.u_l_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "2_s_a_a.a_e", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "2_s_a_a.a_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "2_s_a_a.a_t_a_i_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "2_s_a_a.a_t_a_i_d_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "tier" + }, + { + "nullable": false, + "fieldPath": "2_s_a_a.a_t_a_i_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "2_s_a_a.a_t_a_i_m_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "tier" + }, + { + "nullable": false, + "fieldPath": "2_s_a_a.a_t_a_i_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "2_s_a_a.a_t_a_i_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "2_s_a_a.a_t_a_i_y_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "tier" + }, + { + "nullable": false, + "fieldPath": "2_s_a_a.B", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "2_s_e_q_d.b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "2_s_e_q_d.g_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "2_s_e_q_d.g_i", + "description": " ", + "isPartOfKey": true, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "2_s_e_q_d.g_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "2_s_a_a.l", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "2_s_e_q_d.m_f", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "2_s_e_q_d.o", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "2_s_e_q_d.c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "2_s_e_q_d.q_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "2_s_e_q_d.l", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "2_s_e_q_d.s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "2_s_a_a.s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "2_s_e_q_d.t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "2_s_e_q_d.t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "2_s_a_a.u_l_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "3_t_a_a.a_e", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "3_t_a_a.a_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "3_t_a_a.a_t_a_i_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "3_t_a_a.a_t_a_i_d_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "tier" + }, + { + "nullable": false, + "fieldPath": "3_t_a_a.a_t_a_i_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "3_t_a_a.a_t_a_i_m_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "tier" + }, + { + "nullable": false, + "fieldPath": "3_t_a_a.a_t_a_i_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "3_t_a_a.a_t_a_i_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "3_t_a_a.a_t_a_i_y_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "tier" + }, + { + "nullable": false, + "fieldPath": "3_t_a_a.B", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "3_t_e_q_d.b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "3_t_e_q_d.g_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "3_t_e_q_d.g_i", + "description": " ", + "isPartOfKey": true, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "3_t_e_q_d.g_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "3_t_a_a.l", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "3_t_e_q_d.m_f", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "3_t_e_q_d.o", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "3_t_e_q_d.c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "3_t_e_q_d.q_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "3_t_e_q_d.l", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "3_t_e_q_d.s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "3_t_a_a.s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "3_t_e_q_d.t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "3_t_e_q_d.t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "3_t_a_a.u_l_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "4_f_a_a.a_e", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "4_f_a_a.a_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "4_f_a_a.a_t_a_i_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "4_f_a_a.a_t_a_i_d_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "tier" + }, + { + "nullable": false, + "fieldPath": "4_f_a_a.a_t_a_i_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "4_f_a_a.a_t_a_i_m_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "tier" + }, + { + "nullable": false, + "fieldPath": "4_f_a_a.a_t_a_i_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "4_f_a_a.a_t_a_i_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "4_f_a_a.a_t_a_i_y_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "tier" + }, + { + "nullable": false, + "fieldPath": "4_f_a_a.B", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "4_f_e_q_d.b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "4_f_e_q_d.g_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "4_f_e_q_d.g_i", + "description": " ", + "isPartOfKey": true, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "4_f_e_q_d.g_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "4_f_a_a.l", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "4_f_e_q_d.m_f", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "4_f_e_q_d.o", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "4_f_e_q_d.c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "4_f_e_q_d.q_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "4_f_e_q_d.l", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "4_f_e_q_d.s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "4_f_a_a.s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "4_f_e_q_d.t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "4_f_e_q_d.t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "4_f_a_a.u_l_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "5_f_a_a.a_e", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "5_f_a_a.a_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "5_f_a_a.a_t_a_i_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "5_f_a_a.a_t_a_i_d_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "tier" + }, + { + "nullable": false, + "fieldPath": "5_f_a_a.a_t_a_i_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "5_f_a_a.a_t_a_i_m_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "tier" + }, + { + "nullable": false, + "fieldPath": "5_f_a_a.a_t_a_i_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "5_f_a_a.a_t_a_i_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "5_f_a_a.a_t_a_i_y_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "tier" + }, + { + "nullable": false, + "fieldPath": "5_f_a_a.B", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "5_f_e_q_d.b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "5_f_e_q_d.g_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "5_f_e_q_d.g_i", + "description": " ", + "isPartOfKey": true, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "5_f_e_q_d.g_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "5_f_a_a.l", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "5_f_e_q_d.m_f", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "5_f_e_q_d.o", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "5_f_e_q_d.c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "5_f_e_q_d.q_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "5_f_e_q_d.l", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "5_f_e_q_d.s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "5_f_a_a.s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "5_f_e_q_d.t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "5_f_e_q_d.t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "5_f_a_a.u_l_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_a_a.a_e", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_a_a.a_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_a_a.a_t_a_i_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "f_a_a.a_t_a_i_d_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "tier" + }, + { + "nullable": false, + "fieldPath": "f_a_a.a_t_a_i_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "f_a_a.a_t_a_i_m_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "tier" + }, + { + "nullable": false, + "fieldPath": "f_a_a.a_t_a_i_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "f_a_a.a_t_a_i_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "f_a_a.a_t_a_i_y_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "tier" + }, + { + "nullable": false, + "fieldPath": "f_a_a.B", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_e_q_d.b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_e_q_d.g_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_e_q_d.g_i", + "description": " ", + "isPartOfKey": true, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_e_q_d.g_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_a_a.l", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_e_q_d.m_f", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "f_e_q_d.o", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_e_q_d.c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_e_q_d.q_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_e_q_d.l", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_e_q_d.s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_a_a.s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_e_q_d.t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_e_q_d.t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_a_a.u_l_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "7_n_e_a_a.a_e", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "7_n_e_a_a.a_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "7_n_e_a_a.a_t_a_i_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "7_n_e_a_a.a_t_a_i_d_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "tier" + }, + { + "nullable": false, + "fieldPath": "7_n_e_a_a.a_t_a_i_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "7_n_e_a_a.a_t_a_i_m_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "tier" + }, + { + "nullable": false, + "fieldPath": "7_n_e_a_a.a_t_a_i_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "7_n_e_a_a.a_t_a_i_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "7_n_e_a_a.a_t_a_i_y_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "tier" + }, + { + "nullable": false, + "fieldPath": "7_n_e_a_a.B", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "7_n_e_q_d.b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "7_n_e_q_d.g_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "7_n_e_q_d.g_i", + "description": " ", + "isPartOfKey": true, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "7_n_e_q_d.g_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "7_n_e_a_a.l", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "7_n_e_q_d.m_f", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "7_n_e_q_d.o", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "7_n_e_q_d.c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "7_n_e_q_d.q_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "7_n_e_q_d.l", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "7_n_e_q_d.s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "7_n_e_a_a.s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "7_n_e_q_d.t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "7_n_e_q_d.t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "7_n_e_a_a.u_l_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "8_n_e_a_a.a_e", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "8_n_e_a_a.a_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "8_n_e_a_a.a_t_a_i_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "8_n_e_a_a.a_t_a_i_d_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "tier" + }, + { + "nullable": false, + "fieldPath": "8_n_e_a_a.a_t_a_i_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "8_n_e_a_a.a_t_a_i_m_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "tier" + }, + { + "nullable": false, + "fieldPath": "8_n_e_a_a.a_t_a_i_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "8_n_e_a_a.a_t_a_i_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "8_n_e_a_a.a_t_a_i_y_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "tier" + }, + { + "nullable": false, + "fieldPath": "8_n_e_a_a.B", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "8_n_e_q_d.b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "8_n_e_q_d.g_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "8_n_e_q_d.g_i", + "description": " ", + "isPartOfKey": true, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "8_n_e_q_d.g_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "8_n_e_a_a.l", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "8_n_e_q_d.m_f", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "8_n_e_q_d.o", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "8_n_e_q_d.c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "8_n_e_q_d.q_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "8_n_e_q_d.l", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "8_n_e_q_d.s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "8_n_e_a_a.s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "8_n_e_q_d.t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "8_n_e_q_d.t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "8_n_e_a_a.u_l_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "9_p_e_q_d.b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "9_p_e_q_d.g_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "9_p_e_q_d.g_i", + "description": " ", + "isPartOfKey": true, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "9_p_e_q_d.g_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "9_p_e_q_d.m_f", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "9_p_e_q_d.o", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "9_p_e_q_d.c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "9_p_e_q_d.q_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "9_p_e_q_d.l", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "9_p_e_q_d.s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "9_p_e_q_d.t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "9_p_e_q_d.t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "a_a_d_g_d.b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "a_a_d_g_d.c_a_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "a_a_d_g_d.c_a_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "a_a_d_g_d.c_a_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "a_a_d_g_d.c_a_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "a_a_d_g_d.c_a_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "a_a_d_g_d.c_a_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "a_a_d_g_d.c_a_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "a_a_d_g_d.c_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "a_a_d_g_d.c_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "a_a_d_g_d.c_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "a_a_d_g_d.c_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "a_a_d_g_d.c_a_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "a_a_d_g_d.c_a_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "a_a_d_g_d.c_a_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "a_a_d_g_d.c_a_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "a_a_d_g_d.c_a_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "a_a_d_g_d.c_a_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "a_a_d_g_d.c_a_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "a_a_d_g_d.c_a_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "a_a_d_g_d.d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "a_a_d_g_d.d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "a_a_d_g_d.d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "a_a_d_g_d.g_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "a_a_d_g_d.g_i", + "description": " ", + "isPartOfKey": true, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "a_a_d_g_d.g_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "a_a_d_g_d.l_t_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "a_a_d_g_d.l_t_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "a_a_d_g_d.l_t_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "a_a_d_g_d.l_t_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "a_a_d_g_d.l_t_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "a_a_d_g_d.l_t_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "a_a_d_g_d.l_t_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "a_a_d_g_d.l_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "a_a_d_g_d.l_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "a_a_d_g_d.l_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "a_a_d_g_d.l_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "a_a_d_g_d.l_t_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "a_a_d_g_d.l_t_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "a_a_d_g_d.l_t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "a_a_d_g_d.l_t_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "a_a_d_g_d.l_t_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "a_a_d_g_d.l_t_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "a_a_d_g_d.l_t_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "a_a_d_g_d.l_t_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "a_a_d_g_d.m_f", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "a_a_d_g_d.o", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "a_a_d_g_d.c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "a_a_d_g_d.q_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "a_a_d_g_d.l", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "a_a_d_g_d.s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "a_a_d_g_d.t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "a_a_d_g_d.t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "a_a_d.a_e", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "a_a_d.a_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "a_a_d.B", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "a_a_d.l", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "a_a_d.s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "a_a_d.a_e", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "a_a_d.a_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "a_a_d.a_t_a_i_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "a_a_d.a_t_a_i_d_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "tier" + }, + { + "nullable": false, + "fieldPath": "a_a_d.a_t_a_i_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "a_a_d.a_t_a_i_m_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "tier" + }, + { + "nullable": false, + "fieldPath": "a_a_d.a_t_a_i_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "a_a_d.a_t_a_i_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "a_a_d.a_t_a_i_y_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "tier" + }, + { + "nullable": false, + "fieldPath": "a_a_d.B", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "a_a_d.l", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "a_a_d.s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "a_a_d.u_l_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_r_t.i_c_r_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "c_r_t.t_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "c_r_t.i_c_r_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "c_r_t.t_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "c_r_c.a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_r_c.c_r_1_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_r_c.c_r_2_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_r_c.c_r_3_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_r_c.c_r_4_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_r_c.c_r_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_r_c.c_r_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_r_c.r", + "description": "", + "isPartOfKey": true, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_r_c.s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_r_c.x", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_c_l.a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "f_c_l.a_c_w_t_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "f_c_l.a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_c_l.a_f_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_c_l.a_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_c_l.a_l_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_c_l.a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_c_l.c_d_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "f_c_l.c_d_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "f_c_l.c_d_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "f_c_l.c_d_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "f_c_l.c_d_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "f_c_l.c_d_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "f_c_l.c_d_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "f_c_l.c_d_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "f_c_l.c_d_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "f_c_l.c_d_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "f_c_l.c_d_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "f_c_l.c_d_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "f_c_l.c_d_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "f_c_l.c_d_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "f_c_l.c_d_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "f_c_l.c_d_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "f_c_l.c_d_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "f_c_l.c_d_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "f_c_l.c_d_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "f_c_l.c_i", + "description": " ", + "isPartOfKey": true, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_c_l.c_t_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "f_c_l.c_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_c_l.c_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_c_l.c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_m.q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_c_l.c_t_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "f_c_l.c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_c_l.c_t_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "f_c_l.d_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_c_l.d_a_f_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_c_l.d_a_l_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_c_l.d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_c_l.d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_c_l.h_t_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "f_c_l.h_t_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "f_c_l.h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "f_c_l.l_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "f_c_l.m_t_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "f_c_l.q_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_c_l.q_c_w_t_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "f_c_l.q_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_c_l.q_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_c_l.q_o", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_c_l.q_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_c_l.q_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_c_l.q_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_c_l.q_w_t_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "f_c_l.r_t_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "f_c_l.s_l", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "f_c_l.s_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_c_l.s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_c_l.s_o_a_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "f_c_l.t_t_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "f_c_l.t_p_t_t_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "f_c_l.t_q_t_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "f_c_l.t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "f_c_l.z_t_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_s_g.a_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "c_o_c_s_i_f.c_f", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "i_s_g.i_v_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "i_s_g.i_v_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "i_s_g.i_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_s_g.m_f", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "i_s_g.m_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_s_g.m_m_i_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "i_s_g.m_s_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "i_s_g.m_u_a_l", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "i_s_g.p_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "i_s_g.p_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "i_s_g.p_s_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_s_g.r_s_o", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_s_g.s_g_c_a_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "i_s_g.s_g_c_a_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "i_s_g.s_g_c_a_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "i_s_g.s_g_c_a_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "i_s_g.s_g_c_a_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "i_s_g.s_g_c_a_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "i_s_g.s_g_c_a_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "i_s_g.s_g_c_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "i_s_g.s_g_c_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NullType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute30" + }, + { + "nullable": false, + "fieldPath": "i_s_g.s_g_c_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "i_s_g.s_g_c_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "i_s_g.s_g_c_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "i_s_g.s_g_c_a_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "i_s_g.s_g_c_a_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "i_s_g.s_g_c_a_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "i_s_g.s_g_c_a_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "i_s_g.s_g_c_a_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "i_s_g.s_g_c_a_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "i_s_g.s_g_c_a_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "i_s_g.s_g_c_a_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "i_s_g.s_g_s_a_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "i_s_g.s_g_s_a_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "i_s_g.s_g_s_a_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "i_s_g.s_g_s_a_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "i_s_g.s_g_s_a_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "i_s_g.s_g_s_a_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_s_g.s_g_s_a_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "i_s_g.s_g_s_a_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "i_s_g.s_g_s_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "i_s_g.s_g_s_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NullType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute30" + }, + { + "nullable": false, + "fieldPath": "i_s_g.s_g_s_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "i_s_g.s_g_s_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "i_s_g.s_g_s_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "i_s_g.s_g_s_a_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "i_s_g.s_g_s_a_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "i_s_g.s_g_s_a_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "i_s_g.s_g_s_a_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "i_s_g.s_g_s_a_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "i_s_g.s_g_s_a_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "i_s_g.s_g_s_a_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "i_s_g.s_g_s_a_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "i_s_g.t_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_o_c_s_i_f.t_i", + "description": "", + "isPartOfKey": true, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_r_t.i_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_r_t.m_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_r_t.t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_r_t.t_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_r_t.t_c_a_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "c_r_t.t_c_a_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "c_r_t.t_c_a_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "c_r_t.t_c_a_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "c_r_t.t_c_a_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "c_r_t.t_c_a_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "c_r_t.t_c_a_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "c_r_t.t_c_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "c_r_t.t_c_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NullType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute30" + }, + { + "nullable": false, + "fieldPath": "c_r_t.t_c_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "c_r_t.t_c_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "c_r_t.t_c_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "c_r_t.t_c_a_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "c_r_t.t_c_a_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "c_r_t.t_c_a_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "c_r_t.t_c_a_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "c_r_t.t_c_a_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "c_r_t.t_c_a_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "c_r_t.t_c_a_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "c_r_t.t_c_a_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "c_r_t.t_s_a_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "c_r_t.t_s_a_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "c_r_t.t_s_a_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "c_r_t.t_s_a_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "c_r_t.t_s_a_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "c_r_t.t_s_a_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "c_r_t.t_s_a_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "c_r_t.t_s_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "c_r_t.t_s_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NullType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute30" + }, + { + "nullable": false, + "fieldPath": "c_r_t.t_s_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "c_r_t.t_s_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "c_r_t.t_s_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "c_r_t.t_s_a_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "c_r_t.t_s_a_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "c_r_t.t_s_a_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "c_r_t.t_s_a_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "c_r_t.t_s_a_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "c_r_t.t_s_a_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "c_r_t.t_s_a_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "c_r_t.t_s_a_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "c_r_t.t_s_d_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_a_a.a_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_a_a.a_a_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_a_a.t_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_i_v_q.i_v_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_i_v_q.i_v_q_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_i_v_q.t_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_m_i.m_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_m_i.m_i_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_m_i.t_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_c_r.f_c_c_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_c_r.f_c_c_r_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_c_r.f_c_c_r_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_c_r.f_c_c_r_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_c_r.f_c_c_r_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_c_r.f_c_c_r_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_c_r.f_c_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_c_r.l_c_c_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_c_r.l_c_c_r_b_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_c_r.l_c_c_r_b_c_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_c_r.l_c_c_r_b_c_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_c_r.l_c_c_r_b_c_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_c_r.l_c_c_r_b_c_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_c_r.l_c_c_r_b_c_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_c_r.l_c_c_r_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_c_r.l_c_c_r_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_c_r.l_c_c_r_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_c_r.l_c_c_r_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_c_r.l_c_c_r_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_c_r.l_c_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_c_r.f_c_i_b_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_c_r.t_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_m_e.b_r_l", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_m_e.c_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_m_e.c_r_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_m_e.i_a_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_m_e.i_e_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "c_m_e.i_e_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "c_m_e.i_e_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "c_m_e.i_e_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "c_m_e.i_e_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "c_m_e.i_s_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "c_m_e.i_s_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "c_m_e.i_s_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "c_m_e.i_s_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "c_m_e.i_s_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "c_m_e.m_g_c_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "c_m_e.m_g_v_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "c_m_e.m_m_l", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_m_e.m_r_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_m_e.s_e_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "c_m_e.s_e_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "c_m_e.s_e_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "c_m_e.s_e_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "c_m_e.s_e_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "c_m_e.s_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_m_e.s_s_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "c_m_e.s_s_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "c_m_e.s_s_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "c_m_e.s_s_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "c_m_e.s_s_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "c_m_e.s_s_a_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_i.a_d_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_i.c_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_i.c_c_r_l_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_i.c_c_r_l_2", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_i.c_c_r_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_i.d_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_i.d_r_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_i.d_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_i.r_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_i.r_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_i.c_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_i.C_S_L", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_i.s_t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "c_i.z_t_i", + "description": " ", + "isPartOfKey": true, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_m_d.a_c_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_m_d.a_p_l", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_m_d.a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "c_m_d.a_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "tier" + }, + { + "nullable": false, + "fieldPath": "c_m_d.a_w_e", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "c_m_d.b_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "c_m_d.b_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "c_m_d.b_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "c_m_d.b_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "c_m_d.c_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_m_d.c_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "c_m_d.c_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "c_m_d.c_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "c_m_d.c_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "c_m_d.c_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "c_m_d.c_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "c_m_d.c_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "c_m_d.c_e", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_m_d.c_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_m_d.c_w_e", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_m_d.c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_m_d.c_c_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "c_m_d.c_c_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "c_m_d.c_c_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "c_m_d.c_c_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "c_m_d.c_c_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "c_m_d.c_c_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "c_m_d.c_c_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "c_m_d.c_c_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "c_m_d.c_c_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "c_m_d.c_c_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "c_m_d.c_a_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "c_m_d.c_a_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "c_m_d.c_a_q", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "c_m_d.c_a_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "c_m_d.c_a_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "c_m_d.c_a_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "c_m_d.c_a_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "c_m_d.c_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_m_d.c_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "c_m_d.c_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "c_m_d.c_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "c_m_d.c_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "c_m_d.c_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "c_m_d.c_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "c_m_d.c_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "c_m_d.d_f_e_t_s_s", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "c_m_d.e_d_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "c_m_d.e_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_m_d.e_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date" + }, + { + "nullable": false, + "fieldPath": "c_m_d.e_t_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "c_m_d.e_t_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "c_m_d.f_f_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "c_m_d.f_f_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "c_m_d.f_f_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "c_m_d.f_f_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "c_m_d.f_f_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "c_m_d.f_f_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "c_m_d.f_f_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "c_m_d.f_p_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "c_m_d.f_p_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "c_m_d.f_p_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "c_m_d.f_p_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "c_m_d.f_p_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "c_m_d.f_p_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "c_m_d.f_p_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "c_m_d.f_u_d_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "c_m_d.f_u_d_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "c_m_d.f_u_d_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "c_m_d.f_u_d_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "c_m_d.f_u_d_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "c_m_d.f_u_d_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "c_m_d.f_u_d_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "c_m_d.f_f_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_m_d.h_e", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_m_d.h_f_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_m_d.h_l_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_m_d.p_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_m_d.i_c_e", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "c_m_d.i_c_d_t_f", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "c_m_d.i_d_a_u", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "c_m_d.i_s", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "c_m_d.l_d_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "c_m_d.l_d_d_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "c_m_d.l_d_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_m_d.l_d_u", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_m_d.l_s_i_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_m_d.l_s_i_a_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "c_m_d.l_s_i_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "c_m_d.l_s_i_a_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "c_m_d.l_s_i_a_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "c_m_d.l_s_i_a_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "c_m_d.l_s_i_a_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "c_m_d.l_u_d_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "c_m_d.l_u_d_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "c_m_d.l_u_d_q", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "c_m_d.l_u_d_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "c_m_d.l_u_d_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "c_m_d.l_u_d_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "c_m_d.l_u_d_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "c_m_d.m_h_e", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_m_d.m_i", + "description": " ", + "isPartOfKey": true, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "c_m_d.m_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "c_m_d.m_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_m_d.m_f_f_u_t_u", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "c_m_d.o", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_m_d.p_f_o_b_f", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_m_d.p_p_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_m_d.r_a_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_m_d.r_b", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "c_m_d.r_b_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_m_d.s_o_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_m_d.s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_m_d.s_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "c_m_d.s_f", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_m_d.s_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "c_m_d.s_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "c_m_d.s_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "c_m_d.s_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "c_m_d.s_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "c_m_d.s_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "c_m_d.t_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_m_d.t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "c_m_d.u_a_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "c_m_d.u_a_m_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "c_m_d.u_a_m_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "c_m_d.u_a_m_q", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "c_m_d.u_a_m_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "c_m_d.u_a_m_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "c_m_d.u_a_m_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "c_m_d.u_a_m_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "c_m_d.u_a_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "c_m_d.u_a_q", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "c_m_d.u_a_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "c_m_d.u_a_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "c_m_d.u_a_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "c_m_d.u_a_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "c_m_d.i_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "c_c_t.a_i_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "c_c_t.i_c_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_c_t.i_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "c_c_t.l_c_e", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "c_c_t.p_i", + "description": "", + "isPartOfKey": true, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_c_t.q_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_c_t.t_f_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_c_t.t_t_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_c_t.t_a_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "c_c_t.t_a_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "c_c_t.t_a_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "c_c_t.t_a_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "c_c_t.t_a_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "c_c_t.t_a_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_c_t.t_a_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "c_c_t.t_a_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "c_c_t.t_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "c_c_t.t_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NullType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute30" + }, + { + "nullable": false, + "fieldPath": "c_c_t.t_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "c_c_t.t_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "c_c_t.t_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "c_c_t.t_a_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "c_c_t.t_a_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "c_c_t.t_a_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "c_c_t.t_a_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "c_c_t.t_a_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "c_c_t.t_a_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "c_c_t.t_a_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "c_c_t.t_a_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "c_c_t.t_f_f_a_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_c_t.t_f_f_a_e", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_c_t.t_f_f_a_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_c_t.t_f_f_a_l", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_c_t.t_f_f_a_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_c_t.t_f_f_a_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_c_t.t_f_f_a_u_l_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_c_t.t_f_f_q_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_c_t.t_f_f_q_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_c_t.t_f_f_q_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_c_t.t_f_f_q_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_c_t.t_f_f_q_l", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_c_t.t_f_f_q_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_c_t.t_f_f_q_o", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_c_t.t_f_f_q_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_c_t.t_f_f_q_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_c_t.t_f_f_q_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_c_t.t_f_t_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_c_t.t_t_t_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_c_t.t_t_i_a_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_c_t.t_t_i_a_e", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_c_t.t_t_i_a_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_c_t.t_t_i_a_l", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_c_t.t_t_i_a_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_c_t.t_t_i_a_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_c_t.t_t_i_q_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_c_t.t_t_i_q_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_c_t.t_t_i_q_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_c_t.t_t_i_q_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_c_t.t_t_i_q_l", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_c_t.t_t_i_q_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_c_t.t_t_i_q_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_c_t.t_t_i_q_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_c_t.t_t_i_q_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_c_t.t_t_i_q_o", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_f.c_f", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "c_f.e", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_f.r_e_d_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date" + }, + { + "nullable": false, + "fieldPath": "c_f.t_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "o_c_s_c._e_a_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "o_c_s_c._e_a_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "o_c_s_c._e_a_q", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "o_c_s_c._e_a_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "o_c_s_c._l_a_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "o_c_s_c._l_a_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "o_c_s_c._l_a_q", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "o_c_s_c._l_a_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "o_c_s_c.a_m_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "o_c_s_c.a_m_n_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "o_c_s_c.a_m_p", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "o_c_s_c.c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "o_c_s_c.c_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "o_c_s_c.c_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "o_c_s_c.c_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "o_c_s_c.c_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "o_c_s_c.l_s", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "o_c_s_c.r_s", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "o_c_s_c.t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "o_c_s_c.u_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "d_d_f.c_d_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "d_d_f.D_c_s_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "d_d_f.D_c_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "d_d_f.f_d_p_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "d_d_f.f_d_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "d_d_f.i_c_d_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "d_d_f.i_e_d_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "d_d_f.l_d_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "d_d_f.l_d_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "d_r_r.b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "d_z.c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "d_z.c_e_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "d_r_r.c_e_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "d_z.c_a", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date" + }, + { + "nullable": false, + "fieldPath": "d_z.c_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "d_r_r.c_a_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "d_r_r.c_a_d_o_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "d_r_r.c_a_d_o_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "d_r_r.c_a_d_o_w_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "d_r_r.c_a_d_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "d_r_r.c_a_h", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "d_r_r.c_a_h_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "d_r_r.c_a_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "d_r_r.c_a_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "d_r_r.c_a_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "d_r_r.c_a_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "d_r_r.c_a_q", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "d_r_r.c_a_q_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "d_r_r.c_a_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "d_r_r.c_a_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "d_r_r.c_a_t_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "d_r_r.c_a_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "d_r_r.c_a_w_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "d_r_r.c_a_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "d_r_r.c_d_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "d_z.d_f_r_l_s", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date" + }, + { + "nullable": false, + "fieldPath": "d_z.d_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "d_r_r.d_i", + "description": "", + "isPartOfKey": true, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "d_z.d_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "d_r_r.i_a_e", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "d_r_r.i_a_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "d_r_r.i_a_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "d_z.i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "d_z.m_r_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "d_z.m_r_a_c_a", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "d_z.p_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "d_z.p_c_d_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "d_z.p_c_d_d_o_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "d_z.p_c_d_d_o_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "d_z.p_c_d_d_o_w_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "d_z.p_c_d_d_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "d_z.p_c_d_h", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "d_z.p_c_d_h_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "d_z.p_c_d_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "d_z.p_c_d_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "d_z.p_c_d_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "d_z.p_c_d_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "d_z.p_c_d_q", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "d_z.p_c_d_q_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "d_z.p_c_d_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "d_z.p_c_d_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "d_z.p_c_d_t_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "d_z.p_c_d_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "d_z.p_c_d_w_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "d_z.p_c_d_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "d_z.p_c_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "d_z.r_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "d_r_r.r_f", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "d_r_r.r_p_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "d_z.r_e", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "d_z.s_d_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "d_z.s_d_r_a", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "d_z.t_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "d_r_r.t_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "e.e", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "e.e_v_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "e.e_v_d_o_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "e.e_v_d_o_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "e.e_v_d_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "e.e_v_h", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "e.e_v_h_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "e.e_v_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "e.e_v_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "e.e_v_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "e.e_v_q", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "e.e_v_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "e.e_v_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "e.e_v_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "e.e_v_w_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "e.e_v_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "e.p_k", + "description": "", + "isPartOfKey": true, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "e.u_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "e.v", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "e.v_o", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_s_f.f", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_s_f.h_c_c_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_s_f.h_i_a_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_s_f.h_m_e", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_s_f.h_o_d_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_s_f.h_s_t_i_5_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_s_f.i_c_i", + "description": " ", + "isPartOfKey": true, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_t_t.c_r_1_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_t_t.c_r_2_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_t_t.c_r_3_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_t_t.c_r_4_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_t_t.c_r_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_t_t.c_r_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_t_t.f_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_t_t.r", + "description": "", + "isPartOfKey": true, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_b_p.b_c_f_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_c_b_p.c_p_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_b_p.c_p_r_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_b_p.c_p_o", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_b_p.c_p_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_c_b_p.c_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_b_p.f_m_c_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_b_p.f_m_c_r_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_b_p.i_c_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_b_p.i_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_b_p.i_t_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_b_p.i_n_m_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_c_b_p.i_n_p_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_c_b_p.i_p_c_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_b_p.i_p_c_r_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_b_p.m_i_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_b_p.o_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_b_p.o_a_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "m_c_b_p.o_a_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "m_c_b_p.o_a_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "m_c_b_p.o_a_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "m_c_b_p.o_a_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "m_c_b_p.o_a_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_b_p.o_a_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "m_c_b_p.o_a_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "m_c_b_p.o_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "m_c_b_p.o_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NullType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute30" + }, + { + "nullable": false, + "fieldPath": "m_c_b_p.o_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "m_c_b_p.o_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "m_c_b_p.o_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "m_c_b_p.o_a_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "m_c_b_p.o_a_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "m_c_b_p.o_a_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "m_c_b_p.o_a_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "m_c_b_p.o_a_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "m_c_b_p.o_a_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "m_c_b_p.o_a_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "m_c_b_p.o_a_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "m_c_b_p.p_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_b_p.p_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_c_b_p.r_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_b_p.u_i", + "description": "", + "isPartOfKey": true, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "i_c_r.l_i_c_r_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_c_r.l_i_c_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_c_r.l_i_c_r_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_c_r.l_i_c_r_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_c_r.l_i_c_r_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_c_r.l_i_c_r_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_c_r.l_i_e_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_c_r.t_i", + "description": "", + "isPartOfKey": true, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_i_e.a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_i_e.a_l", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_i_e.c_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_i_e.c_r_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "m_i_e.c_r_s_s_f", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "m_i_e.c_t_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_i_e.c_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_i_e.d_1_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_i_e.d_2_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_i_e.e_c_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "m_i_e.e_c_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "m_i_e.e_c_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "m_i_e.e_c_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "m_i_e.e_c_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "m_i_e.e_c_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "m_i_e.e_c_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "m_i_e.e_c_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "m_i_e.e_c_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "m_i_e.e_c_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "m_i_e.e_c_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "m_i_e.e_i", + "description": " ", + "isPartOfKey": true, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_i_e.e_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_i_e.e_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_i_e.e_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_i_e.e_d_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_i_e.f_e", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_i_e.e", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_i_e.e_o_i_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_i_e.i_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_i_e.m_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_i_e.h_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_i_e.r_o", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_i_e.t_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_i_e.t_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_i_e.t_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_t.a_l", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_t.b", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_t.c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_t.c_h", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_t.c_l_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_t.c_l_v", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_t.c_p_s_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_t.c_s_e", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_t.c_s_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_t.c_s_v", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_t.c_u_a", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_t.d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_t.e", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_t.e_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_t.e_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_t.f_l", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_t.i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_t.i_m_p", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_t.i_e_t_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "i_t.i_e_t_d_o_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "i_t.i_e_t_d_o_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "i_t.i_e_t_d_o_w_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "i_t.i_e_t_d_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "i_t.i_e_t_h", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "i_t.i_e_t_h_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "i_t.i_e_t_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "i_t.i_e_t_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "i_t.i_e_t_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "i_t.i_e_t_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "i_t.i_e_t_q", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "i_t.i_e_t_q_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "i_t.i_e_t_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "i_t.i_e_t_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "i_t.i_e_t_t_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "i_t.i_e_t_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "i_t.i_e_t_w_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "i_t.i_e_t_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "i_t.o_t_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "i_t.o_t_d_o_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "i_t.o_t_d_o_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "i_t.o_t_d_o_w_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "i_t.o_t_d_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "i_t.o_t_h", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "i_t.o_t_h_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "i_t.o_t_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "i_t.o_t_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "i_t.o_t_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "i_t.o_t_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "i_t.o_t_q", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "i_t.o_t_q_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "i_t.o_t_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "i_t.o_t_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "i_t.o_t_t_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "i_t.o_t_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "i_t.o_t_w_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "i_t.o_t_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "i_t.p", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_t.r_a_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "i_t.r_a_d_o_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "i_t.r_a_d_o_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "i_t.r_a_d_o_w_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "i_t.r_a_d_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "i_t.r_a_h", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "i_t.r_a_h_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "i_t.r_a_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "i_t.r_a_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "i_t.r_a_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "i_t.r_a_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "i_t.r_a_q", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "i_t.r_a_q_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "i_t.r_a_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "i_t.r_a_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "i_t.r_a_t_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "i_t.r_a_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "i_t.r_a_w_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "i_t.r_a_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "i_t.r_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_t.s", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_t.s_a_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "i_t.s_a_d_o_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "i_t.s_a_d_o_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "i_t.s_a_d_o_w_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "i_t.s_a_d_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "i_t.s_a_h", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "i_t.s_a_h_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "i_t.s_a_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "i_t.s_a_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "i_t.s_a_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "i_t.s_a_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "i_t.s_a_q", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "i_t.s_a_q_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "i_t.s_a_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "i_t.s_a_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "i_t.s_a_t_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "i_t.s_a_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "i_t.s_a_w_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "i_t.s_a_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "i_t.s", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_t.t_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_t.t_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "i_t.t_d_o_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "i_t.t_d_o_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "i_t.t_d_o_w_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "i_t.t_d_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "i_t.t_h", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "i_t.t_h_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "i_t.t_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "i_t.t_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "i_t.t_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "i_t.t_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "i_t.t_q", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "i_t.t_q_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "i_t.t_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "i_t.t_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "i_t.t_t_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "i_t.t_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "i_t.t_w_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "i_t.t_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "i_t.t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_t.u_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_t.u_t_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "i_t.u_t_d_o_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "i_t.u_t_d_o_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "i_t.u_t_d_o_w_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "i_t.u_t_d_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "i_t.u_t_h", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "i_t.u_t_h_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "i_t.u_t_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "i_t.u_t_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "i_t.u_t_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "i_t.u_t_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "i_t.u_t_q", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "i_t.u_t_q_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "i_t.u_t_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "i_t.u_t_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "i_t.u_t_t_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "i_t.u_t_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "i_t.u_t_w_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "i_t.u_t_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t._f_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "i_d_t._f_s_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "i_d_t._f_s_d_o_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "i_d_t._f_s_d_o_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "i_d_t._f_s_d_o_w_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "i_d_t._f_s_d_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t._f_s_h", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "i_d_t._f_s_h_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "i_d_t._f_s_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "i_d_t._f_s_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "i_d_t._f_s_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "i_d_t._f_s_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "i_d_t._f_s_q", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "i_d_t._f_s_q_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t._f_s_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "i_d_t._f_s_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "i_d_t._f_s_t_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "i_d_t._f_s_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "i_d_t._f_s_w_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t._f_s_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.a", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "i_d_t.a_d_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "i_d_t.a_d_d_o_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "i_d_t.a_d_h", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "i_d_t.a_d_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NullType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute30" + }, + { + "nullable": false, + "fieldPath": "i_d_t.a_d_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "i_d_t.a_d_q", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "i_d_t.a_d_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "i_d_t.a_d_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "i_d_t.a_d_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "i_d_t.a_d_w_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.a_d_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.a_i_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_d_t.a_l_o_l_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_d_t.a", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "i_d_t.a_l", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_d_t.c_r_d_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "i_d_t.c_r_d_d_o_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "i_d_t.c_r_d_h", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "i_d_t.c_r_d_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NullType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute30" + }, + { + "nullable": false, + "fieldPath": "i_d_t.c_r_d_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "i_d_t.c_r_d_q", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "i_d_t.c_r_d_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "i_d_t.c_r_d_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "i_d_t.c_r_d_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "i_d_t.c_r_d_w_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.c_r_d_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.c_a_o_t_t_s_d_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "i_d_t.c_a_o_t_t_s_d_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "i_d_t.c_a_o_t_t_s_d_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "i_d_t.c_a_o_t_t_s_d_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NullType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute30" + }, + { + "nullable": false, + "fieldPath": "i_d_t.c_a_o_t_t_s_d_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "i_d_t.c_a_o_t_t_s_d_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "i_d_t.c_a_o_t_t_s_d_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "i_d_t.c_a_o_t_t_s_d_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "i_d_t.c_a_o_t_t_s_d_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "i_d_t.c_a_o_t_t_s_d_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.c_a_o_t_t_s_d_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.c_a_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_d_t.c_a_i_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "i_d_t.c_e_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_d_t.c_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_d_t.c_a_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "i_d_t.c_a_d_o_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "i_d_t.c_a_g", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_d_t.c_a_h", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "i_d_t.c_a_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NullType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute30" + }, + { + "nullable": false, + "fieldPath": "i_d_t.c_a_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "i_d_t.c_a_q", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "i_d_t.c_a_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "i_d_t.c_a_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "i_d_t.c_a_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "i_d_t.c_a_w_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.c_a_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.c_i_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_d_t.c_o_d_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "i_d_t.c_o_d_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "i_d_t.c_o_d_g", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_d_t.c_o_d_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "i_d_t.c_o_d_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NullType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute30" + }, + { + "nullable": false, + "fieldPath": "i_d_t.c_o_d_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "i_d_t.c_o_d_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "i_d_t.c_o_d_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "i_d_t.c_o_d_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "i_d_t.c_o_d_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "i_d_t.c_o_d_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.c_o_d_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.c_a_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "i_d_t.c_a_d_o_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "i_d_t.c_a_d_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.c_a_g", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_d_t.c_a_h", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "i_d_t.c_a_i_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_d_t.c_a_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NullType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute30" + }, + { + "nullable": false, + "fieldPath": "i_d_t.c_a_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "i_d_t.c_a_q", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "i_d_t.c_a_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "i_d_t.c_a_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "i_d_t.c_a_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "i_d_t.c_a_w_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.c_a_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.d_o_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "tier" + }, + { + "nullable": false, + "fieldPath": "i_d_t.d_t_f", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "i_d_t.d_t_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "duration_day" + }, + { + "nullable": false, + "fieldPath": "i_d_t.d_t_c_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "i_d_t.d_t_c_a_o_t_t_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "i_d_t.d_t_d_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "i_d_t.d_t_i_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "i_d_t.d_t_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "duration_day" + }, + { + "nullable": false, + "fieldPath": "i_d_t.d_t_p_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "duration_day" + }, + { + "nullable": false, + "fieldPath": "i_d_t.d_t_p_r_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "tier" + }, + { + "nullable": false, + "fieldPath": "i_d_t.d_t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "duration_day" + }, + { + "nullable": false, + "fieldPath": "i_d_t.d_t_r_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "tier" + }, + { + "nullable": false, + "fieldPath": "i_d_t.d_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "i_d_t.d_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_d_t.d_f_s_a_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "i_d_t.d_f_s_a_d_o_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "i_d_t.d_f_s_a_h", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "i_d_t.d_f_s_a_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NullType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute30" + }, + { + "nullable": false, + "fieldPath": "i_d_t.d_f_s_a_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "i_d_t.d_f_s_a_q", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "i_d_t.d_f_s_a_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "i_d_t.d_f_s_a_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "i_d_t.d_f_s_a_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "i_d_t.d_f_s_a_w_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.d_f_s_a_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.d_n_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "i_d_t.d_n_d_o_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "i_d_t.d_n_g", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_d_t.d_n_h", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "i_d_t.d_n_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NullType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute30" + }, + { + "nullable": false, + "fieldPath": "i_d_t.d_n_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "i_d_t.d_n_q", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "i_d_t.d_n_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "i_d_t.d_n_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "i_d_t.d_n_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "i_d_t.d_n_w_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.d_n_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.d_s_f", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_d_t.d_s_f_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_d_t.d_s_s", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_d_t.d_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_d_t.E_A_C_T_R_B_m_D_L", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_d_t.e_c_i_a_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "i_d_t.e_c_i_a_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "i_d_t.e_c_i_a_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "i_d_t.e_c_i_a_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "i_d_t.e_c_i_a_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.e_c_i_a_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "i_d_t.e_c_i_a_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "i_d_t.e_c_i_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "i_d_t.e_c_i_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "i_d_t.e_c_i_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "i_d_t.e_c_i_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "i_d_t.e_c_i_a_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "i_d_t.e_c_i_a_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.e_c_i_a_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "i_d_t.e_c_i_a_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "i_d_t.e_c_i_a_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "i_d_t.e_c_i_a_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "i_d_t.e_c_i_a_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.e_c_i_a_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.e_p_i_a_d_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "i_d_t.e_p_i_a_d_d_o_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "i_d_t.e_p_i_a_d_d_o_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "i_d_t.e_p_i_a_d_d_o_w_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "i_d_t.e_p_i_a_d_d_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.e_p_i_a_d_h", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "i_d_t.e_p_i_a_d_h_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "i_d_t.e_p_i_a_d_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "i_d_t.e_p_i_a_d_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "i_d_t.e_p_i_a_d_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "i_d_t.e_p_i_a_d_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "i_d_t.e_p_i_a_d_q", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "i_d_t.e_p_i_a_d_q_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.e_p_i_a_d_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "i_d_t.e_p_i_a_d_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "i_d_t.e_p_i_a_d_t_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "i_d_t.e_p_i_a_d_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "i_d_t.e_p_i_a_d_w_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.e_p_i_a_d_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.e_p_r_a_d_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "i_d_t.e_p_r_a_d_d_o_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "i_d_t.e_p_r_a_d_d_o_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "i_d_t.e_p_r_a_d_d_o_w_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "i_d_t.e_p_r_a_d_d_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.e_p_r_a_d_h", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "i_d_t.e_p_r_a_d_h_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "i_d_t.e_p_r_a_d_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "i_d_t.e_p_r_a_d_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "i_d_t.e_p_r_a_d_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "i_d_t.e_p_r_a_d_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "i_d_t.e_p_r_a_d_q", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "i_d_t.e_p_r_a_d_q_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.e_p_r_a_d_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "i_d_t.e_p_r_a_d_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "i_d_t.e_p_r_a_d_t_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "i_d_t.e_p_r_a_d_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "i_d_t.e_p_r_a_d_w_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.e_p_r_a_d_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.e_a_a_c_d_l", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_d_t.e_a_c_d_s_d_l", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_d_t.e_a_c_t_s_d_l", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_d_t.e_a_d_l", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_d_t.e_a_f_d_d_l", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_d_t.e_a_s_t_u_l_d_l", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_d_t.e_a_s_t_u_l_e_d_l", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_d_t.f_a", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "i_d_t.f_r_l_d_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "i_d_t.f_r_l_d_d_o_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "i_d_t.f_r_l_d_d_o_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "i_d_t.f_r_l_d_d_o_w_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "i_d_t.f_r_l_d_d_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.f_r_l_d_h", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "i_d_t.f_r_l_d_h_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "i_d_t.f_r_l_d_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "i_d_t.f_r_l_d_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "i_d_t.f_r_l_d_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "i_d_t.f_r_l_d_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "i_d_t.f_r_l_d_q", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "i_d_t.f_r_l_d_q_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.f_r_l_d_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "i_d_t.f_r_l_d_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "i_d_t.f_r_l_d_t_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "i_d_t.f_r_l_d_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "i_d_t.f_r_l_d_w_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.f_r_l_d_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.f_d_d_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "i_d_t.f_d_d_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "i_d_t.f_d_d_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "i_d_t.f_d_d_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "i_d_t.f_d_d_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.f_d_d_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "i_d_t.f_d_d_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "i_d_t.f_d_d_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "i_d_t.f_d_d_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "i_d_t.f_d_d_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "i_d_t.f_d_d_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "i_d_t.f_d_d_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "i_d_t.f_d_d_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.f_d_d_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "i_d_t.f_d_d_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "i_d_t.f_d_d_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "i_d_t.f_d_d_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "i_d_t.f_d_d_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.f_d_d_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.f_d_g", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_d_t.f_a_a_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "i_d_t.f_a_a_d_g", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_d_t.f_a_a_d_o_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "i_d_t.f_a_a_h", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "i_d_t.f_a_a_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NullType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute30" + }, + { + "nullable": false, + "fieldPath": "i_d_t.f_a_a_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "i_d_t.f_a_a_q", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "i_d_t.f_a_a_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "i_d_t.f_a_a_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "i_d_t.f_a_a_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "i_d_t.f_a_a_w_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.f_a_a_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.f_r_d_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "i_d_t.f_r_d_d_o_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "i_d_t.f_r_d_d_o_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "i_d_t.f_r_d_d_o_w_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "i_d_t.f_r_d_d_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.f_r_d_h", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "i_d_t.f_r_d_h_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "i_d_t.f_r_d_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "i_d_t.f_r_d_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "i_d_t.f_r_d_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "i_d_t.f_r_d_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "i_d_t.f_r_d_q", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "i_d_t.f_r_d_q_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.f_r_d_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "i_d_t.f_r_d_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "i_d_t.f_r_d_t_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "i_d_t.f_r_d_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "i_d_t.f_r_d_w_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.f_r_d_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.h_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_d_t.h_t_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "duration_hour" + }, + { + "nullable": false, + "fieldPath": "i_d_t.h_t_a_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "tier" + }, + { + "nullable": false, + "fieldPath": "i_d_t.h_t_i_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "i_d_t.h_t_i_d_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "tier" + }, + { + "nullable": false, + "fieldPath": "i_d_t.h_t_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "duration_hour" + }, + { + "nullable": false, + "fieldPath": "i_d_t.h_t_p_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "tier" + }, + { + "nullable": false, + "fieldPath": "i_d_t.h_t_p_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "duration_hour" + }, + { + "nullable": false, + "fieldPath": "i_d_t.h_t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "duration_hour" + }, + { + "nullable": false, + "fieldPath": "i_d_t.i", + "description": "", + "isPartOfKey": true, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_d_t.i_d_a_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "i_d_t.i_d_a_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "i_d_t.i_d_a_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "i_d_t.i_d_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NullType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute30" + }, + { + "nullable": false, + "fieldPath": "i_d_t.i_d_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "i_d_t.i_d_a_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "i_d_t.i_d_a_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "i_d_t.i_d_a_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "i_d_t.i_d_a_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "i_d_t.i_d_a_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.i_d_a_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.i_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_d_t.i_h_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "i_d_t.i_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "i_d_t.l_r_d_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "i_d_t.l_r_d_d_o_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "i_d_t.l_r_d_d_o_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "i_d_t.l_r_d_d_o_w_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "i_d_t.l_r_d_d_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.l_r_d_h", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "i_d_t.l_r_d_h_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "i_d_t.l_r_d_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "i_d_t.l_r_d_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "i_d_t.l_r_d_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "i_d_t.l_r_d_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "i_d_t.l_r_d_q", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "i_d_t.l_r_d_q_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.l_r_d_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "i_d_t.l_r_d_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "i_d_t.l_r_d_t_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "i_d_t.l_r_d_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "i_d_t.l_r_d_w_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.l_r_d_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.l_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_d_t.m_e_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_d_t.m_f_f_e_a_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "i_d_t.m_f_f_e_a_d_o_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "i_d_t.m_f_f_e_a_h", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "i_d_t.m_f_f_e_a_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NullType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute30" + }, + { + "nullable": false, + "fieldPath": "i_d_t.m_f_f_e_a_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "i_d_t.m_f_f_e_a_q", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "i_d_t.m_f_f_e_a_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "i_d_t.m_f_f_e_a_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "i_d_t.m_f_f_e_a_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "i_d_t.m_f_f_e_a_w_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.m_f_f_e_a_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.m_g_a_c_p", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_d_t.m_g_c_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_d_t.m_z_p_u", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_d_t.m_t_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "duration_minute" + }, + { + "nullable": false, + "fieldPath": "i_d_t.n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_d_t.o_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_m_f", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_n_a_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_n_a_d_g", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_n_a_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_n_a_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_n_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NullType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute30" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_n_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_n_a_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_n_a_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_n_a_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_n_a_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_n_a_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_n_a_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_c_d_a_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_c_d_a_d_o_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_c_d_a_h", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_c_d_a_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NullType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute30" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_c_d_a_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_c_d_a_q", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_c_d_a_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_c_d_a_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_c_d_a_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_c_d_a_w_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_c_d_a_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_c_e_s", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_c_e_a_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_c_e_a_d_o_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_c_e_a_h", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_c_e_a_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NullType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute30" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_c_e_a_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_c_e_a_q", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_c_e_a_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_c_e_a_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_c_e_a_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_c_e_a_w_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_c_e_a_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_c_l_d_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_c_l_d_d_o_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_c_l_d_d_o_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_c_l_d_d_o_w_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_c_l_d_d_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_c_l_d_h", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_c_l_d_h_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_c_l_d_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_c_l_d_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_c_l_d_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_c_l_d_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_c_l_d_q", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_c_l_d_q_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_c_l_d_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_c_l_d_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_c_l_d_t_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_c_l_d_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_c_l_d_w_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_c_l_d_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_d_a_g", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_e", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_i_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_i_a_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_i_a_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_i_a_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_i_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NullType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute30" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_i_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_i_a_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_i_a_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_i_a_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_i_a_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_i_a_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_i_a_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_r_a", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_r_a_d_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_r_a_d_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_r_a_d_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_r_a_d_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_r_a_d_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_r_a_d_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_r_a_d_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_r_a_d_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_r_a_d_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_r_a_d_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_r_a_d_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_r_a_d_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_r_a_d_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_r_a_d_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_r_a_d_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_r_a_d_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_r_a_d_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_r_a_d_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.p_r_a_d_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.R_B", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_d_t.r_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_d_t.r_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "i_d_t.r_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_d_t.r_v", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_d_t.r_d_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_d_t.r_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_d_t.r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_d_t.r_d_a_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "i_d_t.r_d_a_d_o_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "i_d_t.r_d_a_g", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_d_t.r_d_a_h", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "i_d_t.r_d_a_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NullType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute30" + }, + { + "nullable": false, + "fieldPath": "i_d_t.r_d_a_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "i_d_t.r_d_a_q", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "i_d_t.r_d_a_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "i_d_t.r_d_a_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "i_d_t.r_d_a_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "i_d_t.r_d_a_w_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.r_d_a_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.r_b_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "i_d_t.s_d_a_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "i_d_t.s_d_a_d_o_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "i_d_t.s_d_a_h", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "i_d_t.s_d_a_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NullType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute30" + }, + { + "nullable": false, + "fieldPath": "i_d_t.s_d_a_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "i_d_t.s_d_a_q", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "i_d_t.s_d_a_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "i_d_t.s_d_a_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "i_d_t.s_d_a_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "i_d_t.s_d_a_w_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.s_d_a_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.s", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_d_t.s_d_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "i_d_t.s_d_d_o_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "i_d_t.s_d_h", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "i_d_t.s_d_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NullType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute30" + }, + { + "nullable": false, + "fieldPath": "i_d_t.s_d_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "i_d_t.s_d_q", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "i_d_t.s_d_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "i_d_t.s_d_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "i_d_t.s_d_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "i_d_t.s_d_w_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.s_d_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.t_t_a_i_h_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "i_d_t.t_t_a_i_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "i_d_t.t_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "i_d_t.u_a_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "i_d_t.u_a_d_o_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "i_d_t.u_a_h", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "i_d_t.u_a_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NullType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute30" + }, + { + "nullable": false, + "fieldPath": "i_d_t.u_a_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "i_d_t.u_a_q", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "i_d_t.u_a_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "i_d_t.u_a_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "i_d_t.u_a_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "i_d_t.u_a_w_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.u_a_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "i_d_t.u_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "i_d_t.v_f_r_a", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "l_c.a_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "l_c.a_c_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c.a_c_r_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c.a_c_r_2_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c.a_c_r_3_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c.a_c_r_4_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c.a_c_r_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c.a_t_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_c.c_s_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_c.c_s_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c.e_t_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_c.e_t_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c.e_a_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "l_c.e_a_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "l_c.e_a_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "l_c.e_a_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "l_c.e_a_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "l_c.e_a_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "l_c.e_a_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "l_c.e_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "l_c.e_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NullType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute30" + }, + { + "nullable": false, + "fieldPath": "l_c.e_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "l_c.e_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "l_c.e_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "l_c.e_a_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "l_c.e_a_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "l_c.e_a_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "l_c.e_a_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "l_c.e_a_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "l_c.e_a_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "l_c.e_a_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "l_c.e_a_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "l_c.e_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c.f_c_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c.f_c_i_c_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c.f_c_i_c_r_1_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c.f_c_i_c_r_2_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c.f_c_i_c_r_3_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c.f_c_i_c_r_4_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c.f_c_i_c_r_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c.f_i_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c.f_i_i_c_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c.f_i_i_c_r_1_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c.f_i_i_c_r_2_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c.f_i_i_c_r_3_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c.f_i_i_c_r_4_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c.f_i_i_c_r_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c.f_o_c_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c.f_o_c_r_1_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c.f_o_c_r_2_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c.f_o_c_r_3_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c.f_o_c_r_4_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c.f_o_c_r_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c.f_a_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c.f_q_t_a_c_q_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "l_c.h_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "l_c.h_a_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "l_c.h_a_e", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "l_c.h_a_l_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "l_c.h_a_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "l_c.h_a_w_l_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "l_c.h_b_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "l_c.h_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "l_c.h_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "l_c.h_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "l_c.h_s_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "l_c.h_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "l_c.i_c_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_c.i_c_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c.i_a_t_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_c.i_a_t_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c.i_c_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c.i_c_i_c_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c.i_c_i_c_r_1_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c.i_c_i_c_r_2_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c.i_c_i_c_r_3_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c.i_c_i_c_r_4_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c.i_c_i_c_r_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c.i_i_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c.i_i_i_c_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c.i_i_i_c_r_1_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c.i_i_i_c_r_2_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c.i_i_i_c_r_3_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c.i_i_i_c_r_4_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c.i_i_i_c_r_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c.i_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c.i_c_t_a_c_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "l_c.i_c_r_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "l_c.i_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "l_c.i_c_i", + "description": " ", + "isPartOfKey": true, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c.i_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_c.l", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "l_c.l_c_t_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_c.l_c_t_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c.m_c_w_3_d_o_i_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "l_c.m_d_a_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "l_c.m_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c.m_t_a_i_d_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "tier" + }, + { + "nullable": false, + "fieldPath": "l_c.m_t_d_a_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_c.o_c_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_c.o_c_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c.o_a_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "l_c.o_a_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "l_c.o_a_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "l_c.o_a_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "l_c.o_a_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "l_c.o_a_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c.o_a_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "l_c.o_a_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "l_c.o_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "l_c.o_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NullType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute30" + }, + { + "nullable": false, + "fieldPath": "l_c.o_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "l_c.o_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "l_c.o_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "l_c.o_a_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "l_c.o_a_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "l_c.o_a_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "l_c.o_a_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "l_c.o_a_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "l_c.o_a_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "l_c.o_a_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "l_c.o_a_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "l_c.s_c_i_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_c.s_c_i_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c.v_t_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_c.v_t_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c.w_l_c_t_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_c.w_l_c_t_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_s_d.c_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_s_d.c_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_s_d.C_l_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_s_d.c_t_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_s_d.d_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_s_d.d_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_s_d.d_r_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_s_d.e_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_s_d.e_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_s_d.f_s_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_s_d.f_s_t_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "l_s_d.f_s_t_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "l_s_d.f_s_t_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "l_s_d.f_s_t_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "l_s_d.f_s_t_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "l_s_d.f_s_t_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "l_s_d.f_s_t_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "l_s_d.f_s_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "l_s_d.f_s_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "l_s_d.f_s_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "l_s_d.f_s_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "l_s_d.f_s_t_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "l_s_d.f_s_t_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "l_s_d.f_s_t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "l_s_d.f_s_t_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "l_s_d.f_s_t_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "l_s_d.f_s_t_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "l_s_d.f_s_t_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "l_s_d.f_s_t_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "l_s_d.f_s_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_s_d.i", + "description": " ", + "isPartOfKey": true, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_s_d.i_c_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_s_d.r_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_s_d.s_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_s_d.s_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_s_d.s_s_r_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_s_d.s_a_t_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_s_d.s_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "l_s_d.s_r_a_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "l_s_d.s_r_a_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "l_s_d.s_r_a_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "l_s_d.s_r_a_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "l_s_d.s_r_a_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "l_s_d.s_r_a_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_s_d.s_r_a_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "l_s_d.s_r_a_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "l_s_d.s_r_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "l_s_d.s_r_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NullType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute30" + }, + { + "nullable": false, + "fieldPath": "l_s_d.s_r_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "l_s_d.s_r_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "l_s_d.s_r_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "l_s_d.s_r_a_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "l_s_d.s_r_a_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "l_s_d.s_r_a_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "l_s_d.s_r_a_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "l_s_d.s_r_a_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "l_s_d.s_r_a_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "l_s_d.s_r_a_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "l_s_d.s_r_a_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "l_s_d.s_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "l_s_d.s_s_a_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "l_s_d.s_s_a_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "l_s_d.s_s_a_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "l_s_d.s_s_a_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "l_s_d.s_s_a_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "l_s_d.s_s_a_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_s_d.s_s_a_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "l_s_d.s_s_a_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "l_s_d.s_s_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "l_s_d.s_s_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NullType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute30" + }, + { + "nullable": false, + "fieldPath": "l_s_d.s_s_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "l_s_d.s_s_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "l_s_d.s_s_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "l_s_d.s_s_a_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "l_s_d.s_s_a_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "l_s_d.s_s_a_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "l_s_d.s_s_a_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "l_s_d.s_s_a_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "l_s_d.s_s_a_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "l_s_d.s_s_a_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "l_s_d.s_s_a_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "l_s_d.v_f", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_s_d.a_b_f_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_s_d.s_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_l_f.a_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_l_f.a_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_l_f.a_d_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_l_f.a_d_p", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_l_f.a", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_l_f.e_v", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_l_f.e_l_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_l_f.f_p_s_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date" + }, + { + "nullable": false, + "fieldPath": "l_l_f.f_i_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_l_f.i_a_e", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "l_l_f.i_c_r_e", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "l_l_f.i_f_l", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "l_l_f.i_f_l_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_l_f.l_c_o_a_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "l_l_f.l_c_o_a_d_o_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "l_l_f.l_c_o_a_d_o_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "l_l_f.l_c_o_a_d_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "l_l_f.l_c_o_a_h", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "l_l_f.l_c_o_a_h_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "l_l_f.l_c_o_a_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "l_l_f.l_c_o_a_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "l_l_f.l_c_o_a_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "l_l_f.l_c_o_a_q", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "l_l_f.l_c_o_a_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "l_l_f.l_c_o_a_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "l_l_f.l_c_o_a_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "l_l_f.l_c_o_a_w_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "l_l_f.l_c_o_a_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "l_l_f.l_c_a_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "l_l_f.l_c_a_d_o_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "l_l_f.l_c_a_d_o_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "l_l_f.l_c_a_d_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "l_l_f.l_c_a_h", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "l_l_f.l_c_a_h_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "l_l_f.l_c_a_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "l_l_f.l_c_a_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "l_l_f.l_c_a_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "l_l_f.l_c_a_q", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "l_l_f.l_c_a_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "l_l_f.l_c_a_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "l_l_f.l_c_a_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "l_l_f.l_c_a_w_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "l_l_f.l_c_a_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "l_l_f.l_i", + "description": "", + "isPartOfKey": true, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_l_f.l_p_o_a_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "l_l_f.l_p_o_a_d_o_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "l_l_f.l_p_o_a_d_o_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "l_l_f.l_p_o_a_d_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "l_l_f.l_p_o_a_h", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "l_l_f.l_p_o_a_h_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "l_l_f.l_p_o_a_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "l_l_f.l_p_o_a_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "l_l_f.l_p_o_a_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "l_l_f.l_p_o_a_q", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "l_l_f.l_p_o_a_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "l_l_f.l_p_o_a_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "l_l_f.l_p_o_a_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "l_l_f.l_p_o_a_w_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "l_l_f.l_p_o_a_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "l_l_f.l_p_s", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_l_f.l_s", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_l_f.t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_l_f.m_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_l_f.p_o_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_l_f.p_o_t_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_l_f.p_s", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_l_f.p_s_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_l_f.p_s_d_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_l_f.p", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_l_f.r_i_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_l_f.l_i_s", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_l_f.t_o", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_l_f.t_o_b", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_l_f.t_p", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_l_f.u_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.a_s_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.a_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.c_m_i_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.c_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.c_v_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.c_a_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.c_a_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.c_a_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.c_a_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.c_a_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.c_a_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.c_a_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.c_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.c_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.c_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.c_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.c_a_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.c_a_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.c_a_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.c_a_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.c_a_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.c_a_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.c_a_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.c_a_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.c_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.d_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.g_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.i", + "description": " ", + "isPartOfKey": true, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.l_t_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.l_t_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.l_t_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.l_t_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.l_t_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.l_t_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.l_t_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.l_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.l_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.l_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.l_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.l_t_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.l_t_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.l_t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.l_t_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.l_t_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.l_t_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.l_t_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.l_t_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.o_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.o", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.u_a_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.u_a_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.u_a_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.u_a_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.u_a_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.u_a_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.u_a_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.u_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.u_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.u_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.u_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.u_a_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.u_a_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.u_a_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.u_a_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.u_a_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.u_a_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.u_a_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.u_a_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "l_c_c_r.a_e", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c_c_r.a_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c_c_r.C_R_A_I", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c_c_r.C_R_A_T_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "l_c_c_r.C_R_A_T_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "l_c_c_r.C_R_A_T_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "l_c_c_r.C_R_A_T_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "l_c_c_r.C_R_A_T_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "l_c_c_r.C_R_A_T_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "l_c_c_r.C_R_A_T_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "l_c_c_r.C_R_A_T_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "l_c_c_r.C_R_A_T_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "l_c_c_r.C_R_A_T_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "l_c_c_r.C_R_A_T_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "l_c_c_r.C_R_A_T_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "l_c_c_r.C_R_C", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c_c_r.C_R_I", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_c_c_r.T_I", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_c_s.a_e", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c_s.a_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c_s.a_j_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c_s.a_j_t_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "l_c_s.a_j_t_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "l_c_s.a_j_t_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "l_c_s.a_j_t_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "l_c_s.a_j_t_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "l_c_s.a_j_t_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "l_c_s.a_j_t_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "l_c_s.a_j_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "l_c_s.a_j_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NullType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute30" + }, + { + "nullable": false, + "fieldPath": "l_c_s.a_j_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "l_c_s.a_j_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "l_c_s.a_j_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "l_c_s.a_j_t_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "l_c_s.a_j_t_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "l_c_s.a_j_t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "l_c_s.a_j_t_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_second" + }, + { + "nullable": false, + "fieldPath": "l_c_s.a_j_t_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "l_c_s.a_j_t_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "l_c_s.a_j_t_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "l_c_s.a_j_t_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "l_c_s.a_j_t_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "l_c_s.c_p_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c_s.c_s_s", + "description": " ", + "isPartOfKey": true, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c_s.c_s_w_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "l_c_s.c_s_w_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "l_c_s.c_s_w_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "l_c_s.m_a_C", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "l_c_s.m_g_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "l_c_s.m_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c_s.n_o_a_m_s_w_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_c_s.n_o_a_m_w_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_c_s.n_o_h_m_s_w_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_c_s.n_o_h_m_w_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_c_s.n_o_m_m_s_w_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_c_s.n_o_m_m_w_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_c_s.n_o_m_m_w_s_a_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_c_s.n_o_m_w_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_c_s.q_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c_s.r_o_p_w_e_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c_s.s_e_t_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "l_c_s.s_e_t_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "l_c_s.s_e_t_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "l_c_s.s_e_t_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "l_c_s.s_e_t_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "l_c_s.s_e_t_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "l_c_s.s_e_t_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "l_c_s.s_e_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "l_c_s.s_e_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "l_c_s.s_e_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "l_c_s.s_e_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "l_c_s.s_e_t_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "l_c_s.s_e_t_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "l_c_s.s_e_t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "l_c_s.s_e_t_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "l_c_s.s_e_t_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "l_c_s.s_e_t_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "l_c_s.s_e_t_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "l_c_s.s_e_t_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "l_c_s.s_i_e", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "l_c_s.s_i_i_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "l_c_s.s_s_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "l_c_s.s_s_t_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "l_c_s.s_s_t_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "l_c_s.s_s_t_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "l_c_s.s_s_t_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "l_c_s.s_s_t_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "l_c_s.s_s_t_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "l_c_s.s_s_t_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "l_c_s.s_s_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "l_c_s.s_s_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NullType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute30" + }, + { + "nullable": false, + "fieldPath": "l_c_s.s_s_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "l_c_s.s_s_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "l_c_s.s_s_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "l_c_s.s_s_t_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "l_c_s.s_s_t_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "l_c_s.s_s_t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "l_c_s.s_s_t_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_second" + }, + { + "nullable": false, + "fieldPath": "l_c_s.s_s_t_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "l_c_s.s_s_t_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "l_c_s.s_s_t_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "l_c_s.s_s_t_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "l_c_s.s_s_t_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "l_c_s.s_w_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "l_c_s.s_w_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "l_c_s.t_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_c_s.t_s_i_i_i_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_c_s.t_s_i_q_i_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_c_s.t_s_i_w_u_i_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_c_s.t_m_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "l_c_s.t_t_a_s_w_f_m_r_i_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_c_s.t_t_m_s_w_f_a_r_i_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_c_s.w_t_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_c_s.w_u_i_t_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "l_c_s.w_u_i_t_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "l_c_s.w_u_i_t_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "l_c_s.w_u_i_t_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "l_c_s.w_u_i_t_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "l_c_s.w_u_i_t_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "l_c_s.w_u_i_t_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "l_c_s.w_u_i_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "l_c_s.w_u_i_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "l_c_s.w_u_i_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "l_c_s.w_u_i_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "l_c_s.w_u_i_t_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "l_c_s.w_u_i_t_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "l_c_s.w_u_i_t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "l_c_s.w_u_i_t_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "l_c_s.w_u_i_t_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "l_c_s.w_u_i_t_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "l_c_s.w_u_i_t_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "l_c_s.w_u_i_t_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "z_m.a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_m.a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_m.a_s_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_m.a_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_m.c_m_i_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "z_m.c_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_m.c_v_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_m.c_a_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "z_m.c_a_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "z_m.c_a_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "z_m.c_a_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "z_m.c_a_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "z_m.c_a_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "z_m.c_a_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "z_m.c_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "z_m.c_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "z_m.c_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "z_m.c_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "z_m.c_a_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "z_m.c_a_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "z_m.c_a_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "z_m.c_a_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "z_m.c_a_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "z_m.c_a_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "z_m.c_a_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "z_m.c_a_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "z_m.c_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_m.d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_m.d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_m.d_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_m.g_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_m.i", + "description": " ", + "isPartOfKey": true, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_m.l_t_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "z_m.l_t_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "z_m.l_t_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "z_m.l_t_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "z_m.l_t_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "z_m.l_t_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "z_m.l_t_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "z_m.l_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "z_m.l_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "z_m.l_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "z_m.l_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "z_m.l_t_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "z_m.l_t_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "z_m.l_t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "z_m.l_t_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "z_m.l_t_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "z_m.l_t_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "z_m.l_t_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "z_m.l_t_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "z_m.m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_m.o_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "z_m.o", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "z_m.p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_m.p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_m.r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_m.s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_m.t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_m.u_a_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "z_m.u_a_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "z_m.u_a_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "z_m.u_a_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "z_m.u_a_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "z_m.u_a_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "z_m.u_a_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "z_m.u_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "z_m.u_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "z_m.u_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "z_m.u_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "z_m.u_a_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "z_m.u_a_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "z_m.u_a_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "z_m.u_a_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "z_m.u_a_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "z_m.u_a_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "z_m.u_a_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "z_m.u_a_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "z_m_u.a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "z_m_u.a_e", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_m_u.a_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_m_u.a_t_a_c_d_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "tier" + }, + { + "nullable": false, + "fieldPath": "z_m_u.a_t_a_c_m_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "tier" + }, + { + "nullable": false, + "fieldPath": "z_m_u.a_t_a_c_y_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "tier" + }, + { + "nullable": false, + "fieldPath": "z_m_u.a_t_a_i_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_m_u.a_t_a_i_d_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "tier" + }, + { + "nullable": false, + "fieldPath": "z_m_u.a_t_a_i_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_m_u.a_t_a_i_m_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "tier" + }, + { + "nullable": false, + "fieldPath": "z_m_u.a_t_a_i_m_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "tier" + }, + { + "nullable": false, + "fieldPath": "z_m_u.a_t_a_i_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_m_u.a_t_a_i_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_m_u.a_t_a_i_y_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "tier" + }, + { + "nullable": false, + "fieldPath": "z_m_u.a_t_m_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "tier" + }, + { + "nullable": false, + "fieldPath": "z_m_u.a_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_m_u.a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_m.a_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_m_u.B", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_m.c_a_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "z_m_u.c_a_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "z_t_m.c_a_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "z_m_u.c_a_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "z_t_m.c_a_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "z_m_u.c_a_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "z_t_m.c_a_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "z_m_u.c_a_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "z_t_m.c_a_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "z_m_u.c_a_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_m.c_a_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_m.c_a_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "z_m_u.c_a_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "z_t_m.c_a_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "z_m_u.c_a_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "z_t_m.c_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "z_m_u.c_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "z_t_m.c_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "z_m_u.c_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "z_t_m.c_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "z_m_u.c_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "z_t_m.c_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "z_m_u.c_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "z_t_m.c_a_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "z_m_u.c_a_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "z_t_m.c_a_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "z_m_u.c_a_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_m.c_a_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "z_m_u.c_a_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "z_t_m.c_a_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "z_m_u.c_a_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "z_t_m.c_a_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "z_m_u.c_a_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "z_t_m.c_a_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "z_m_u.c_a_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "z_t_m.c_a_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "z_m_u.c_a_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_m.c_a_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "z_m_u.c_a_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "z_m_u.c_r_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_m_u.d_g_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_m.i", + "description": " ", + "isPartOfKey": true, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_m_u.l_l_a_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "z_m_u.l_l_a_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "z_m_u.l_l_a_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "z_m_u.l_l_a_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "z_m_u.l_l_a_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "z_m_u.l_l_a_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "z_m_u.l_l_a_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "z_m_u.l_l_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "z_m_u.l_l_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "z_m_u.l_l_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "z_m_u.l_l_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "z_m_u.l_l_a_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "z_m_u.l_l_a_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "z_m_u.l_l_a_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "z_m_u.l_l_a_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "z_m_u.l_l_a_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "z_m_u.l_l_a_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "z_m_u.l_l_a_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "z_m_u.l_l_a_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "z_t_m.l_t_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "z_m_u.l_t_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "z_t_m.l_t_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "z_m_u.l_t_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "z_t_m.l_t_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "z_m_u.l_t_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "z_t_m.l_t_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "z_m_u.l_t_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "z_t_m.l_t_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "z_m_u.l_t_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_m.l_t_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "z_m_u.l_t_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "z_t_m.l_t_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "z_m_u.l_t_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "z_t_m.l_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "z_m_u.l_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "z_t_m.l_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "z_m_u.l_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "z_t_m.l_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "z_m_u.l_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "z_t_m.l_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "z_m_u.l_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "z_t_m.l_t_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "z_m_u.l_t_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "z_t_m.l_t_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "z_m_u.l_t_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_m.l_t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "z_m_u.l_t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "z_t_m.l_t_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "z_m_u.l_t_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "z_t_m.l_t_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "z_m_u.l_t_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "z_t_m.l_t_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "z_m_u.l_t_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "z_t_m.l_t_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "z_m_u.l_t_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_m.l_t_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "z_m_u.l_t_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "z_m_u.l", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_m_u.l_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_m.m_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_m.m_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_m.m_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_m_u.o_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_m_u.r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_m_u.r_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_m_u.s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_m_u.s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_m_u.t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_m.t_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_m_u.t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_m_u.t_z", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_m_u.u", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_m_u.u_a_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "z_m_u.u_a_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "z_m_u.u_a_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "z_m_u.u_a_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "z_m_u.u_a_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "z_m_u.u_a_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "z_m_u.u_a_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "z_m_u.u_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "z_m_u.u_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "z_m_u.u_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "z_m_u.u_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "z_m_u.u_a_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "z_m_u.u_a_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "z_m_u.u_a_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "z_m_u.u_a_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "z_m_u.u_a_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "z_m_u.u_a_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "z_m_u.u_a_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "z_m_u.u_a_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "z_m_u.u_l_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_m_u.v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_m_u.z_u_i", + "description": " ", + "isPartOfKey": true, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_b_s.a_a_i_c_w_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_b_s.a_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_b_s.c_b_v_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_b_s.c_f_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_b_s.C_R_l_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_b_s.C_R_l_2", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_b_s.C_R_l_3", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_b_s.C_R_l_4", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_b_s.c_t_e_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_b_s.d_f_c_s_t_n_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_b_s.d_f_l_s_t_c_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_b_s.d_c_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "tier" + }, + { + "nullable": false, + "fieldPath": "m_b_s.d_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_b_s.d_s_t_o_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_b_s.f_i_i_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_b_s.f_i_o_s_t_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_b_s.f_m_c_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_b_s.f_m_i_i_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_b_s.f_m_i_i_c_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_b_s.f_m_t_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_b_s.f_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_b_s.f_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_b_s.f_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_b_s.f_v_r_d_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_b_s.f_v_r_d_t_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_b_s.i_i_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_b_s.i_d_t_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_b_s.i_f_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_b_s.i_i_t_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_b_s.i_m_p_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_b_s.i_t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_b_s.L_m_c_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_b_s.l_s_g_o_d_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_b_s.l_s_g_s_d_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_b_s.l_d_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_b_s.m_c_r_l", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_b_s.m_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_b_s.m_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_b_s.m_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_b_s.m_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_b_s.m_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_b_s.N_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_b_s.n_s_s_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "m_b_s.n_s_s_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "m_b_s.n_s_s_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "m_b_s.n_s_s_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "m_b_s.n_s_s_e_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_b_s.n_s_s_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "m_b_s.n_s_s_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "m_b_s.n_s_s_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "m_b_s.n_s_s_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "m_b_s.n_s_s_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "m_b_s.n_s_s_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "m_b_s.n_s_s_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "m_b_s.q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_b_s.r_s_f_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_b_s.r_s_f_m_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_b_s.s_e_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "m_b_s.s_e_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "m_b_s.s_e_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "m_b_s.s_e_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "m_b_s.s_e_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "m_b_s.s_e_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "m_b_s.s_e_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "m_b_s.s_e_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "m_b_s.s_e_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "m_b_s.s_e_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "m_b_s.s_e_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "m_b_s.s_e_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "m_b_s.s_e_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "m_b_s.s_e_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_b_s.s_f_e_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_b_s.s_f_i_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_b_s.s_f_i_c_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_b_s.s_f_i_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_b_s.s_f_i_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_b_s.s_f_m_e_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_b_s.s_f_m_i_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_b_s.s_f_m_i_c_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_b_s.s_f_m_i_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_b_s.s_f_m_i_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_b_s.s_i", + "description": " ", + "isPartOfKey": true, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_b_s.m_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_b_s.m_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_b_s.M_N_P", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_b_s.s_s_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "m_b_s.s_s_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "m_b_s.s_s_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "m_b_s.s_s_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "m_b_s.s_s_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "m_b_s.s_s_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "m_b_s.s_s_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "m_b_s.s_s_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "m_b_s.s_s_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "m_b_s.s_s_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "m_b_s.s_s_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "m_b_s.s_s_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "m_b_s.s_s_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "m_b_s.s_s_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "m_b_s.s_t_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_b_s.s_u_m_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_b_s.t_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "tier" + }, + { + "nullable": false, + "fieldPath": "m_b_s.t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_b_s.t_r_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m.a_c_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m.a_p_l", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m.a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m.a_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "tier" + }, + { + "nullable": false, + "fieldPath": "m.a_w_e", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m.c_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m.c_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "m.c_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "m.c_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "m.c_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "m.c_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "m.c_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "m.c_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "m.c_e", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m.c_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m.c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m.c_c_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "m.c_c_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "m.c_c_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "m.c_c_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "m.c_c_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "m.c_c_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "m.c_c_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "m.c_c_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "m.c_c_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "m.c_c_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "m.c_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m.c_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "m.c_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "m.c_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "m.c_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "m.c_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "m.c_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "m.c_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "m.d_f_e_t_s_s", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m.e_d_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "m.e_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m.e_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date" + }, + { + "nullable": false, + "fieldPath": "m.e_t_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "m.e_t_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "m.f_f_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "m.f_f_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "m.f_f_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "m.f_f_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "m.f_f_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "m.f_f_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "m.f_f_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "m.f_p_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "m.f_p_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "m.f_p_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "m.f_p_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "m.f_p_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "m.f_p_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "m.f_p_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "m.f_u_d_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "m.f_u_d_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "m.f_u_d_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "m.f_u_d_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "m.f_u_d_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "m.f_u_d_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "m.f_u_d_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "m.f_f_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m.h_e", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m.h_f_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m.h_l_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m.p_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m.i_c_e", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m.i_c_d_t_f", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m.i_d_a_u", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m.i_s", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m.l_d_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m.l_d_d_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "m.l_d_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m.l_d_u", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m.l_u_d_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "m.l_u_d_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "m.l_u_d_q", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "m.l_u_d_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "m.l_u_d_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "m.l_u_d_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "m.l_u_d_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "m.m_h_e", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m.m_i", + "description": " ", + "isPartOfKey": true, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m.m_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m.m_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m.m_f_f_u_t_u", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m.o", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m.p_f_o_b_f", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m.p_p_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m.r_a_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m.r_b", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m.s_o_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m.s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m.s_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "m.s_f", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m.s_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "m.s_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "m.s_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "m.s_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "m.s_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "m.s_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "m.t_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m.t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m.u_a_m_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "m.u_a_m_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "m.u_a_m_q", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "m.u_a_m_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "m.u_a_m_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "m.u_a_m_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "m.u_a_m_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "m.i_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "d_u.a_h", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "d_u.d_o_b_h", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "d_u.d_c_t_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "d_u.d_c_t_d_o_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "d_u.d_c_t_d_o_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "d_u.d_c_t_d_o_w_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "d_u.d_c_t_d_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "d_u.d_c_t_h", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "d_u.d_c_t_h_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "d_u.d_c_t_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "d_u.d_c_t_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "d_u.d_c_t_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "d_u.d_c_t_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "d_u.d_c_t_q", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "d_u.d_c_t_q_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "d_u.d_c_t_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "d_u.d_c_t_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "d_u.d_c_t_t_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "d_u.d_c_t_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "d_u.d_c_t_w_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "d_u.d_c_t_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "d_u.d_u_t_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "d_u.d_u_t_d_o_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "d_u.d_u_t_d_o_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "d_u.d_u_t_d_o_w_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "d_u.d_u_t_d_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "d_u.d_u_t_h", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "d_u.d_u_t_h_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "d_u.d_u_t_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "d_u.d_u_t_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "d_u.d_u_t_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "d_u.d_u_t_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "d_u.d_u_t_q", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "d_u.d_u_t_q_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "d_u.d_u_t_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "d_u.d_u_t_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "d_u.d_u_t_t_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "d_u.d_u_t_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "d_u.d_u_t_w_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "d_u.d_u_t_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "d_u.e_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "d_u.e_h", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "d_u.e_f", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "d_u.e_s_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date" + }, + { + "nullable": false, + "fieldPath": "d_u.e_i_t_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "d_u.e_i_t_d_o_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "d_u.e_i_t_d_o_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "d_u.e_i_t_d_o_w_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "d_u.e_i_t_d_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "d_u.e_i_t_h", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "d_u.e_i_t_h_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "d_u.e_i_t_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "d_u.e_i_t_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "d_u.e_i_t_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "d_u.e_i_t_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "d_u.e_i_t_q", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "d_u.e_i_t_q_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "d_u.e_i_t_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "d_u.e_i_t_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "d_u.e_i_t_t_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "d_u.e_i_t_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "d_u.e_i_t_w_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "d_u.e_i_t_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "d_u.f_n_h", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "d_u.l_n_h", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "d_u.p_f", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "d_u.p_h", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "d_u.p_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "d_u.r_b", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "d_u.r_b_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "d_u.s_o_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "d_u.u_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "d_u.u_i_h", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "d_u.u_s", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "d_u.u", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_i_c.A_M_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_i_c.a_i_h_o_p_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_i_c.a_i_m_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_i_c.a_i_m_b_a_e_v", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_i_c.a_i_m_b_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_i_c.a_i_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_i_c.a_i_o_m_b", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_i_c.a_i_p_f_p_s", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_i_c.a_i_p_m_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_i_c.a_i_p_m_d_i_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_i_c.a_i_p_m_b_p", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_i_c.a_i_p_m_b_p_s", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_i_c.a_i_p_o_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_i_c.a_i_p_p_h_f_p", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_i_c.a_i_p_p_h_n_p", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_i_c.a_i_p_p_i_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_i_c.a_i_p_v", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_i_c.a_i_r_b_a_e_v", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_i_c.a_i_r_b_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_i_c.a_i_r_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_i_c.a_i_r_p_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_i_c.a_i_s_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_i_c.a_i_v_g_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_i_c.a_h_o_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_i_c.a_o_i_m_m_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_i_c.a_d_1_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_i_c.a_d_2_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_i_c.a_d_2_m_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_i_c.a_d_2_m_c_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_i_c.a_c_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_i_c.a_d_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_i_c.a_f_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_i_c.a_l", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_i_c.a_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_i_c.a_s_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_i_c.a_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_i_c.a_i_q_o_l_i_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_i_c.a_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_i_c.B_m_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_i_c.c_d_s", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_i_c.c_i", + "description": " ", + "isPartOfKey": true, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_i_c.c_t_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_i_c.C_M_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_i_c.c_f_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_i_c.C_R_l_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_i_c.C_R_l_2", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_i_c.C_R_l_3", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_i_c.C_R_l_4", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_i_c.c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_i_c.D_M_M_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_i_c.d_t_a", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_i_c.E_I_P_M_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_i_c.e_a_c_v", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_i_c.e_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_i_c.F_M_c_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_i_c.F_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_i_c.F_P_S", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_i_c.h_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_i_c.i_a", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_i_c.i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_i_c.i_n_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_i_c.i_c_e_d_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_i_c.i_c_s_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_i_c.i_c_w_d_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_i_c.i_c_i_v", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_i_c.i_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_i_c.L_M_c_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_i_c.L_M_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_i_c.m_i_p_s", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_i_c.m_c_r_l", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_i_c.m_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_i_c.m_i_i_z", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_i_c.m_d_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_i_c.n_o_e_i_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_i_c.P_L_M_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_i_c.P_F_M_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_i_c.R_M_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_i_c.R_M_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_i_c.S_E", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_i_c.S_I", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_i_c.S_V", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_i_c.S_A_M_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_i_c.s_s_f_w_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_i_c.s_s_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_i_c.S_M_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_i_c.T_R_M_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_i_c.t_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_i_c.T_M_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_i_c.t_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_i_c.t_o", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_i_c.t_c_r_a_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "m_i_c.t_c_r_a_d_o_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "m_i_c.t_c_r_a_d_o_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "m_i_c.t_c_r_a_h_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "m_i_c.t_c_r_a_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "m_i_c.t_c_r_a_q", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "m_i_c.t_c_r_a_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "m_i_c.t_c_r_a_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "m_i_c.t_c_r_a_t_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "m_i_c.t_c_r_a_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "m_i_c.t_c_r_a_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "m_i_c.t_c_r_m_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "m_i_c.t_c_r_m_d_o_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "m_i_c.t_c_r_m_d_o_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "m_i_c.t_c_r_m_h", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "m_i_c.t_c_r_m_h_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "m_i_c.t_c_r_m_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "m_i_c.t_c_r_m_q", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "m_i_c.t_c_r_m_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "m_i_c.t_c_r_m_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "m_i_c.t_c_r_m_t_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "m_i_c.t_c_r_m_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "m_i_c.t_c_r_m_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "m_i_c.t_i_e_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "m_i_c.t_i_e_d_o_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "m_i_c.t_i_e_d_o_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "m_i_c.t_i_e_h", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "m_i_c.t_i_e_h_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "m_i_c.t_i_e_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "m_i_c.t_i_e_q", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "m_i_c.t_i_e_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "m_i_c.t_i_e_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "m_i_c.t_i_e_t_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "m_i_c.t_i_e_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "m_i_c.t_i_e_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "m_i_c.t_i_s_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "m_i_c.t_i_s_d_o_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "m_i_c.t_i_s_d_o_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "m_i_c.t_i_s_h", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "m_i_c.t_i_s_h_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "m_i_c.t_i_s_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "m_i_c.t_i_s_q", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "m_i_c.t_i_s_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "m_i_c.t_i_s_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "m_i_c.t_i_s_t_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "m_i_c.t_i_s_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "m_i_c.t_i_s_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "m_i_c.v_i_f_a_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_i_c.W_A_M_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_i_c.z_f", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_i_c.c_f", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "o_m_s.b_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "o_m_s.c_m_l_9_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "o_m_s.s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "o_m_s.s_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "o_m_s.t_c_l_9_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "o_m_s.t_r_l_9_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "o_m_s.u_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "q_n_n.n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "q_n_n.n_i", + "description": "", + "isPartOfKey": true, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "q_n_n.n_s", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "q_n_n.z_t_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_p_d.a_s", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_p_d.d_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "s_p_d.d_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "s_p_d.d_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "s_p_d.d_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "s_p_d.d_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "s_p_d.d_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "s_p_d.d_w_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "s_p_d.d_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "s_p_d.d_h_p_s", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "s_p_d.m_d", + "description": "", + "isPartOfKey": true, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date" + }, + { + "nullable": false, + "fieldPath": "s_p_d.n_a_p_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_C_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_C_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_C_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_C_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_C_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_C_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_C_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_C_2", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_C_3", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_C_4", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_C_5", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_C_6", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_C_7", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_C_8", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_C_9", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_D_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_D_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_D_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_D_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_D_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_D_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_D_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_D_2", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_D_3", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_D_4", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_D_5", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_D_6", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_D_7", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_D_8", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_D_9", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_F_D_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_F_D_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_F_D_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_F_D_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_F_D_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_F_D_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_F_D_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_F_D_2", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_F_D_3", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_F_D_4", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_F_D_5", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_F_D_6", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_F_D_7", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_F_D_8", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_F_D_9", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_F_I_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_F_I_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_F_I_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_F_I_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_F_I_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_F_I_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_F_I_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_F_I_2", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_F_I_3", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_F_I_4", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_F_I_5", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_F_I_6", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_F_I_7", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_F_I_8", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_F_I_9", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_F_V_D_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_F_V_D_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_F_V_D_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_F_V_D_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_F_V_D_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_F_V_D_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_F_V_D_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_F_V_D_2", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_F_V_D_3", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_F_V_D_4", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_F_V_D_5", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_F_V_D_6", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_F_V_D_7", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_F_V_D_8", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_F_V_D_9", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_F_V_I_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_F_V_I_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_F_V_I_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_F_V_I_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_F_V_I_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_F_V_I_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_F_V_I_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_F_V_I_2", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_F_V_I_3", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_F_V_I_4", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_F_V_I_5", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_F_V_I_6", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_F_V_I_7", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_F_V_I_8", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_F_V_I_9", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_I_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_I_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_I_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_I_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_I_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_I_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_I_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_I_2", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_I_3", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_I_4", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_I_5", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_I_6", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_I_7", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_I_8", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_I_9", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_S_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_S_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_S_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_S_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_S_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_S_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_S_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_S_2", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_S_3", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_S_4", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_S_5", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_S_6", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_S_7", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_S_8", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_S_9", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_T_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_T_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_T_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_T_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_T_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_T_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_T_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_T_2", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_T_3", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_T_4", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_T_5", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_T_6", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_T_7", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_T_8", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.A_T_9", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e.A", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e.u", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e.e", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e.a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e.v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e.c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e.c_d_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e.d_c_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e.d_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date" + }, + { + "nullable": false, + "fieldPath": "p_e.I", + "description": " ", + "isPartOfKey": true, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.E_I", + "description": " ", + "isPartOfKey": true, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e.e_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e.E_d_c_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "p_e.E_d_c_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "p_e.E_d_c_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "p_e.E_d_c_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "p_e.E_d_c_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "p_e.E_d_c_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "p_e.E_d_c_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "p_e.E_d_c_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "p_e.E_d_c_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NullType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute30" + }, + { + "nullable": false, + "fieldPath": "p_e.E_d_c_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "p_e.E_d_c_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "p_e.E_d_c_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "p_e.E_d_c_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "p_e.E_d_c_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "p_e.E_d_c_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "p_e.E_d_c_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "p_e.E_d_c_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "p_e.E_d_c_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "p_e.E_d_c_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "p_e.E_d_c_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "p_e.s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e.f", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e.g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "p_e.l_o_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e.m_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "p_e.p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "p_e.p_v_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e.q_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "p_e_s.Q_D_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.Q_D_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.Q_D_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.Q_D_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.Q_D_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.Q_D_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.Q_D_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.Q_D_2", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.Q_D_3", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.Q_D_4", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.Q_D_5", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.Q_D_6", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.Q_D_7", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.Q_D_8", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.Q_D_9", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.Q_I_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.Q_I_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.Q_I_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.Q_I_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.Q_I_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.Q_I_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.Q_I_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.Q_I_2", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.Q_I_3", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.Q_I_4", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.Q_I_5", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.Q_I_6", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.Q_I_7", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.Q_I_8", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.Q_I_9", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.Q_M_S_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "p_e_s.Q_M_S_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "p_e_s.Q_M_S_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "p_e_s.Q_M_S_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "p_e_s.Q_M_S_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "p_e_s.Q_M_S_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "p_e_s.Q_M_S_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "p_e_s.Q_M_S_2", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "p_e_s.Q_M_S_3", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "p_e_s.Q_M_S_4", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "p_e_s.Q_M_S_5", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "p_e_s.Q_M_S_6", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "p_e_s.Q_M_S_7", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "p_e_s.Q_M_S_8", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "p_e_s.Q_M_S_9", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "p_e.r_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e.r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.R", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "p_e_s.S_A_B", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.S_F", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.S_I", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.S_M_S", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "p_e_s.S_N", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e_s.S_P", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "p_e_s.S_S", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "p_e_s.S_P", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "p_e.s_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e.w_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e.s_I_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e.s_I_2", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e.s_I_3", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e.s_I_4", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e.s_I_5", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e.S", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e.s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e.t_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_e.t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_s.c_a_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "s_s.c_a_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "s_s.c_a_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "s_s.c_a_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "s_s.c_a_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "s_s.c_a_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "s_s.c_a_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "s_s.c_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "s_s.c_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "s_s.c_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "s_s.c_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "s_s.c_a_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "s_s.c_a_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "s_s.c_a_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "s_s.c_a_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "s_s.c_a_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "s_s.c_a_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "s_s.c_a_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "s_s.c_a_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "s_s.m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_s.m_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_s.n_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_s.n_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_s.p_p", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_s.p_s_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_s.r_a_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_s.s_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_s.t_i", + "description": " ", + "isPartOfKey": true, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_s.t_t_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "s_s.t_t_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "s_s.t_t_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "s_s.t_t_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "s_s.t_t_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "s_s.t_t_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "s_s.t_t_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "s_s.t_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "s_s.t_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "s_s.t_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "s_s.t_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "s_s.t_t_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "s_s.t_t_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "s_s.t_t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "s_s.t_t_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "s_s.t_t_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "s_s.t_t_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "s_s.t_t_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "s_s.t_t_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "s_s.t_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "o_s._f_s_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "o_s._f_s_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "o_s._f_s_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "o_s._f_s_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "o_s._f_s_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "o_s._f_s_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "o_s._f_s_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "o_s._f_s_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "o_s._f_s_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "o_s._f_s_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "o_s._f_s_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "o_s._f_s_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "o_s._f_s_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "o_s._f_s_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "o_s._f_s_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "o_s._f_s_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "o_s._f_s_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "o_s._f_s_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "o_s._f_s_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "o_s.a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "o_s.a_r_f", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.e_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.e_q_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.e_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.f_r_t_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.f_r_t_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.f_r_t_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.f_r_t_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.f_r_t_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.f_r_t_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.f_r_t_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.f_r_t_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.f_r_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.f_r_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.f_r_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.f_r_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.f_r_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.f_r_t_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.f_r_t_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.f_r_t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.f_r_t_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.f_r_t_s_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "tier" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.f_r_t_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.f_r_t_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.f_r_t_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.f_r_t_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.f_r_t_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.i_f_q", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.i_i_q", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.i_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.q_e_t_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.q_e_t_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.q_e_t_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.q_e_t_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.q_e_t_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.q_e_t_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.q_e_t_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.q_e_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.q_e_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NullType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute30" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.q_e_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.q_e_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.q_e_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.q_e_t_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.q_e_t_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.q_e_t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.q_e_t_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_second" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.q_e_t_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.q_e_t_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.q_e_t_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.q_e_t_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.q_e_t_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.t_c_t_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.t_c_t_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.t_c_t_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.t_c_t_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.t_c_t_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.t_c_t_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.t_c_t_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.t_c_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.t_c_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.t_c_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.t_c_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.t_c_t_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.t_c_t_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.t_c_t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.t_c_t_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.t_c_t_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.t_c_t_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.t_c_t_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.t_c_t_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.t_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "o_s.c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "o_s.d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "o_s.h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "o_s.i_s_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "o_s.i_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "o_s.l_o_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "o_s.m_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "o_s.m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "o_s.s_r_m_", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "o_s.s_r_s_", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "o_s.t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "o_s.t_t_f_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "o_s.w_t_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "o_s.w_t_s_w_s_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "o_s.w_t_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "tier" + }, + { + "nullable": false, + "fieldPath": "o_s.w_t_t_a", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "tier" + }, + { + "nullable": false, + "fieldPath": "o_s.w_t_t_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "tier" + }, + { + "nullable": false, + "fieldPath": "o_s.w_r_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "o_s.y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_e.a_a_i_c_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_e.a_a_i_c_w_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_e.b_m_2_e_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_e.b_s_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_e.b_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_e.c_b_v_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_e.r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_e.r_l", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_e.r_l_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_e.c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_e.c_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_e.c_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_e.c_e_i_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_e.d_f_a_c_t_e", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_e.d_f_l_d_d_t_e", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_e.d_f_l_r_d_d_t_e", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_e.d_c_2_0_2_e_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_e.d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_e.e_c_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "s_e.e_c_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "s_e.e_c_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "s_e.e_c_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "s_e.e_c_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "s_e.e_c_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "s_e.e_c_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "s_e.e_c_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "s_e.e_c_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "s_e.e_c_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "s_e.e_i", + "description": " ", + "isPartOfKey": true, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_e.f_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_e.h_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_e.I_D_T_A_O_C", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_e.m_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_e.m_i_p_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_e.i_h_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "s_e.i_d_t_a_o_c_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_e.l_s_e_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_e.l_d_d_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_e.l_d_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_e.l_r_d_d_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_e.l_r_d_d_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "s_e.l_r_d_d_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "s_e.l_r_d_d_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "s_e.l_r_d_d_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "s_e.l_r_d_d_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "s_e.l_r_d_d_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "s_e.l_r_d_d_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "s_e.l_r_d_d_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "s_e.l_r_d_d_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "s_e.l_r_d_d_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "s_e.l_r_d_d_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "s_e.l_r_d_d_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "s_e.l_r_d_d_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "s_e.l_r_d_d_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "s_e.l_r_d_d_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "s_e.l_r_d_d_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "s_e.l_r_d_d_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "s_e.l_r_d_d_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "s_e.l_r_d_d_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "s_e.l_r_d_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_e.l_s_d_d_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "s_e.l_s_d_d_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "s_e.l_s_d_d_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "s_e.l_s_d_d_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "s_e.l_s_d_d_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "s_e.l_s_d_d_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "s_e.l_s_d_d_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "s_e.l_s_d_d_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "s_e.l_s_d_d_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "s_e.l_s_d_d_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "s_e.l_s_d_d_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "s_e.l_s_d_d_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "s_e.l_s_d_d_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "s_e.l_s_d_d_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "s_e.l_s_d_d_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "s_e.l_s_d_d_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "s_e.l_s_d_d_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "s_e.l_s_d_d_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "s_e.l_s_d_d_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "s_e.l_c_e_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_e.m_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_e.q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_e.m_t_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_e.m_f_a_c_t_e", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_e.N_P", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_e.p_e_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_e.r_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_e.r_i_f", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_e.r_t_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_e.s_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_e.s_i_m_e_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_e.t_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_e.w_n_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "s_e.w_v_n_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "s_e.w_f_a_c_t_e", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_e.y_f_a_c_t_e", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_a_a._e_a_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "s_a_a._e_a_d_o_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "s_a_a._e_a_d_o_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "s_a_a._e_a_d_o_w_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "s_a_a._e_a_d_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "s_a_a._e_a_h", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "s_a_a._e_a_h_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "s_a_a._e_a_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "s_a_a._e_a_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "s_a_a._e_a_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "s_a_a._e_a_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "s_a_a._e_a_q", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "s_a_a._e_a_q_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "s_a_a._e_a_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "s_a_a._e_a_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "s_a_a._e_a_t_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "s_a_a._e_a_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "s_a_a._e_a_w_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "s_a_a._e_a_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "s_a_a._f_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_a_a._l_a_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "s_a_a._l_a_d_o_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "s_a_a._l_a_d_o_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "s_a_a._l_a_d_o_w_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "s_a_a._l_a_d_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "s_a_a._l_a_h", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "s_a_a._l_a_h_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "s_a_a._l_a_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "s_a_a._l_a_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "s_a_a._l_a_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "s_a_a._l_a_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "s_a_a._l_a_q", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "s_a_a._l_a_q_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "s_a_a._l_a_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "s_a_a._l_a_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "s_a_a._l_a_t_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "s_a_a._l_a_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "s_a_a._l_a_w_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "s_a_a._l_a_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "s_a_a.a_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_a_a.a_e", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_a_a.a_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_a_a.c_a_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_a_a.e_c_a_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "s_a_a.e_c_a_d_o_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "s_a_a.e_c_a_d_o_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "s_a_a.e_c_a_d_o_w_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "s_a_a.e_c_a_d_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "s_a_a.e_c_a_h", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "s_a_a.e_c_a_h_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "s_a_a.e_c_a_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "s_a_a.e_c_a_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NullType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute30" + }, + { + "nullable": false, + "fieldPath": "s_a_a.e_c_a_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "s_a_a.e_c_a_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "s_a_a.e_c_a_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "s_a_a.e_c_a_q", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "s_a_a.e_c_a_q_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "s_a_a.e_c_a_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "s_a_a.e_c_a_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "s_a_a.e_c_a_t_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "s_a_a.e_c_a_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "s_a_a.e_c_a_w_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "s_a_a.e_c_a_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "s_a_a.e_i", + "description": "", + "isPartOfKey": true, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_a_a.e_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_a_a.e_a_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_a_a.g_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_a_a.i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_a_a.i_g_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_a_a.k", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_a_a.l_a_g_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "s_v_f.n_s_o_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "s_a_a.p_t_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_v_f.s_o", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "s_a_a.s_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_a_a.t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_a_a.e_i_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_v_f.t_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_a_a.t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_a_a.u_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_v_f.v_o", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "s_v_f.v_a_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "s_f_l.a_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_f_l.c_a_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "s_f_l.c_a_d_o_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "s_f_l.c_a_d_o_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "s_f_l.c_a_d_o_w_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "s_f_l.c_a_d_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "s_f_l.c_a_h", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "s_f_l.c_a_h_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "s_f_l.c_a_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "s_f_l.c_a_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "s_f_l.c_a_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "s_f_l.c_a_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "s_f_l.c_a_q", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "s_f_l.c_a_q_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "s_f_l.c_a_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "s_f_l.c_a_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "s_f_l.c_a_t_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "s_f_l.c_a_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "s_f_l.c_a_w_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "s_f_l.c_a_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "s_f_l.d_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_f_l.f_p_u", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_f_l.f_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_f_l.g", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_f_l.g_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_f_l.i", + "description": "", + "isPartOfKey": true, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_f_l.l", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_f_l.r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_f_l.r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_f_l.r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_f_l.r_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_f_l.s_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_f_l.s", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_f_l.s", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_f_l.t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_f_l.t_p", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_f_l.u_a_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "s_f_l.u_a_d_o_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "s_f_l.u_a_d_o_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "s_f_l.u_a_d_o_w_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "s_f_l.u_a_d_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "s_f_l.u_a_h", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "s_f_l.u_a_h_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "s_f_l.u_a_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "s_f_l.u_a_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "s_f_l.u_a_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "s_f_l.u_a_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "s_f_l.u_a_q", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "s_f_l.u_a_q_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "s_f_l.u_a_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "s_f_l.u_a_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "s_f_l.u_a_t_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "s_f_l.u_a_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "s_f_l.u_a_w_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "s_f_l.u_a_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "s_l.g_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_l.l_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_l.l_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_p.g_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_p.p_f_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_p.p_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_g._e_a_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "s_g._e_a_d_o_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "s_g._e_a_d_o_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "s_g._e_a_d_o_w_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "s_g._e_a_d_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "s_g._e_a_h", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "s_g._e_a_h_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "s_g._e_a_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "s_g._e_a_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "s_g._e_a_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "s_g._e_a_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "s_g._e_a_q", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "s_g._e_a_q_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "s_g._e_a_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "s_g._e_a_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "s_g._e_a_t_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "s_g._e_a_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "s_g._e_a_w_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "s_g._e_a_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "s_g._f_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_g._l_a_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "s_g._l_a_d_o_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "s_g._l_a_d_o_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "s_g._l_a_d_o_w_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "s_g._l_a_d_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "s_g._l_a_h", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "s_g._l_a_h_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "s_g._l_a_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "s_g._l_a_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "s_g._l_a_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "s_g._l_a_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "s_g._l_a_q", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "s_g._l_a_q_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "s_g._l_a_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "s_g._l_a_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "s_g._l_a_t_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "s_g._l_a_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "s_g._l_a_w_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "s_g._l_a_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "s_g.c_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_g.c_l", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_g.c_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_g.d_s_l_u", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_g.d_s_l_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_g.d_l", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_g.g_c_n_e", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "s_g.g_c_a_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "s_g.g_c_a_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "s_g.g_c_a_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "s_g.g_c_a_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "s_g.g_c_a_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "s_g.g_c_a_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "s_g.g_c_a_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "s_g.g_c_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "s_g.g_c_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "s_g.g_c_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "s_g.g_c_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "s_g.g_c_a_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "s_g.g_c_a_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "s_g.g_c_a_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "s_g.g_c_a_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "s_g.g_c_a_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "s_g.g_c_a_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "s_g.g_c_a_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "s_g.g_c_a_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "s_g.g_d_l_b_5_a_1_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "s_g.g_l_v_a_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "s_g.g_l_v_a_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "s_g.g_l_v_a_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "s_g.g_l_v_a_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "s_g.g_l_v_a_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "s_g.g_l_v_a_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "s_g.g_l_v_a_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "s_g.g_l_v_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "s_g.g_l_v_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "s_g.g_l_v_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "s_g.g_l_v_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "s_g.g_l_v_a_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "s_g.g_l_v_a_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "s_g.g_l_v_a_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "s_g.g_l_v_a_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "s_g.g_l_v_a_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "s_g.g_l_v_a_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "s_g.g_l_v_a_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "s_g.g_l_v_a_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "s_g.g_p_u", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_g.g_s_h_a_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "s_g.g_t_i_3_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "s_g.g_t_l_b_2_a_8_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "s_g.g_u_a_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "s_g.g_u_a_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "s_g.g_u_a_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "s_g.g_u_a_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "s_g.g_u_a_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "s_g.g_u_a_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "s_g.g_u_a_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "s_g.g_u_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "s_g.g_u_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "s_g.g_u_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "s_g.g_u_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "s_g.g_u_a_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "s_g.g_u_a_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "s_g.g_u_a_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "s_g.g_u_a_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "s_g.g_u_a_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "s_g.g_u_a_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "s_g.g_u_a_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "s_g.g_u_a_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "s_g.g_u_i_l_9_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "s_g.g_v_i_l_9_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "s_g.i", + "description": "", + "isPartOfKey": true, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_g.s", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_g.t_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_g.t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_g.t_l", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_g.u_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "s_u_a.a_d_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "s_u_a.a_d_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "s_u_a.a_d_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "s_u_a.a_d_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "s_u_a.a_d_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "s_u_a.a_d_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_u_a.a_d_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "s_u_a.a_d_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "s_u_a.a_d_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "s_u_a.a_d_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "s_u_a.a_d_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "s_u_a.a_d_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "s_u_a.a_d_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "s_u_a.a_d_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "s_u_a.a_d_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "s_u_a.a_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_u_a.c_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_u_a.c_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_u_a.c_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_u_a.i", + "description": "", + "isPartOfKey": true, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_u_a.s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_u_a.u_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_u_a.u_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_u._e_a_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "s_u._e_a_d_o_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "s_u._e_a_d_o_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "s_u._e_a_d_o_w_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "s_u._e_a_d_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "s_u._e_a_h", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "s_u._e_a_h_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "s_u._e_a_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "s_u._e_a_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "s_u._e_a_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "s_u._e_a_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "s_u._e_a_q", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "s_u._e_a_q_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "s_u._e_a_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "s_u._e_a_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "s_u._e_a_t_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "s_u._e_a_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "s_u._e_a_w_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "s_u._e_a_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "s_u._f_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_u._l_a_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "s_u._l_a_d_o_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "s_u._l_a_d_o_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "s_u._l_a_d_o_w_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "s_u._l_a_d_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "s_u._l_a_h", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "s_u._l_a_h_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "s_u._l_a_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "s_u._l_a_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "s_u._l_a_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "s_u._l_a_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "s_u._l_a_q", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "s_u._l_a_q_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "s_u._l_a_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "s_u._l_a_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "s_u._l_a_t_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "s_u._l_a_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "s_u._l_a_w_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "s_u._l_a_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "s_u.a_a", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "s_u.a_e_s_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_u.a_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_u.a_l", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_u.a_l", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "s_u.a_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_u.a_s", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_a_d.b", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_u.c_b_a", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "s_u.c_b_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "s_a_d.c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_a_d.c_t_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_a_d.c_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_a_d.c_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_u.c_a_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "s_u.c_a_d_o_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "s_u.c_a_d_o_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "s_u.c_a_d_o_w_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "s_u.c_a_d_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "s_u.c_a_h", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "s_u.c_a_h_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "s_u.c_a_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "s_u.c_a_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "s_u.c_a_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "s_u.c_a_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "s_u.c_a_q", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "s_u.c_a_q_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "s_u.c_a_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "s_u.c_a_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "s_u.c_a_t_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "s_u.c_a_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "s_u.c_a_w_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "s_u.c_a_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "s_u.c_p_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_u.e", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_u.e", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_u.g_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_u.i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_u.i_a", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "s_u.i_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "s_a_d.l_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_a_d.l", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_a_d.l_t_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_a_d.m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_a_d.m_t_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_u.n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_u.p_t_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_u.p_a_u", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_u.p_f_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_u.p_l_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_u.r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_a_d.r_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_u.s_i_c_b_e", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_a_d.s", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_a_d.t_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_a_d.t_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date" + }, + { + "nullable": false, + "fieldPath": "s_a_d.t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_a_d.t_t_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_a_g_b.b_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_a_g_b.h_a_g_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "s_a_g_b.i", + "description": " ", + "isPartOfKey": true, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_a_g_b.m_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_a_g_b.t_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "s_a_g_b.t_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "s_a_g_b.t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "s_a_g_b.t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NullType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute30" + }, + { + "nullable": false, + "fieldPath": "s_a_g_b.t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "s_a_g_b.t_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "s_a_g_b.t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "s_a_g_b.t_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_second" + }, + { + "nullable": false, + "fieldPath": "s_a_g_b.t_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "s_a_g_b.t_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "s_c.c_t_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "s_c.c_t_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "s_c.c_t_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "s_c.c_t_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "s_c.c_t_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "s_c.c_t_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "s_c.c_t_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "s_c.c_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "s_c.c_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NullType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute30" + }, + { + "nullable": false, + "fieldPath": "s_c.c_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "s_c.c_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "s_c.c_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "s_c.c_t_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "s_c.c_t_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "s_c.c_t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "s_c.c_t_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "s_c.c_t_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "s_c.c_t_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "s_c.c_t_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "s_c.c_t_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "s_c.p_i", + "description": " ", + "isPartOfKey": true, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_c.s_t_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "s_c.s_t_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "s_c.s_t_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "s_c.s_t_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "s_c.s_t_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "s_c.s_t_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "s_c.s_t_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "s_c.s_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "s_c.s_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NullType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute30" + }, + { + "nullable": false, + "fieldPath": "s_c.s_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "s_c.s_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "s_c.s_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "s_c.s_t_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "s_c.s_t_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "s_c.s_t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "s_c.s_t_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "s_c.s_t_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "s_c.s_t_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "s_c.s_t_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "s_c.s_t_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "s_c.s_a_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_c.t_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_c.t_n_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_c.t_c_a_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_c.t_s_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_c.t_f_s_t_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_c.w_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "s_a_a.a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "s_a_a.a_e", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_a_a.a_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_a_a.a_t_a_c_d_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "tier" + }, + { + "nullable": false, + "fieldPath": "s_a_a.a_t_a_c_m_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "tier" + }, + { + "nullable": false, + "fieldPath": "s_a_a.a_t_a_c_y_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "tier" + }, + { + "nullable": false, + "fieldPath": "s_a_a.a_t_a_i_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_a_a.a_t_a_i_d_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "tier" + }, + { + "nullable": false, + "fieldPath": "s_a_a.a_t_a_i_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_a_a.a_t_a_i_m_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "tier" + }, + { + "nullable": false, + "fieldPath": "s_a_a.a_t_a_i_m_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "tier" + }, + { + "nullable": false, + "fieldPath": "s_a_a.a_t_a_i_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_a_a.a_t_a_i_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_a_a.a_t_a_i_y_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "tier" + }, + { + "nullable": false, + "fieldPath": "s_a_a.a_t_m_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "tier" + }, + { + "nullable": false, + "fieldPath": "s_a_a.a_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_a_a.a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_a_a.B", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_a_a.c_a_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "s_a_a.c_a_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "s_a_a.c_a_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "s_a_a.c_a_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "s_a_a.c_a_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "s_a_a.c_a_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "s_a_a.c_a_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "s_a_a.c_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "s_a_a.c_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "s_a_a.c_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "s_a_a.c_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "s_a_a.c_a_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "s_a_a.c_a_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "s_a_a.c_a_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "s_a_a.c_a_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "s_a_a.c_a_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "s_a_a.c_a_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "s_a_a.c_a_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "s_a_a.c_a_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "s_a_a.c_r_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_a_a.d_g_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_a_a.l_l_a_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "s_a_a.l_l_a_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "s_a_a.l_l_a_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "s_a_a.l_l_a_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "s_a_a.l_l_a_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "s_a_a.l_l_a_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "s_a_a.l_l_a_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "s_a_a.l_l_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "s_a_a.l_l_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "s_a_a.l_l_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "s_a_a.l_l_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "s_a_a.l_l_a_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "s_a_a.l_l_a_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "s_a_a.l_l_a_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "s_a_a.l_l_a_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "s_a_a.l_l_a_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "s_a_a.l_l_a_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "s_a_a.l_l_a_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "s_a_a.l_l_a_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "s_a_a.l_t_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "s_a_a.l_t_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "s_a_a.l_t_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "s_a_a.l_t_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "s_a_a.l_t_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "s_a_a.l_t_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "s_a_a.l_t_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "s_a_a.l_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "s_a_a.l_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "s_a_a.l_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "s_a_a.l_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "s_a_a.l_t_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "s_a_a.l_t_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "s_a_a.l_t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "s_a_a.l_t_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "s_a_a.l_t_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "s_a_a.l_t_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "s_a_a.l_t_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "s_a_a.l_t_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "s_a_a.l", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_a_a.l_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_a_a.o_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_a_a.r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_a_a.r_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_a_a.s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_a_a.s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_a_a.t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_a_a.t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_a_a.t_z", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_a_a.u", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_a_a.u_a_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "s_a_a.u_a_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "s_a_a.u_a_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "s_a_a.u_a_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "s_a_a.u_a_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "s_a_a.u_a_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "s_a_a.u_a_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "s_a_a.u_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "s_a_a.u_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "s_a_a.u_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "s_a_a.u_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "s_a_a.u_a_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "s_a_a.u_a_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "s_a_a.u_a_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "s_a_a.u_a_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "s_a_a.u_a_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "s_a_a.u_a_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "s_a_a.u_a_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "s_a_a.u_a_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "s_a_a.u_l_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_a_a.v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_a_a.z_u_i", + "description": " ", + "isPartOfKey": true, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_a_q.b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_a_q.c_a_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "s_a_q.c_a_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "s_a_q.c_a_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "s_a_q.c_a_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "s_a_q.c_a_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "s_a_q.c_a_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "s_a_q.c_a_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "s_a_q.c_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "s_a_q.c_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "s_a_q.c_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "s_a_q.c_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "s_a_q.c_a_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "s_a_q.c_a_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "s_a_q.c_a_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "s_a_q.c_a_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "s_a_q.c_a_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "s_a_q.c_a_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "s_a_q.c_a_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "s_a_q.c_a_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "s_a_q.d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_a_q.d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "s_a_q.d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_a_q.g_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_a_q.g_i", + "description": " ", + "isPartOfKey": true, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_a_q.g_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_a_q.l_t_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "s_a_q.l_t_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "s_a_q.l_t_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "s_a_q.l_t_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "s_a_q.l_t_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "s_a_q.l_t_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "s_a_q.l_t_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "s_a_q.l_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "s_a_q.l_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "s_a_q.l_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "s_a_q.l_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "s_a_q.l_t_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "s_a_q.l_t_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "s_a_q.l_t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "s_a_q.l_t_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "s_a_q.l_t_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "s_a_q.l_t_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "s_a_q.l_t_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "s_a_q.l_t_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "s_a_q.m_f", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "s_a_q.o", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_a_q.c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_a_q.q_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_a_q.l", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_a_q.s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_a_q.t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_a_q.t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.c_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.c_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.C_l_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.c_t_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.d_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.d_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.d_r_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.e_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.e_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.f_s_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.f_s_t_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.f_s_t_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.f_s_t_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.f_s_t_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.f_s_t_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.f_s_t_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.f_s_t_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.f_s_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.f_s_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.f_s_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.f_s_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.f_s_t_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.f_s_t_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.f_s_t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.f_s_t_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.f_s_t_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.f_s_t_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.f_s_t_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.f_s_t_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.f_s_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.i", + "description": " ", + "isPartOfKey": true, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.i_c_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.r_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.s_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.s_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.s_s_r_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.s_a_t_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.s_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.s_r_a_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.s_r_a_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.s_r_a_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.s_r_a_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.s_r_a_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.s_r_a_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.s_r_a_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.s_r_a_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.s_r_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.s_r_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NullType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute30" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.s_r_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.s_r_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.s_r_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.s_r_a_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.s_r_a_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.s_r_a_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.s_r_a_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.s_r_a_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.s_r_a_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.s_r_a_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.s_r_a_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.s_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.s_s_a_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.s_s_a_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.s_s_a_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.s_s_a_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.s_s_a_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.s_s_a_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.s_s_a_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.s_s_a_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.s_s_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.s_s_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NullType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute30" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.s_s_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.s_s_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.s_s_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.s_s_a_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.s_s_a_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.s_s_a_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.s_s_a_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.s_s_a_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.s_s_a_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.s_s_a_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.s_s_a_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.v_f", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.a_b_f_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.s_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.a_a_a_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.a_a_t_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.a_a_t_d_o_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.a_a_t_d_o_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.a_a_t_d_o_w_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.a_a_t_d_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.a_a_t_h", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.a_a_t_h_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.a_a_t_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.a_a_t_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.a_a_t_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.a_a_t_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.a_a_t_q", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.a_a_t_q_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.a_a_t_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.a_a_t_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.a_a_t_t_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.a_a_t_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.a_a_t_w_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.a_a_t_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.a_a_t_a_s_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.a_a_o", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.a_h_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.a_h_t_s", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.a_s_t_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.a_s_t_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.a_s_t_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.a_s_t_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.a_s_t_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.a_s_t_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.a_s_t_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.a_s_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.a_s_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.a_s_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.a_s_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.a_s_t_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.a_s_t_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.a_s_t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.a_s_t_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.a_s_t_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.a_s_t_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.a_s_t_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.a_s_t_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.a_t_t_s", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.a_w_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.a_a_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.a_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.a_o", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.e_q", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.e_q_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.f_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "f_t_o_q.f_t_o_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.f_a", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.f_a_a_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.f_a", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.f_a_a_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.f_a", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.f_a_a_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.f_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.f_s_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.f_a", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.f_a_a_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.i", + "description": "", + "isPartOfKey": true, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_t_o_q.i", + "description": "", + "isPartOfKey": true, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.i_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.l_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.l_s_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.m_c_q_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.n_a_a_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.n_a_a_t_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.n_a_a_t_d_o_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.n_a_a_t_d_o_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.n_a_a_t_d_o_w_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.n_a_a_t_d_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.n_a_a_t_h", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.n_a_a_t_h_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.n_a_a_t_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.n_a_a_t_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.n_a_a_t_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.n_a_a_t_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.n_a_a_t_q", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.n_a_a_t_q_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.n_a_a_t_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.n_a_a_t_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.n_a_a_t_t_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.n_a_a_t_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.n_a_a_t_w_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.n_a_a_t_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.n_e_q", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.n_e_q_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.n_e_q_t_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.n_e_q_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.n_e_q_t_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.n_e_q_t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.n_e_q_t_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.n_e_q_t_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.n_u", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.p_a_a_t_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.p_a_a_t_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.p_a_a_t_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.p_a_a_t_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.p_a_a_t_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.p_a_a_t_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.p_a_a_t_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.p_a_a_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.p_a_a_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.p_a_a_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.p_a_a_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.p_a_a_t_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.p_a_a_t_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.p_a_a_t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.p_a_a_t_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.p_a_a_t_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.p_a_a_t_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.p_a_a_t_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.p_a_a_t_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.p_a_a_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.p_e_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.p_e_q_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.p_q_e_t_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.p_q_e_t_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.p_q_e_t_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.p_q_e_t_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.p_q_e_t_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.p_q_e_t_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.p_q_e_t_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.p_q_e_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.p_q_e_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.p_q_e_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.p_q_e_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.p_q_e_t_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.p_q_e_t_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.p_q_e_t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.p_q_e_t_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.p_q_e_t_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.p_q_e_t_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.p_q_e_t_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.p_q_e_t_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.p_u", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.q_e_a_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.q_e_t_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.q_e_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.q_e_t_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.q_e_t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.q_e_t_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.q_e_t_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.q_e_t_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.q_h_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.s_a", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.s_a_a_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.s_e_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.s_e_d_o_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.s_e_d_o_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.s_e_d_o_w_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.s_e_d_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.s_e_h", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.s_e_h_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.s_e_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.s_e_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.s_e_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.s_e_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.s_e_q", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.s_e_q_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.s_e_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.s_e_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.s_e_t_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.s_e_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.s_e_w_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.s_e_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.t_a", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.t_a_a_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.t_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.t_t_a_a", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.t_t_q_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.t_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.u_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.w_e", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.w_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.w_u_s_t_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.w_u_s_t_d_o_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.w_u_s_t_d_o_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.w_u_s_t_d_o_w_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.w_u_s_t_d_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.w_u_s_t_h", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.w_u_s_t_h_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.w_u_s_t_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.w_u_s_t_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.w_u_s_t_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.w_u_s_t_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.w_u_s_t_q", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.w_u_s_t_q_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.w_u_s_t_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.w_u_s_t_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.w_u_s_t_t_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.w_u_s_t_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.w_u_s_t_w_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.w_u_s_t_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "m_s_z_t_c.a_h_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_s_z_t_c.a_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_s_z_t_c.c_c_a_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_s_z_t_c.c_c_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "m_s_z_t_c.c_c_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "m_s_z_t_c.c_c_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "m_s_z_t_c.c_c_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "m_s_z_t_c.c_c_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "m_s_z_t_c.c_c_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "m_s_z_t_c.c_c_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "m_s_z_t_c.c_c_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "m_s_z_t_c.c_c_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_second" + }, + { + "nullable": false, + "fieldPath": "m_s_z_t_c.c_c_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "m_s_z_t_c.c_c_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "m_s_z_t_c.c_c_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "m_s_z_t_c.c_c_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "m_s_z_t_c.c_i", + "description": " ", + "isPartOfKey": true, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_s_z_t_c.c_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_s_z_t_c.c_r_b_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_s_z_t_c.c_r_b_r_a_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_s_z_t_c.i_n_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_s_z_t_c.p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "m_s_z_t_c.p_c_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_s_z_t_c.r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_s_z_t_c.s_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_s_z_t_c.t_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_s_z_t_c.z_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.a_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.a_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.a_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.a_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.a_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.a_l", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.a_f_p_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.a_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.a_e", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.a_c_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.a_c_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.a_c_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.a_c_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.a_c_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NullType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute30" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.a_c_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.a_c_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.a_c_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.a_c_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.a_c_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.a_c_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.a_c_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.a_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.b_p", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.b_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c_n_f", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c_s_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c_t_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c_t_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c_t_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c_t_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c_t_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c_t_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c_t_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c_t_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c_t_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c_t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c_t_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c_t_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c_t_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c_t_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c_t_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c_d_t_f_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c_d_t_f_s_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c_r_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c_r_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c_r_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c_r_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c_r_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NullType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute30" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c_r_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c_r_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c_r_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c_r_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c_r_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c_r_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c_r_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c_t_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c_f_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c_r_1_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c_r_2_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c_r_3_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c_r_4_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c_r_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c_r_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c_r_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c_a_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c_a_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c_a_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c_a_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c_a_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c_a_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c_a_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c_a_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c_a_i_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NullType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute30" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c_a_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c_a_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c_a_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c_a_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c_a_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c_a_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c_a_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c_a_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c_r_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.d_r_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.d_r_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.d_r_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.d_r_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NullType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute30" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.d_r_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.d_r_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.d_r_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.d_r_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.d_r_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.d_r_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.d_r_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.d_t_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "duration_day" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.d_t_a_l_u", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "duration_day" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.d_c_1", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.d_c_2", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.d_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.d_i_p_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.d_i_c_u", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.d_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.d_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.d_a_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.d_a_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.d_a_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.d_a_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.d_a_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.d_a_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.d_a_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.d_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.d_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.d_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.d_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.d_a_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.d_a_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.d_a_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.d_a_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.d_a_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.d_a_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.d_a_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.d_a_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.e_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_d_t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_r_d_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_r_d_d_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_r_d_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_r_d_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_r_d_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_r_d_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_r_d_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_r_d_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_r_d_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_r_d_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_r_d_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_r_d_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_r_d_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_r_d_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_r_d_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_r_d_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_r_d_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_r_d_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_r_d_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_r_d_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_l", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_d_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_q_t_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_q_t_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_q_t_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_q_t_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_q_t_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_q_t_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_q_t_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_q_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_q_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_q_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_q_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_q_t_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_q_t_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_q_t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_q_t_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_q_t_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_q_t_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_q_t_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_q_t_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_c_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_c_r_1_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_c_r_2_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_c_r_3_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_c_r_4_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_c_r_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_c_r_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_s_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_s_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_s_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_s_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_s_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_s_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_s_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_s_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_s_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_s_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_s_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_s_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_s_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_s_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_s_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_s_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_s_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_s_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_s_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_s_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_r_t_s", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.g_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.h_t_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "duration_hour" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.h_t_a_l_u", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "duration_hour" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.i_d_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.i_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.i_q_t_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.i_q_t_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.i_q_t_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.i_q_t_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.i_q_t_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.i_q_t_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.i_q_t_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.i_q_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.i_q_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.i_q_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.i_q_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.i_q_t_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.i_q_t_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.i_q_t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.i_q_t_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.i_q_t_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.i_q_t_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.i_q_t_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.i_q_t_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.i_w_3_d_o_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.i_w_3_d_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.i_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.i_c_f_i_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.i_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.i_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.i_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.i_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.i_w_c_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.l_a_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.l_i_s_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.l_s_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.l_s_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.l_s_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.l_s_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.l_s_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.l_s_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.l_s_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.l_s_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.l_s_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.l_s_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.l_s_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.l_s_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.l_s_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.l_s_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.l_s_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.l_s_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.l_s_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.l_s_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.l_s_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.l_s_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.l_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.l_t_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.l_t_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.l_t_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.l_t_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.l_t_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.l_t_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.l_t_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.l_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.l_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.l_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.l_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.l_t_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.l_t_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.l_t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.l_t_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.l_t_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.l_t_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.l_t_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.l_t_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.l_l", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.m_d_a_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.m_h_d_i_l_3_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.m_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.m_t_a_i_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.m_t_a_i_d_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "tier" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.m_t_a_i_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.m_t_a_i_m_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "tier" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.m_t_t_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.m_f_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.m_t_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "duration_minute" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.m_t_a_l_u", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "duration_minute" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.n_o_b_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.o_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.o_f_l", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.p_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.p_c_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.r_r_i_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.r_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.r_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.r_d_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.r_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.r_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.s_t_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "duration_second" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.s_t_a_l_u", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "duration_second" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.s_i_m_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.s_p_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.s_p_c_d_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.s_p_c_d_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.s_p_c_d_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.s_p_c_d_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.s_p_c_d_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.s_p_c_d_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.s_p_c_d_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.s_p_c_d_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.s_p_n_d_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.s_p_n_d_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.s_p_n_d_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.s_p_n_d_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.s_p_n_d_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.s_p_n_d_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.s_p_n_d_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.s_p_n_d_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.s_p_s_d_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.s_p_s_d_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.s_p_s_d_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.s_p_s_d_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.s_p_s_d_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.s_p_s_d_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.s_p_s_d_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.s_p_s_d_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.s_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.s_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.t_p_d_n_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.t_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.t_c_d_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.t_f_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.t_i", + "description": " ", + "isPartOfKey": true, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.t_a_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.t_t_s_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.t_t_s_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.t_t_s_w_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.t_t_s_w_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.u", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.u_a_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.u_a_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.u_a_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.u_a_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.u_a_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.u_a_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.u_a_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.u_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.u_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NullType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute30" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.u_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.u_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.u_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.u_a_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.u_a_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.u_a_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.u_a_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.u_a_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.u_a_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.u_a_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.u_a_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.v_l", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.w_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "t_t_s_l_u_h.t_i", + "description": "", + "isPartOfKey": true, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "t_t_s_l_u_h.t_t_s_l_u", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "t_t_s_l_u_h.t_t_s_w_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "t_t_s_l_u_h.u_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "t_t_s_l_u_h.u_d_o_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "t_t_s_l_u_h.u_d_o_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "t_t_s_l_u_h.u_d_o_w_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "t_t_s_l_u_h.u_d_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "t_t_s_l_u_h.u_h", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "t_t_s_l_u_h.u_h_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "t_t_s_l_u_h.u_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "t_t_s_l_u_h.u_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "t_t_s_l_u_h.u_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "t_t_s_l_u_h.u_m_n", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "t_t_s_l_u_h.u_q", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "t_t_s_l_u_h.u_q_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "t_t_s_l_u_h.u_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "t_t_s_l_u_h.u_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "t_t_s_l_u_h.u_t_o_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "t_t_s_l_u_h.u_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "t_t_s_l_u_h.u_w_o_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "t_t_s_l_u_h.u_y", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "t_t_s_l_u_h.u_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "t_a_d.a_e", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "t_a_d.a_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "t_a_d.B", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "t_a_d.l", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "t_a_d.s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_u.a_e", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_u_a.a_e", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_u.a_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_u_a.a_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_u.a_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_u.a_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "p_u.a_w_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "p_u.a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_u.v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_u_a.B", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_u.c_f", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_u.c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_u.c_d_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_u.d_c_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_u.e_f", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_u.e_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "p_u.e_g_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "p_u.e_i", + "description": " ", + "isPartOfKey": true, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_u.e_l_u_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "p_u.e_l_u_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "p_u.e_l_u_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "p_u.e_l_u_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "p_u.e_l_u_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "p_u.e_l_u_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "p_u.e_l_u_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "p_u.e_l_u_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "p_u.e_l_u_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NullType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute30" + }, + { + "nullable": false, + "fieldPath": "p_u.e_l_u_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "p_u.e_l_u_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "p_u.e_l_u_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "p_u.e_l_u_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "p_u.e_l_u_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "p_u.e_l_u_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "p_u.e_l_u_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "p_u.e_l_u_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "p_u.e_l_u_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "p_u.e_l_u_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "p_u.e_l_u_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "p_u.e_m_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "p_u.e_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "p_u.e_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "p_u.e_q_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "p_u.e_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "p_u.e_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "p_u.e_t_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "p_u.e_t_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "p_u.e_t_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "p_u.e_t_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "p_u.e_t_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "p_u.e_t_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "p_u.e_t_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "p_u.e_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "p_u.e_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NullType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute30" + }, + { + "nullable": false, + "fieldPath": "p_u.e_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "p_u.e_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "p_u.e_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "p_u.e_t_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "p_u.e_t_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "p_u.e_t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "p_u.e_t_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "p_u.e_t_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "p_u.e_t_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "p_u.e_t_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "p_u.e_t_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "p_u.e", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_u.i_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_u.l_o_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_u_a.l", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_u.m_s_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "p_u.p_v_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_u.q_m_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "p_u.q_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "p_u.q_w_m_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "p_u.q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_u.r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_u.s_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_u.s_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_u.s_f", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_u.s_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_u.s_m_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "p_u.s_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_u.s_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "p_u.s_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "p_u.s_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "p_u.s_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "p_u.s_w_m_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "p_u.s_w_p_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "p_u.s_w_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "p_u.s", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_u.a_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_u_a.s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_u.t_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "p_u.t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "a_d.a_e", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "a_d.a_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "a_d.B", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "a_d.l", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "a_d.s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "a_d.u_l_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "u_c_c_r_m.c_c_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "u_c_c_r_m.c_r_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "u_c_c_r_m.f_s_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "u_c_c_r_m.m_e_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date" + }, + { + "nullable": false, + "fieldPath": "u_c_c_r_m.m_s_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date" + }, + { + "nullable": false, + "fieldPath": "u_c_c_r_m.u_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "u_c_c_r_m.q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.a_w_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.a_c_w_t_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.a_f_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.a_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.a_l_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.a_s", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_z_a.a_t_m_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "tier" + }, + { + "nullable": false, + "fieldPath": "c_z_a.a_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.a", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_z_a.B", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.c_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.c_s_t_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.c_s_t_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.c_s_t_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.c_s_t_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.c_s_t_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.c_s_t_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.c_s_t_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.c_s_t_m_3", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.c_s_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.c_s_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NullType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute30" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.c_s_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.c_s_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.c_s_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.c_s_t_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.c_s_t_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.c_s_t_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.c_s_t_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.c_s_t_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.c_s_t_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.c_s_t_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.c_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.c_t_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.c_t_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.h_t_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.h_t_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.i_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.i_s_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "c_z_a.l", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.p_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.p_k", + "description": " ", + "isPartOfKey": true, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.q_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.q_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.q_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.q_o", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.q_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.q_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.q_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.q_w_t_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.s_l", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.s_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.s_g_o", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.s_g_o_l", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.s_o_a_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.s_d_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.t_t_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "c_z_a.u_l_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.z_t_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "c_z_a.z_u_i", + "description": " ", + "isPartOfKey": true, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f.e_t_t_l_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f.e_z_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f.h_v_f", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f.l_c_t_f_e", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f.o_t_a_i_f", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f.s_a_f", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f.t_i", + "description": " ", + "isPartOfKey": true, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.n_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.n_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.f_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.f_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.f_g_t_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.f_g_t_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.f_g_t_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.f_g_t_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.f_g_t_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.f_g_t_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.f_g_t_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.f_g_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.f_g_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.f_g_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.f_g_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.f_g_t_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.f_g_t_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.f_g_t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.f_g_t_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.f_g_t_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.f_g_t_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.f_g_t_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.f_g_t_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.f_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.f_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.f_f", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.i", + "description": " ", + "isPartOfKey": true, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.i_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.i_g_t_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.i_g_t_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.i_g_t_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.i_g_t_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.i_g_t_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.i_g_t_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.i_g_t_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.i_g_t_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.i_g_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.i_g_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.i_g_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.i_g_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.i_g_t_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.i_g_t_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.i_g_t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.i_g_t_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.i_g_t_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.i_g_t_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.i_g_t_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.i_g_t_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.i_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.n_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.n_u_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.n_u_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.n_u_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.n_u_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.n_u_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.n_u_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.n_u_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.n_u_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.n_u_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NullType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute30" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.n_u_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.n_u_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.n_u_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.n_u_P_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.n_u_P_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.n_u_P_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.n_u_P_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.n_u_P_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.n_u_P_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.n_u_P_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.n_u_P_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.n_u_P_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NullType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute30" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.n_u_P_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.n_u_P_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.n_u_P_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.n_u_P_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.n_u_P_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.n_u_P_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.n_u_P_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_second" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.n_u_P_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.n_u_P_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.n_u_P_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.n_u_P_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.n_u_P_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.n_u_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.n_u_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.n_u_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.n_u_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_second" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.n_u_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.n_u_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.n_u_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.n_u_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.n_u_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.n_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.p_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.p_u_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.p_u_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.p_u_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.p_u_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.p_u_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.p_u_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.p_u_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.p_u_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.p_u_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NullType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute30" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.p_u_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.p_u_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.p_u_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.p_u_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.p_u_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.p_u_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.p_u_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_second" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.p_u_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.p_u_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.p_u_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.p_u_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.p_u_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.p_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.u_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.u_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.u_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.u_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.u_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.u_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.u_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.q_e_a_i_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.u_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.u_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NullType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute30" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.u_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.u_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.u_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.u_P_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.u_P_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.u_P_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.u_P_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.u_P_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.u_P_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.u_P_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.u_P_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.u_P_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NullType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute30" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.u_P_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.u_P_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.u_P_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.u_P_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.u_P_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.u_P_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.u_P_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_second" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.u_P_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.u_P_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.u_P_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.u_P_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.u_P_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.u_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.u_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.u_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.u_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_second" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.u_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.u_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.u_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.u_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.u_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.q_o", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.s_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.t_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.t_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.u_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.w_a_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.w_e", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.w_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.z_f_m_f", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "z_t.a_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.a_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.a_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.a_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.a_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.a_l", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.a_f_p_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.a_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.a_e", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.a_c_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "z_t.a_c_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "z_t.a_c_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.a_c_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "z_t.a_c_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NullType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute30" + }, + { + "nullable": false, + "fieldPath": "z_t.a_c_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "z_t.a_c_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "z_t.a_c_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "z_t.a_c_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "z_t.a_c_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "z_t.a_c_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t.a_c_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "z_t.a_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.b_p", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.b_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.c_n_f", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.c_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.c_s_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.c_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t.c_t_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "z_t.c_t_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "z_t.c_t_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "z_t.c_t_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "z_t.c_t_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t.c_t_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "z_t.c_t_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "z_t.c_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "z_t.c_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "z_t.c_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "z_t.c_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "z_t.c_t_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "z_t.c_t_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t.c_t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "z_t.c_t_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "z_t.c_t_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "z_t.c_t_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "z_t.c_t_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t.c_t_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "z_t.c_d_t_f_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t.c_d_t_f_s_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.c_r_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "z_t.c_r_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "z_t.c_r_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.c_r_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "z_t.c_r_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NullType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute30" + }, + { + "nullable": false, + "fieldPath": "z_t.c_r_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "z_t.c_r_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "z_t.c_r_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "z_t.c_r_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "z_t.c_r_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "z_t.c_r_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t.c_r_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "z_t.c_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.c_t_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.c_f_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.c_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.c_r_1_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.c_r_2_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.c_r_3_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.c_r_4_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.c_r_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.c_r_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.c_r_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.c_a_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "z_t.c_a_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "z_t.c_a_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "z_t.c_a_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "z_t.c_a_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t.c_a_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.c_a_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "z_t.c_a_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "z_t.c_a_i_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.c_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "z_t.c_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NullType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute30" + }, + { + "nullable": false, + "fieldPath": "z_t.c_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "z_t.c_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "z_t.c_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "z_t.c_a_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "z_t.c_a_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t.c_a_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "z_t.c_a_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "z_t.c_a_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "z_t.c_a_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "z_t.c_a_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t.c_a_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "z_t.c_r_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.d_r_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "z_t.d_r_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "z_t.d_r_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "z_t.d_r_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NullType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute30" + }, + { + "nullable": false, + "fieldPath": "z_t.d_r_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "z_t.d_r_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "z_t.d_r_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "z_t.d_r_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "z_t.d_r_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "z_t.d_r_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t.d_r_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "z_t.d_t_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "duration_day" + }, + { + "nullable": false, + "fieldPath": "z_t.d_t_a_l_u", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "duration_day" + }, + { + "nullable": false, + "fieldPath": "z_t.d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.d_c_1", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.d_c_2", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.d_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.d_i_p_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.d_i_c_u", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.d_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.d_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.d_a_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "z_t.d_a_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "z_t.d_a_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "z_t.d_a_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "z_t.d_a_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t.d_a_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "z_t.d_a_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "z_t.d_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "z_t.d_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "z_t.d_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "z_t.d_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "z_t.d_a_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "z_t.d_a_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t.d_a_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "z_t.d_a_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "z_t.d_a_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "z_t.d_a_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "z_t.d_a_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t.d_a_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "z_t_d_d.d_d_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "z_t_d_d.d_d_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "z_t_d_d.d_d_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "z_t_d_d.d_d_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "z_t_d_d.d_d_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_d_d.d_d_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "z_t_d_d.d_d_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "z_t_d_d.d_d_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "z_t_d_d.d_d_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "z_t_d_d.d_d_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_d_d.d_d_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "z_t_d_d.d_d_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "z_t_d_d.d_d_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t_d_d.d_d_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "z_t.e_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.f_d_t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t.f_r_d_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "z_t.f_r_d_d_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.f_r_d_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "z_t.f_r_d_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "z_t.f_r_d_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "z_t.f_r_d_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t.f_r_d_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "z_t.f_r_d_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "z_t.f_r_d_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "z_t.f_r_d_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "z_t.f_r_d_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "z_t.f_r_d_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "z_t.f_r_d_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "z_t.f_r_d_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t.f_r_d_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "z_t.f_r_d_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "z_t.f_r_d_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "z_t.f_r_d_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "z_t.f_r_d_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t.f_r_d_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "z_t.f_l", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.f_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.f_d_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.f_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.f_q_t_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "z_t.f_q_t_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "z_t.f_q_t_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "z_t.f_q_t_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "z_t.f_q_t_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t.f_q_t_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "z_t.f_q_t_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "z_t.f_q_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "z_t.f_q_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "z_t.f_q_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "z_t.f_q_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "z_t.f_q_t_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "z_t.f_q_t_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t.f_q_t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "z_t.f_q_t_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "z_t.f_q_t_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "z_t.f_q_t_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "z_t.f_q_t_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t.f_q_t_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "z_t.f_c_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.f_c_r_1_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.f_c_r_2_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.f_c_r_3_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.f_c_r_4_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.f_c_r_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.f_c_r_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.f_s_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "z_t.f_s_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "z_t.f_s_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "z_t.f_s_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "z_t.f_s_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t.f_s_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.f_s_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "z_t.f_s_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "z_t.f_s_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "z_t.f_s_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "z_t.f_s_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "z_t.f_s_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "z_t.f_s_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "z_t.f_s_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t.f_s_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "z_t.f_s_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "z_t.f_s_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "z_t.f_s_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "z_t.f_s_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t.f_s_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "z_t.f_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.f_r_t_s", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.g_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.h_t_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "duration_hour" + }, + { + "nullable": false, + "fieldPath": "z_t.h_t_a_l_u", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "duration_hour" + }, + { + "nullable": false, + "fieldPath": "i_t.a_l", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t.i_d_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.i_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.i_q_t_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "z_t.i_q_t_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "z_t.i_q_t_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "z_t.i_q_t_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "z_t.i_q_t_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t.i_q_t_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "z_t.i_q_t_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "z_t.i_q_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "z_t.i_q_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "z_t.i_q_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "z_t.i_q_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "z_t.i_q_t_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "z_t.i_q_t_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t.i_q_t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "z_t.i_q_t_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "z_t.i_q_t_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "z_t.i_q_t_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "z_t.i_q_t_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t.i_q_t_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "z_t.i_w_3_d_o_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "z_t.i_w_3_d_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "z_t.i_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "z_t.i_c_f_i_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "z_t.i_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "z_t.i_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "z_t.i_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.i_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "z_t.i_w_c_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "z_t.l_a_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.l_i_s_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.l_s_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "z_t.l_s_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "z_t.l_s_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "z_t.l_s_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "z_t.l_s_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t.l_s_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.l_s_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "z_t.l_s_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "z_t.l_s_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "z_t.l_s_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "z_t.l_s_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "z_t.l_s_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "z_t.l_s_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "z_t.l_s_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t.l_s_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "z_t.l_s_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "z_t.l_s_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "z_t.l_s_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "z_t.l_s_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t.l_s_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "z_t.l_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.l_t_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "z_t.l_t_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "z_t.l_t_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "z_t.l_t_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "z_t.l_t_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t.l_t_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "z_t.l_t_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "z_t.l_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "z_t.l_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "z_t.l_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "z_t.l_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "z_t.l_t_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "z_t.l_t_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t.l_t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "z_t.l_t_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "z_t.l_t_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "z_t.l_t_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "z_t.l_t_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t.l_t_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "z_t.l_l", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.m_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.m_t_a_i_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t.m_t_a_i_d_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "tier" + }, + { + "nullable": false, + "fieldPath": "z_t.m_t_a_i_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t.m_t_a_i_m_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "tier" + }, + { + "nullable": false, + "fieldPath": "z_t.m_t_t_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.m_f_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "z_t.m_t_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "duration_minute" + }, + { + "nullable": false, + "fieldPath": "z_t.m_t_a_l_u", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "duration_minute" + }, + { + "nullable": false, + "fieldPath": "z_t.n_o_b_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.o_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t.o_f_l", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.p_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.p_c_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.r_r_i_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.r_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.r_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.r_d_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.r_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.r_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.s_t_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "duration_second" + }, + { + "nullable": false, + "fieldPath": "z_t.s_t_a_l_u", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "duration_second" + }, + { + "nullable": false, + "fieldPath": "z_t.s_i_m_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_f_s_u_2.s_u_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "z_t.s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.s_p_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t.s_p_c_d_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "z_t.s_p_c_d_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.s_p_c_d_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "z_t.s_p_c_d_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "z_t.s_p_c_d_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "z_t.s_p_c_d_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "z_t.s_p_c_d_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "z_t.s_p_c_d_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "z_t.s_p_n_d_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "z_t.s_p_n_d_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.s_p_n_d_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "z_t.s_p_n_d_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "z_t.s_p_n_d_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "z_t.s_p_n_d_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "z_t.s_p_n_d_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "z_t.s_p_n_d_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "z_t.s_p_s_d_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "z_t.s_p_s_d_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.s_p_s_d_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "z_t.s_p_s_d_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "z_t.s_p_s_d_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "z_t.s_p_s_d_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "z_t.s_p_s_d_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "z_t.s_p_s_d_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "z_t.s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.s_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.s_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.t_p_d_n_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.t_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.t_c_d_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.t_f_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t.t_i", + "description": " ", + "isPartOfKey": true, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t_d_d.t_i", + "description": "", + "isPartOfKey": true, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.t_a_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t.t_t_s_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t.t_t_s_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t.t_t_s_w_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t.t_t_s_w_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t.u", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.u_a_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "z_t.u_a_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "z_t.u_a_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "z_t.u_a_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "z_t.u_a_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t.u_a_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "z_t.u_a_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "z_t.u_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "z_t.u_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NullType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute30" + }, + { + "nullable": false, + "fieldPath": "z_t.u_a_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "z_t.u_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "z_t.u_a_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "z_t.u_a_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "z_t.u_a_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t.u_a_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "z_t.u_a_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "z_t.u_a_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "z_t.u_a_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "z_t.u_a_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "z_t.u_a_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "z_t.v_l", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_t.w_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.a_r_f", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.a_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.a_t_t_f_r_s_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.a_t_t_r_s_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.b_w_t_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.b_w_t_h_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "tier" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.b_w_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.b_w_t_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.f_t_t_r_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.f_t_t_r_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.f_t_t_r_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.f_t_t_r_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.f_t_t_r_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.f_t_t_r_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.f_t_t_r_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.f_t_t_r_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.f_t_t_r_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.f_t_t_r_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.f_t_t_r_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.f_t_t_r_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.f_t_t_r_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.f_t_t_r_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.f_t_t_r_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.f_t_t_r_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.f_t_t_r_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.f_t_t_r_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.f_t_t_r_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.m_i", + "description": " ", + "isPartOfKey": true, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.m_t_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.m_t_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.m_t_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.m_t_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.m_t_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.m_t_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.m_t_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.m_t_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.m_t_i_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.m_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.m_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.m_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.m_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.m_t_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.m_t_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.m_t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.m_t_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.m_t_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.m_t_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.m_t_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.m_t_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.q_b_t_t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.q_b_t_t_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.q_b_w_t_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.r_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_e_o", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_e_r_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_e_r_q_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_e_r_q_e_t_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_e_r_q_e_t_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_e_r_q_e_t_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_e_r_q_e_t_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_e_r_q_e_t_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_e_r_q_e_t_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_e_r_q_e_t_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_e_r_q_e_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_e_r_q_e_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_e_r_q_e_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_e_r_q_e_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_e_r_q_e_t_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_e_r_q_e_t_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_e_r_q_e_t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_e_r_q_e_t_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_e_r_q_e_t_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_e_r_q_e_t_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_e_r_q_e_t_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_e_r_q_e_t_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_e_r_q_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_e_r_q_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_e_s_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_e_s_q_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_e_s_q_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_e_s_q_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_e_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_r_t_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_r_t_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_r_t_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_r_t_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_r_t_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_r_t_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_r_t_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_r_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_r_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_r_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_r_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_r_t_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_r_t_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_r_t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_r_t_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_r_t_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_r_t_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_r_t_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_r_t_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_s_t_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_date" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_s_t_d_o_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_month" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_s_t_d_o_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_s_t_d_o_w_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_week_index" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_s_t_d_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_day_of_year" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_s_t_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_s_t_h_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_hour_of_day" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_s_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_minute" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_s_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_s_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_name" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_s_t_m_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_month_num" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_s_t_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_s_t_q_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "date_quarter_of_year" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_s_t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_s_t_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_s_t_t_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_time_of_day" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_s_t_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_s_t_w_o_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "date_week_of_year" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_s_t_y", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + }, + { + "tag": "urn:li:tag:Temporal" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.DateType": {} + } + }, + "recursive": false, + "nativeDataType": "date_year" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.t_i", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.t_t_f_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.t_t_f_r_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.t_t_f_r_h_b", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "tier" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.t_t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.t_t_r_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.i_t_t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.t_t_r_m_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.EnumType": {} + } + }, + "recursive": false, + "nativeDataType": "tier" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.t_t_s_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.t_t_t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.t_t_t_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.t_t_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.w_t_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.w_t_s_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "s_n.d_t_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_n.d_t_b_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_n.d_t_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_n.d_t_t_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_n.d_t_u", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_n.d_t_u_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_n.f_o_c_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_n.p_t_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_n.p_t_b_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_n.p_t_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_n.p_t_t_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_n.p_t_u", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_n.p_t_u_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_n.p_t_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_n.p_t_b_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_n.p_t_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_n.p_t_t_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_n.p_t_u", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "s_n.p_t_u_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_n.r_n_u", + "description": " ", + "isPartOfKey": true, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Dimension" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.a_t_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.a_c_p_c_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.a_c_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.a_m_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.b_e_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "b_h.b_h_i_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.b_s_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.c_w_t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.c_w_t_r_f_q_t_a_c_q_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.c_w_t_r_f_q_t_a_c_q_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.d_m_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.f_q_t_a_c_q_m_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.f_q_t_a_c_q_m_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.i_c_t_a_c_m_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.i_c_r_i_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.i_i_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.i_c_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.i_c_c_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "i_h.i_h_i_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.l", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.m_c_w_3_d_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.p_c_l_t_m_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.q_r_a_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.t_a_r_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.t_b_s_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.t_c_w_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.t_c_w_t_n_f_q_t_a_c_q_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.t_c_s_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.t_e_t_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.t_f_q_t_a_c_q_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.t_f_q_t_a_c_q_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.t_f_q_t_a_c_q_m_a_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.t_i_c_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.t_i_i_c_r_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.t_i_i_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.t_i_a_t_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.t_i_c_t_a_c_m_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.t_i_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "sum" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.t_l", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.t_l_c_t_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.t_v_t_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "m_c_i_c.t_w_l_c_t_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "m_c_i.c_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "m_c_i.i_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "m_c_e.e_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "a_b_v_m.a_q_m_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "a_b_v_m.a_q_m_r_n_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "a_b_v_m.a_q_m_r_f_c_r_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "a_b_v_m.a_q_m_r_f_c_r_m_a_o", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "a_b_v_m.a_q_m_r_f_c_r_a_s_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "a_b_v_m.a_q_m_r_f_o", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "a_b_v_m.a_q_m_r_f_s_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "a_b_v_m.a_q_m_r_u_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "a_b_v_m.c_q_t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "a_b_v_m.c_r_m_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "a_b_v_m.c_r_m_r_u_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "a_b_v_m.c_r_m_r_u_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "a_b_v_m.c_r_m_r_u_c_n_s_m_o_o", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "a_b_v_m.k_q_t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "a_b_v_m.o_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "a_b_v_m.p_r_a_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "a_b_v_m.q_t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "a_b_v_m.s_m_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "a_b_v_m.q_t_f_o_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "a_b_v_m.q_t_f_c_r_m_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "a_b_v_m.q_t_f_c_r_a_o_m_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "a_b_v_m.q_t_f_c_r_a_s_m_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "a_b_v_m.q_t_f_s_m_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "a_b_v_m.u_q_t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "a_b_v_m.u_c_f_u_r_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "a_b_v_m.u_c_r_a_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "a_b_v_m.u_c_a_q_r_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "a_b_v_m.u_c_a_q_r_a_f_s_m_o_o_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "n_p.A_N_D_A", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average_distinct" + }, + { + "nullable": false, + "fieldPath": "n_p.A_Q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average_distinct" + }, + { + "nullable": false, + "fieldPath": "n_p.A_n_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average_distinct" + }, + { + "nullable": false, + "fieldPath": "n_p.a_t_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average_distinct" + }, + { + "nullable": false, + "fieldPath": "n_p.a_t_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average_distinct" + }, + { + "nullable": false, + "fieldPath": "n_p.P_A_G_o_T", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "n_p.P_A_G_w_1_w_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "n_p.P_A_G_w_2_w_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "n_p.P_G_G_o_T", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "n_p.P_G_G_w_1_w_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "n_p.P_G_G_w_2_w_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "n_p.P_I_A", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "n_p.P_T_A", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "n_p.P_T_G", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "n_p.P_T_I", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "n_p.P_V_A", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "n_p.t_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "n_p.t_a", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "n_p.t_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "sum_distinct" + }, + { + "nullable": false, + "fieldPath": "n_p.t_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "n_p.t_i_a", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "sum_distinct" + }, + { + "nullable": false, + "fieldPath": "n_p.t_r_1_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "sum_distinct" + }, + { + "nullable": false, + "fieldPath": "n_p.t_r_2_w", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "sum_distinct" + }, + { + "nullable": false, + "fieldPath": "n_p.t_v_a", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "sum_distinct" + }, + { + "nullable": false, + "fieldPath": "n_p.t_o_t_g", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "sum_distinct" + }, + { + "nullable": false, + "fieldPath": "a_r_w_c.e_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "a_r_w_c.e_r_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "a_r_w_c.p_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "a_r_w_c.p_r_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "a_r_w_c.r_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "a_r_w_c.r_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "a_r_w_c.t_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "7_n_e_a_a.s_p_a", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "a_a_d_g_d.c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count" + }, + { + "nullable": false, + "fieldPath": "c_r_c.c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "f_c_l.a_a_c_w_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "f_c_l.a_a_c_w_t_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "f_c_l.a_h_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "f_c_l.a_h_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "f_c_l.a_h_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "f_c_l.a_h_t_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "f_c_l.a_t_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "f_c_l.a_t_t_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "f_c_l.c_v", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "f_c_l.d_c_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "f_c_l.i_d_c_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "f_c_l.t_h_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "sum" + }, + { + "nullable": false, + "fieldPath": "f_c_l.w_t_i_q_7_p_i_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "percentile" + }, + { + "nullable": false, + "fieldPath": "f_c_l.w_t_i_q_8_p_i_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "percentile" + }, + { + "nullable": false, + "fieldPath": "f_c_l.w_t_i_q_9_p_i_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "percentile" + }, + { + "nullable": false, + "fieldPath": "f_c_l.w_t_i_q_a_i_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "f_c_l.w_t_i_q_m_i_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "percentile" + }, + { + "nullable": false, + "fieldPath": "i_s_g.a_p_i_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "i_s_g.a_p_i_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "i_s_g.a_p_t_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "i_s_g.a_p_t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "i_s_g.a_m_s_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "i_s_g.i_v_a_i_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "i_s_g.i_v_a_i_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "i_s_g.i_v_a_t_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "i_s_g.i_v_a_t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "i_s_g.i_v_c_i_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "i_s_g.i_v_c_t_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "i_s_g.i_v_c_t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "i_s_g.i_v_c_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "i_s_g.i_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "i_s_g.m_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "i_s_g.m_f_i_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "i_s_g.m_f_i_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "i_s_g.m_f_t_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "i_s_g.m_f_t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "i_s_g.m_m_i_r_i_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "i_s_g.m_m_i_r_i_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "i_s_g.m_m_i_r_t_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "i_s_g.m_m_i_r_t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "i_s_g.m_u_a_l_i_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "i_s_g.m_u_a_l_i_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "i_s_g.m_u_a_l_t_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "i_s_g.m_u_a_l_t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "i_s_g.p_c_i_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "i_s_g.p_c_i_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "i_s_g.p_c_t_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "i_s_g.p_c_t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "i_s_g.p_d_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "i_s_g.p_p_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "i_s_g.p_p_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "i_s_g.p_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "i_s_g.t_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "c_r_t.i_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "c_r_t.m_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "c_r_t.t_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "c_c_r.c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count" + }, + { + "nullable": false, + "fieldPath": "c_m_e.t_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "c_i.c_t_i", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "c_m_d.a_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average_distinct" + }, + { + "nullable": false, + "fieldPath": "c_m_d.b_m_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "c_m_d.c_i_t_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "c_m_d.c_i_t_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "c_m_d.c_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "c_m_d.e_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "c_m_d.m_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "median" + }, + { + "nullable": false, + "fieldPath": "c_m_d.m_s_l", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "median" + }, + { + "nullable": false, + "fieldPath": "c_m_d.m_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "c_m_d.p_u_m_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "c_m_d.r_b_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "c_m_d.s_m_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "c_m_d.s_i_t_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "c_c_t.a_t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "c_c_t.t_a_i_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "c_c_t.t_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "c_c_t.t_u", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "c_f.c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count" + }, + { + "nullable": false, + "fieldPath": "o_c_s_c.e_p_m_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "o_c_s_c.h_r_m_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "o_c_s_c.m_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "o_c_s_c.s_l_m_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "o_c_s_c.s_b_m_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "d_z.d_i_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "d_r_r.d_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "d_r_r.r_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "d_r_r.r_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "d_z.t_i_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "e.c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "e.u_u", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "m_s_f.c_c_t_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "m_s_f.c_c_t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_s_f.d_q_t_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "m_s_f.d_t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_s_f.f_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "m_s_f.f_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_s_f.i_c_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "m_s_f.i_a_t_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "m_s_f.i_a_t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_s_f.m_e_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "m_s_f.m_e_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_s_f.s_t_i_5_d_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "m_s_f.s_t_i_5_d_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "f_t_t.c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "m_c_b_p.a_p_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "m_c_b_p.c_a_p_u_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_c_b_p.c_f_p_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_c_b_p.c_p_u_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_c_b_p.f_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_b_p.f_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_c_b_p.f_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_c_b_p.i_A", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_c_b_p.i_c_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "m_c_b_p.i_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "m_c_b_p.m_p_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "m_c_b_p.n_t_r_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "m_c_b_p.n_p_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "m_c_b_p.p_a_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_c_b_p.p_p_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_c_b_p.p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_b_p.r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "m_c_b_p.t_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_c_b_p.t_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "i_c_r.c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count" + }, + { + "nullable": false, + "fieldPath": "m_i_e.c_w_a", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "m_i_e.i_a_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "m_i_e.i_c_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "m_i_e.i_e_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "m_i_e.m_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "m_i_e.t_i_e", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "m_i_e.t_i_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.TimeType": {} + } + }, + "recursive": false, + "nativeDataType": "date_raw" + }, + { + "nullable": false, + "fieldPath": "i_t.c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count" + }, + { + "nullable": false, + "fieldPath": "i_d_t.a_d_t_c_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "i_d_t.a_d_t_i_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "i_d_t.a_r_t_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "i_d_t.a_t_t_a_i_h_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "i_d_t.a_t_t_a_i_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "i_d_t.a_t_t_a_i_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "i_d_t.C_i_2_d_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "i_d_t.C_i_2_d_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "i_d_t.c_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "i_d_t.c_w_2_p_r_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "i_d_t.c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count" + }, + { + "nullable": false, + "fieldPath": "i_d_t.d_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "i_d_t.d_c_e_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "i_d_t.i_d_i_2_d_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "i_d_t.i_d_i_2_d_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "i_d_t.o_d_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "i_d_t.r_p_t_d_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "i_d_t.s_d_r_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "i_d_t.u_d_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "l_c.a_t_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "l_c.a_c_p_c_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_c.a_c_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "l_c.a_m_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "l_c.b_e_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_c.b_s_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "l_c.c_w_t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_c.c_w_t_r_f_q_t_a_c_q_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_c.c_w_t_r_f_q_t_a_c_q_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_c.d_m_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "l_c.f_q_t_a_c_q_m_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_c.f_q_t_a_c_q_m_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_c.i_c_t_a_c_m_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_c.i_c_r_i_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_c.i_i_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_c.i_c_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "l_c.i_c_c_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "l_c.l", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_c.m_c_w_3_d_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "l_c.p_c_l_t_m_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_c.q_r_a_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_c.t_a_r_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "l_c.t_b_s_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "l_c.t_c_w_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "l_c.t_c_w_t_n_f_q_t_a_c_q_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "l_c.t_c_s_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "l_c.t_e_t_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "l_c.t_f_q_t_a_c_q_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "l_c.t_f_q_t_a_c_q_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "l_c.t_f_q_t_a_c_q_m_a_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "l_c.t_i_c_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "l_c.t_i_i_c_r_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "l_c.t_i_i_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "l_c.t_i_a_t_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "l_c.t_i_c_t_a_c_m_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "l_c.t_i_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "sum" + }, + { + "nullable": false, + "fieldPath": "l_c.t_l", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "l_c.t_l_c_t_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "l_c.t_v_t_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "l_c.t_w_l_c_t_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "l_s_d.a_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "l_s_d.a_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "l_s_d.a_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "l_s_d.a_s_r_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "l_s_d.a_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_s_d.a_a_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "l_s_d.a_a_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "l_s_d.a_a_s_r_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "l_s_d.a_a_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_s_d.a_c_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "l_s_d.a_e_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "l_s_d.c_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_s_d.c_c_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_s_d.c_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_s_d.C_c_s_r_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "l_s_d.C_c_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "l_s_d.C_c_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "l_s_d.C_s_r_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "l_s_d.C_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "l_s_d.C_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "l_s_d.d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "l_s_d.e_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_s_d.e_a_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "l_s_d.e_a_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "l_s_d.e_a_s_r_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "l_s_d.e_a_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_s_d.i_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "l_s_d.i_c_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "l_s_d.i_c_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "l_s_d.i_c_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_s_d.i_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "l_s_d.i_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_s_d.i_c_s_r_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "l_s_d.i_s_r_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "l_s_d.l_c_a_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "l_s_d.l_c_a_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "l_s_d.l_c_a_s_r_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "l_s_d.l_c_a_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_s_d.p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "l_s_d.p_a_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_s_d.p_a_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_s_d.p_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_s_d.p_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_s_d.p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "l_s_d.r_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_s_d.r_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_s_d.s_c_c_s_r_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "l_s_d.s_c_c_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "l_s_d.s_c_c_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "l_s_d.s_c_c_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_s_d.s_c_s_r_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "l_s_d.s_c_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "l_s_d.s_c_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "l_s_d.s_c_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_s_d.S_r_g", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_s_d.t_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "l_s_d.t_s_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "l_s_d.t_s_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "l_s_d.v_a_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "l_s_d.v_a_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "l_s_d.v_a_s_r_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "l_s_d.v_a_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_s_d.s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_s_d.s_g", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_l_f.a_a", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "l_l_f.a_p", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "l_l_f.d_o", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "sum" + }, + { + "nullable": false, + "fieldPath": "l_l_f.l_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "l_l_f.l_c_f", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_l_f.l_c_p_o", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_l_f.l_c_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_l_f.r_i_r_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "sum" + }, + { + "nullable": false, + "fieldPath": "l_l_f.t_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "sum" + }, + { + "nullable": false, + "fieldPath": "l_l_f.t_d_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "sum" + }, + { + "nullable": false, + "fieldPath": "l_l_f.t_d_p", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "sum" + }, + { + "nullable": false, + "fieldPath": "l_l_f.t_o_e", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "sum" + }, + { + "nullable": false, + "fieldPath": "l_l_f.t_p_e", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "sum" + }, + { + "nullable": false, + "fieldPath": "l_l_f.t_p_s", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "sum" + }, + { + "nullable": false, + "fieldPath": "l_l_f.t_p_s_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "sum" + }, + { + "nullable": false, + "fieldPath": "l_l_f.t_p_s_d_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "sum" + }, + { + "nullable": false, + "fieldPath": "l_l_f.u_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "l_l_f.w_a_a", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_c_m_d.c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count" + }, + { + "nullable": false, + "fieldPath": "l_c_c_r.c_r_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "l_c_c_r.d_c_r_u", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "l_c_s.a_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_c_s.a_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_c_s.a_l_c_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_c_s.a_h_t_i_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_c_s.a_h_t_i_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_c_s.a_t_a_s_w_f_m_r_i_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_c_s.a_t_m_s_w_f_a_r_i_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_c_s.a_t_s_i_w_u_i_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "l_c_s.a_w_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_c_s.c_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_c_s.c_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_c_s.h_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_c_s.h_p_a_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_c_s.i_s_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_c_s.l_c_a_r_i_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_c_s.n_a_c_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "l_c_s.r_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_c_s.s_a_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_c_s.s_n_o_a_m_s_w_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_c_s.s_n_o_a_m_w_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_c_s.s_n_o_h_m_s_w_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_c_s.s_n_o_h_m_w_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_c_s.s_n_o_m_m_s_w_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_c_s.s_n_o_m_m_w_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_c_s.s_n_o_m_w_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_c_s.s_t_t_a_s_w_f_m_r_i_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_c_s.s_t_t_m_s_w_f_a_r_i_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_c_s.t_s_i_w_u_a_i_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "l_c_s.t_n_o_m_m_w_s_a_a_j", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_c_s.t_n_o_m_m_w_s_a_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_c_s.t_t_s_i_i_i_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "sum" + }, + { + "nullable": false, + "fieldPath": "l_c_s.t_t_s_i_q_i_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "l_c_s.t_t_s_i_w_u_i_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "sum" + }, + { + "nullable": false, + "fieldPath": "l_c_s.w_t_i_q_m_i_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_m.c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_t_m.m_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_m.m_u_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_m.r_m_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_m_u.s_p_a", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_m_u.u_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_b_s.a_d_f_l_s_t_c_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average_distinct" + }, + { + "nullable": false, + "fieldPath": "m_b_s.a_e_c_p_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "m_b_s.a_i_c_p_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "m_b_s.a_m_c_p_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "m_b_s.a_s_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "m_b_s.a_t_o_t_a", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "m_b_s.D_t_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "m_b_s.e_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "sum_distinct" + }, + { + "nullable": false, + "fieldPath": "m_b_s.m_u_b_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "m_b_s.n_f_s_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "m_b_s.p_r_w_o_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_b_s.p_r_w_s_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_b_s.p_o_s_i_r_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_b_s.s_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "m_b_s.s_s_i_c_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "m_b_s.s_w_o_d_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "m_b_s.s_w_s_d_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "m_b_s.s_w_i_r_h_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "m_b_s.t_r_s_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "m.a_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average_distinct" + }, + { + "nullable": false, + "fieldPath": "m.b_m_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m.c_i_t_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m.c_i_t_r", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m.c_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "m.e_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m.m_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "median" + }, + { + "nullable": false, + "fieldPath": "m.m_s_l", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "median" + }, + { + "nullable": false, + "fieldPath": "m.m_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "m.p_u_m_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m.r_b_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m.s_m_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m.s_i_t_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_i_c.a_i_p_m_b_p_s_a", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average_distinct" + }, + { + "nullable": false, + "fieldPath": "m_i_c.a_i_p_m_b_p_s_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "max" + }, + { + "nullable": false, + "fieldPath": "m_i_c.a_i_p_m_b_p_s_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "min" + }, + { + "nullable": false, + "fieldPath": "m_i_c.a_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "m_i_c.a_t_i_i_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average_distinct" + }, + { + "nullable": false, + "fieldPath": "m_i_c.a_t_i_a_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average_distinct" + }, + { + "nullable": false, + "fieldPath": "m_i_c.c_i_c_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "m_i_c.i_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "m_i_c.i_c_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "m_i_c.o_i_n_a_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "m_i_c.t_t_i_i_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "sum_distinct" + }, + { + "nullable": false, + "fieldPath": "o_m_s.a_c_m_l_9_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "o_m_s.a_c_l_9_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "o_m_s.a_r_l_9_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "o_m_s.u_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "q_n_n.n_s_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "q_n_n.n_s_c_1_t_7", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "q_n_n.n_s_c_1_t_9", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "q_n_n.n_s_c_6_t_3", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "q_n_n.n_s_c_l", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "q_n_n.n_s_c_l_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "q_n_n.n_s_c_l", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "q_n_n.n_s_c_l_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "q_n_n.n_s_c_l", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "q_n_n.n_s_c_l_q", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_p_d.a_p_s", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "sum_distinct" + }, + { + "nullable": false, + "fieldPath": "s_p_d.c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "p_e.a_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "p_e.a_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "p_e.c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "p_e_s.c_e_s", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count" + }, + { + "nullable": false, + "fieldPath": "p_e.q_p_r_b_l_c_t_b", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "p_e.q_p_r_b_l_c_t_b_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "p_e.t_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "sum" + }, + { + "nullable": false, + "fieldPath": "s_s.a_n_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "s_s.a_n_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "s_s.A_p_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "s_s.a_p_s_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "s_s.c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count" + }, + { + "nullable": false, + "fieldPath": "s_s.m_p_s_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.a_f_r_t_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.a_f_r_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.a_f_r_t_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.e_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.s_e_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.s_e", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.s_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.t_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_q_f_r_t.s_t_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "o_s.c_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "o_s.m_w_t_s", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "percentile" + }, + { + "nullable": false, + "fieldPath": "o_s.n_s_a_c_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "o_s.p_w_t_s", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "percentile" + }, + { + "nullable": false, + "fieldPath": "o_s.p_w_t_s", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "percentile" + }, + { + "nullable": false, + "fieldPath": "o_s.p_w_t_s", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "percentile" + }, + { + "nullable": false, + "fieldPath": "o_s.p_w_t_s", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "percentile" + }, + { + "nullable": false, + "fieldPath": "o_s.s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "o_s.s_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "o_s.u_m_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_e.e_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "s_e.h_c_e_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "s_e.m_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "s_e.p_o_e_w_h_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_e.r_e_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "running_total" + }, + { + "nullable": false, + "fieldPath": "s_e.r_m_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "running_total" + }, + { + "nullable": false, + "fieldPath": "s_a_a.a_p_v_p_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "s_a_a.c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "s_v_f.n_s_s_o_v_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_v_f.s_s_o_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "s_v_f.s_v_o_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "s_v_f.s_v_a_s_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "s_a_a.t_s_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_t_f_s_u.t_t_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "s_a_a.t_v_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "s_f_l.c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count" + }, + { + "nullable": false, + "fieldPath": "s_f_l.f_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_f_l.t_f", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "s_f_l.t_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "s_f_l.t_n", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "s_f_l.t_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "s_g.c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "s_g.f_g_c_n_e_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "s_g.f_g_d_l_b_5_a_1_c_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "s_g.f_g_s_h_a_c_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "s_g.f_g_t_i_3_o_m_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "s_g.f_g_t_l_b_2_a_8_c_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "s_g.f_g_u_i_l_9_d_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "s_g.f_g_v_i_l_9_d_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "s_g.f_u_t_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "s_g.s_c_h_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_g.t_f_g", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_u_a.a_c_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "s_u_a.a_c_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "s_u_a.a_c_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "s_u_a.a_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "s_u_a.t_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "sum" + }, + { + "nullable": false, + "fieldPath": "s_u_a.t_c_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "sum" + }, + { + "nullable": false, + "fieldPath": "s_u_a.t_c_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "sum" + }, + { + "nullable": false, + "fieldPath": "s_u_a.t_c_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "sum" + }, + { + "nullable": false, + "fieldPath": "s_u_a.t_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "sum" + }, + { + "nullable": false, + "fieldPath": "s_a_g_b.a_g_b_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "sum_distinct" + }, + { + "nullable": false, + "fieldPath": "s_a_g_b.a_g_b_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "s_a_g_b.a_g_b_p_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_a_g_b.m_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "s_c.c_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_c.s_c_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "s_c.s_c_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_c.s_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "s_c.t_c_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "s_c.t_s_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "s_c.t_c_p_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_a_a.s_p_a", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_a_a.u_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_a_q.c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.a_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.a_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.a_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.a_s_r_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.a_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.a_a_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.a_a_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.a_a_s_r_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.a_a_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.a_c_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.a_e_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.c_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.c_c_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.c_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.C_c_s_r_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.C_c_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.C_c_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.C_s_r_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.C_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.C_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.e_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.e_a_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.e_a_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.e_a_s_r_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.e_a_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.i_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.i_c_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.i_c_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.i_c_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.i_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.i_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.i_c_s_r_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.i_s_r_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.l_c_a_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.l_c_a_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.l_c_a_s_r_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.l_c_a_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.p_a_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.p_a_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.p_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.p_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.r_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.r_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.s_c_c_s_r_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.s_c_c_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.s_c_c_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.s_c_c_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.s_c_s_r_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.s_c_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.s_c_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.s_c_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.S_r_g", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.t_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.t_s_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.t_s_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.v_a_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.v_a_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.v_a_s_r_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.v_a_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "s_d_s_m.s_g", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.a_s_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.a_a_h_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.a_a_h_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.a_a_h_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.a_a_t_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.a_a_w_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.a_t_a_h_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.a_t_a_t_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.a_t_a_w_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.a_t_h_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.a_t_h_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.a_t_t_q_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.a_w_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.e_t_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.e_u_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.e_u_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.s_p_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.s_p_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.t_e_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.a_l_u_t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.t_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.t_t_q_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.t_a_f_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.t_a_h_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "sum" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.t_a_h_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "sum" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.t_a_t_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "sum" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.t_a_w_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "sum" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.t_f_t_u", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.t_n_f_t_u", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.t_p_a_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.t_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.t_t_u", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.t_t_u_w_f_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.t_u", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.t_i_q_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.t_u_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.t_b_a_t_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.t_b_a_p_t_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.u_p_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.u_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.w_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_a_h.t_s_a_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_s_z_t_c.a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "m_s_z_t_c.a_a_h_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "m_s_z_t_c.c_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_s_z_t_c.f_c_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "m_s_z_t_c.i_a_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "m_s_z_t_c.i_c_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "m_s_z_t_c.m_c_r_b_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_s_z_t_c.p_a_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "m_s_z_t_c.p_c_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "m_s_z_t_c.t_u_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "m_s_z_t_c.t_u_p_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "m_s_z_t_c.t_u", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "m_s_z_t_c.t_a_h_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "sum" + }, + { + "nullable": false, + "fieldPath": "m_s_z_t_c.w_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.l_c_p_o_a_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.l_c_t_l", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.a_w_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.a_s_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.a_t_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.a_c_d_t_f_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.a_f_d_t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.a_h_t_i_m_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.a_s_p_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.a_f_r_t_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.a_f_r_t_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.a_f_r_t_s", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.a_m_t_a_i_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.c_f_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.d_i_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.d_m_a_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "sum" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.e_s_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.e_t_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.f_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.l_c_s_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.l_c_t_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.m_f_r_t_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.m_f_r_t_s", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "percentile" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.m_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.p_f_r_t_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.p_f_r_t_s", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "percentile" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.p_f_r_t_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.p_f_r_t_s", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "percentile" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.p_f_r_t_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.p_f_r_t_s", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "percentile" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.p_r_i_1_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.s_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.s_p_d_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.s_f_r_t_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.s_o_f_r_t_s", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.s_o_t_t_s_w_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "sum" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.s_o_t_t_s_w_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "sum" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.t_a_h_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.t_a_h_a_l_u", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.t_a_h_l_u_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "percentile" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.t_a_h_l_u_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "percentile" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.t_a_h_l_u_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "percentile" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.t_a_h_l_u_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "percentile" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.t_a_h_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "percentile" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.t_a_h_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "percentile" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.t_a_h_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "percentile" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.t_a_h_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "percentile" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.t_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.t_v_l_w_v_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.t_f_o", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.t_s_p_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "sum" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.v_s_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.v_t_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.w_t_e", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.BooleanType": {} + } + }, + "recursive": false, + "nativeDataType": "yesno" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.w_l_c_t_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.w_a_r_i_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.w_c_b_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.w_r_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.w_r_t_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.w_s_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.w_s_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.w_t_b_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_t_f_h_o_s.w_t_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "t_t_s_l_u_h.s_o_t_t_s_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "t_t_s_l_u_h.s_o_t_t_s_s", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "p_u.a_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "p_u.a_r_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "p_u.a_q_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "p_u.a_s_q_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "p_u.a_e_q_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "p_u.a_e_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "p_u.a_q_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average_distinct" + }, + { + "nullable": false, + "fieldPath": "p_u.c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "p_u.e_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "p_u.e_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "p_u.c_e_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "p_u.q_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "p_u.s_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "p_u.s_p_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "p_u.s_p_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "p_u.t_e_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "sum_distinct" + }, + { + "nullable": false, + "fieldPath": "p_u.t_s_m_p", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "sum_distinct" + }, + { + "nullable": false, + "fieldPath": "p_u.t_s_p", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "sum_distinct" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.a_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.a_w_s_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "sum" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.a_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.a_v_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.a_c_w_t_a_i_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.a_c_w_t_s_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.a_c_w_t_s_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.a_h_t_i_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.a_m_t_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.StringType": {} + } + }, + "recursive": false, + "nativeDataType": "string" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.a_h_t_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.a_s_o_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.a_t_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.c_v", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "sum" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.c_t_s_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.c_t_s_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.c_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.d_c_v", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.h_t_s_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.h_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.i_s_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "sum" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.i_d_c_v", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.n_a_c_v", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "sum_distinct" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.s_a_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.t_t_s_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.t_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.t_h_t", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "sum_distinct" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.t_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.a_t_h_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.v_a_r_i_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.w_t_i_q_7_p_i_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.w_t_i_q_8_p_i_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.w_t_i_q_9_p_i_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.w_t_i_q_a_i_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "f_c_a_s.w_t_i_q_m_i_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.a_t_r_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.a_t_r_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.a_t_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.a_t_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.a_g_p_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.e_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.e_t_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.t_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.t_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.t_t_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.t_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_t_g_h.v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_t.l_c_p_o_a_v", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t.l_c_t_l", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t.a_w_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t.a_s_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_t.a_t_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_t.a_c_d_t_f_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "z_t.a_f_d_t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "z_t.a_h_t_i_m_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t.a_s_p_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "z_t.a_f_r_t_d", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t.a_f_r_t_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t.a_f_r_t_s", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t.a_m_t_a_i_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "z_t.c_f_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_t.d_i_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_t.d_m_a_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "sum" + }, + { + "nullable": false, + "fieldPath": "z_t.e_s_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_t.e_t_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_t.f_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t.l_c_s_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_t.l_c_t_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_t.m_f_r_t_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t.m_f_r_t_s", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "percentile" + }, + { + "nullable": false, + "fieldPath": "z_t.m_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_t.p_f_r_t_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t.p_f_r_t_s", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "percentile" + }, + { + "nullable": false, + "fieldPath": "z_t.p_f_r_t_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t.p_f_r_t_s", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "percentile" + }, + { + "nullable": false, + "fieldPath": "z_t.p_f_r_t_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t.p_f_r_t_s", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "percentile" + }, + { + "nullable": false, + "fieldPath": "z_t.p_r_i_1_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t_d_d.p_r_w_d_d", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t.s_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_t.s_p_d_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_t.s_f_r_t_m", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t.s_o_f_r_t_s", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t.s_o_t_t_s_w_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "sum" + }, + { + "nullable": false, + "fieldPath": "z_t.s_o_t_t_s_w_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "sum" + }, + { + "nullable": false, + "fieldPath": "z_t.t_a_h_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "z_t.t_a_h_a_l_u", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "z_t.t_a_h_l_u_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "percentile" + }, + { + "nullable": false, + "fieldPath": "z_t.t_a_h_l_u_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "percentile" + }, + { + "nullable": false, + "fieldPath": "z_t.t_a_h_l_u_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "percentile" + }, + { + "nullable": false, + "fieldPath": "z_t.t_a_h_l_u_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "percentile" + }, + { + "nullable": false, + "fieldPath": "z_t.t_a_h_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "percentile" + }, + { + "nullable": false, + "fieldPath": "z_t.t_a_h_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "percentile" + }, + { + "nullable": false, + "fieldPath": "z_t.t_a_h_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "percentile" + }, + { + "nullable": false, + "fieldPath": "z_t.t_a_h_p", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "percentile" + }, + { + "nullable": false, + "fieldPath": "z_t.t_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_t.t_v_l_w_v_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t.t_f_o", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t.t_s_p_a", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "sum" + }, + { + "nullable": false, + "fieldPath": "z_t.v_s_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_t.v_t_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_t.w_l_c_t_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_t.w_a_r_i_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t.w_r_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t.w_r_t_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_t.w_s_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_t.w_s_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_t.w_t_b_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_t.w_t_c", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.a_b_w_t_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.a_b_w_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.a_q_b_t_t_r_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.a_q_b_t_t_r_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.a_q_b_t_t_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.a_q_b_t_t_t_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.a_t_t_f_r_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.a_t_t_f_r_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.a_i_t_t_r_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.a_t_t_r_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.a_t_t_r_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.a_t_t_s_r_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.a_t_t_s_r_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.a_t_t_t_r_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.a_t_t_t_r_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.a_t_t_t_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "average" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.a_p_t", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.c_f_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.c_f_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.c_s_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.c_t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.m_b_w_t_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "percentile" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.m_t_t_f_r_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "percentile" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.m_t_t_f_r_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "percentile" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.m_t_t_r", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "percentile" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.m_t_t_r_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "percentile" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.p_b_w_t_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "median" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.p_b_w_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "median" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.p_t_t_t_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "median" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.p_b_w_t_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "percentile" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.p_b_w_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "percentile" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.p_t_t_f_r_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "percentile" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.p_t_t_f_r_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "percentile" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.p_t_t_r_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "percentile" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.p_t_t_r_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "percentile" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.p_t_t_t_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "percentile" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.p_b_w_t_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "percentile" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.p_b_w_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "percentile" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.p_t_t_f_r_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "percentile" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.p_t_t_f_r_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "percentile" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.p_t_t_r_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "percentile" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.p_t_t_r_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "percentile" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.p_t_t_t_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "percentile" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.p_b_w_t_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "percentile" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.p_b_w_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "percentile" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.p_t_t_f_r_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "percentile" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.p_t_t_f_r_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "percentile" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.p_t_t_r_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "percentile" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.p_t_t_r_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "percentile" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.p_t_t_t_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "percentile" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.p_b_w_t_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "percentile" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.p_b_w_t_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "percentile" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.p_t_t_f_r_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "percentile" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.p_t_t_f_r_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "percentile" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.p_t_t_r_m", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "percentile" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.p_t_t_r_s", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "percentile" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.p_t_t_t_h", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "percentile" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.q_b_s_a_r_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.q_b_s_c_a_r_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_1_r_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_1_r_w_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_2_r_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_3_r_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_4_r_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_a_r_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "number" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_c_a_r_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_c_f_r_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_c_f_r_w_1", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_c_f_r_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_c_s_r_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.s_c_t_r_w", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.u_m_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "z_w_r_t.u_t_c", + "description": " ", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + }, + { + "nullable": false, + "fieldPath": "last_of.6800_cols", + "description": "", + "isPartOfKey": false, + "label": " ", + "globalTags": { + "tags": [ + { + "tag": "urn:li:tag:Measure" + } + ] + }, + "type": { + "type": { + "com.linkedin.schema.NumberType": {} + } + }, + "recursive": false, + "nativeDataType": "count_distinct" + } + ], + "schemaName": "test-large-schema", + "version": 0, + "hash": "", + "platform": "urn:li:dataPlatform:looker" + } + } + ] + } + }, + "proposedDelta": null + } +] \ No newline at end of file