diff --git a/datahub-graphql-core/src/main/java/com/linkedin/datahub/graphql/types/mlmodel/mappers/MLModelGroupPropertiesMapper.java b/datahub-graphql-core/src/main/java/com/linkedin/datahub/graphql/types/mlmodel/mappers/MLModelGroupPropertiesMapper.java index 2da2fa2a58a6af..1e0b476aeca817 100644 --- a/datahub-graphql-core/src/main/java/com/linkedin/datahub/graphql/types/mlmodel/mappers/MLModelGroupPropertiesMapper.java +++ b/datahub-graphql-core/src/main/java/com/linkedin/datahub/graphql/types/mlmodel/mappers/MLModelGroupPropertiesMapper.java @@ -52,6 +52,10 @@ public MLModelGroupProperties apply( TimeStampToAuditStampMapper.map(context, mlModelGroupProperties.getLastModified())); } + if (mlModelGroupProperties.getExternalUrl() != null) { + result.setExternalUrl(mlModelGroupProperties.getExternalUrl().toString()); + } + result.setCustomProperties( CustomPropertiesMapper.map(mlModelGroupProperties.getCustomProperties(), entityUrn)); diff --git a/datahub-graphql-core/src/main/resources/entity.graphql b/datahub-graphql-core/src/main/resources/entity.graphql index 96b1dc544d2041..9099378b79a6b0 100644 --- a/datahub-graphql-core/src/main/resources/entity.graphql +++ b/datahub-graphql-core/src/main/resources/entity.graphql @@ -10112,11 +10112,19 @@ type MLModelGroupProperties { """ customProperties: [CustomPropertiesEntry!] + """ + URL to view this model group in the external system + """ + externalUrl: String + + """ Deprecated creation timestamp @deprecated Use the 'created' field instead """ createdAt: Long @deprecated(reason: "Use `created` instead") + + } """ diff --git a/datahub-web-react/src/app/entityV2/dataJob/DataJobEntity.tsx b/datahub-web-react/src/app/entityV2/dataJob/DataJobEntity.tsx index a3a179457e8343..ce88fd2f67f6c9 100644 --- a/datahub-web-react/src/app/entityV2/dataJob/DataJobEntity.tsx +++ b/datahub-web-react/src/app/entityV2/dataJob/DataJobEntity.tsx @@ -55,6 +55,7 @@ const headerDropdownItems = new Set([ EntityMenuItems.SHARE, EntityMenuItems.UPDATE_DEPRECATION, EntityMenuItems.ANNOUNCE, + EntityMenuItems.EXTERNAL_URL, ]); /** diff --git a/datahub-web-react/src/app/entityV2/dataProcessInstance/DataProcessInstanceEntity.tsx b/datahub-web-react/src/app/entityV2/dataProcessInstance/DataProcessInstanceEntity.tsx index 97b84b81222867..b92038f75a2fed 100644 --- a/datahub-web-react/src/app/entityV2/dataProcessInstance/DataProcessInstanceEntity.tsx +++ b/datahub-web-react/src/app/entityV2/dataProcessInstance/DataProcessInstanceEntity.tsx @@ -80,7 +80,12 @@ export class DataProcessInstanceEntity implements Entity { // useUpdateQuery={useUpdateDataProcessInstanceMutation} getOverrideProperties={this.getOverridePropertiesFromEntity} headerDropdownItems={ - new Set([EntityMenuItems.UPDATE_DEPRECATION, EntityMenuItems.RAISE_INCIDENT, EntityMenuItems.SHARE]) + new Set([ + EntityMenuItems.UPDATE_DEPRECATION, + EntityMenuItems.RAISE_INCIDENT, + EntityMenuItems.SHARE, + EntityMenuItems.EXTERNAL_URL, + ]) } tabs={[ { diff --git a/datahub-web-react/src/app/entityV2/mlModel/MLModelEntity.tsx b/datahub-web-react/src/app/entityV2/mlModel/MLModelEntity.tsx index 518ba9362f76b0..58945f119d19de 100644 --- a/datahub-web-react/src/app/entityV2/mlModel/MLModelEntity.tsx +++ b/datahub-web-react/src/app/entityV2/mlModel/MLModelEntity.tsx @@ -35,6 +35,7 @@ const headerDropdownItems = new Set([ EntityMenuItems.RAISE_INCIDENT, EntityMenuItems.ANNOUNCE, EntityMenuItems.LINK_VERSION, + EntityMenuItems.EXTERNAL_URL, ]); /** diff --git a/datahub-web-react/src/app/entityV2/mlModelGroup/MLModelGroupEntity.tsx b/datahub-web-react/src/app/entityV2/mlModelGroup/MLModelGroupEntity.tsx index 9c1c58f97bc228..8b3ac6fd774096 100644 --- a/datahub-web-react/src/app/entityV2/mlModelGroup/MLModelGroupEntity.tsx +++ b/datahub-web-react/src/app/entityV2/mlModelGroup/MLModelGroupEntity.tsx @@ -29,6 +29,7 @@ const headerDropdownItems = new Set([ EntityMenuItems.SHARE, EntityMenuItems.UPDATE_DEPRECATION, EntityMenuItems.ANNOUNCE, + EntityMenuItems.EXTERNAL_URL, ]); /** diff --git a/datahub-web-react/src/graphql/dataProcessInstance.graphql b/datahub-web-react/src/graphql/dataProcessInstance.graphql index e29585150d5b08..520ff725d70c00 100644 --- a/datahub-web-react/src/graphql/dataProcessInstance.graphql +++ b/datahub-web-react/src/graphql/dataProcessInstance.graphql @@ -90,6 +90,7 @@ fragment dataProcessInstanceFields on DataProcessInstance { key value } + externalUrl } mlTrainingRunProperties { id diff --git a/datahub-web-react/src/graphql/mlModelGroup.graphql b/datahub-web-react/src/graphql/mlModelGroup.graphql index bd14b943792bb5..7ff9be8cdce0cc 100644 --- a/datahub-web-react/src/graphql/mlModelGroup.graphql +++ b/datahub-web-react/src/graphql/mlModelGroup.graphql @@ -13,6 +13,7 @@ query getMLModelGroup($urn: String!) { time actor } + externalUrl } ...nonRecursiveMLModelGroupFields incoming: relationships( diff --git a/metadata-models/src/main/pegasus/com/linkedin/ml/metadata/MLModelGroupProperties.pdl b/metadata-models/src/main/pegasus/com/linkedin/ml/metadata/MLModelGroupProperties.pdl index b9e364bee8c65a..8646a44aa69d27 100644 --- a/metadata-models/src/main/pegasus/com/linkedin/ml/metadata/MLModelGroupProperties.pdl +++ b/metadata-models/src/main/pegasus/com/linkedin/ml/metadata/MLModelGroupProperties.pdl @@ -5,6 +5,7 @@ import com.linkedin.common.Time import com.linkedin.common.VersionTag import com.linkedin.common.CustomProperties import com.linkedin.common.TimeStamp +import com.linkedin.common.ExternalReference /** * Properties associated with an ML Model Group @@ -12,7 +13,7 @@ import com.linkedin.common.TimeStamp @Aspect = { "name": "mlModelGroupProperties" } -record MLModelGroupProperties includes CustomProperties, MLModelLineageInfo { +record MLModelGroupProperties includes CustomProperties, MLModelLineageInfo, ExternalReference { /** * Display name of the MLModelGroup 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 53e93992681722..037d71e3c629e2 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 @@ -312,7 +312,7 @@ "type" : "record", "name" : "ChartInfo", "namespace" : "com.linkedin.chart", - "doc" : "Information about a chart", + "doc" : "Information about a chart\r", "include" : [ { "type" : "record", "name" : "CustomProperties", @@ -359,7 +359,7 @@ "fields" : [ { "name" : "title", "type" : "string", - "doc" : "Title of the chart", + "doc" : "Title of the chart\r", "Searchable" : { "boostScore" : 10.0, "enableAutocomplete" : true, @@ -369,7 +369,7 @@ }, { "name" : "description", "type" : "string", - "doc" : "Detailed description about the chart", + "doc" : "Detailed description about the chart\r", "Searchable" : { } }, { "name" : "lastModified", @@ -436,11 +436,11 @@ "optional" : true } ] }, - "doc" : "Captures information about who created/last modified/deleted this chart and when" + "doc" : "Captures information about who created/last modified/deleted this chart and when\r" }, { "name" : "chartUrl", "type" : "com.linkedin.common.Url", - "doc" : "URL for the chart. This could be used as an external link on DataHub to allow users access/view the chart", + "doc" : "URL for the chart. This could be used as an external link on DataHub to allow users access/view the chart\r", "optional" : true, "Searchable" : { "fieldType" : "KEYWORD" @@ -451,7 +451,7 @@ "type" : "array", "items" : "ChartDataSourceType" }, - "doc" : "Data sources for the chart\nDeprecated! Use inputEdges instead.", + "doc" : "Data sources for the chart\r\nDeprecated! Use inputEdges instead.\r", "optional" : true, "Relationship" : { "/*/string" : { @@ -500,7 +500,7 @@ } ] } }, - "doc" : "Data sources for the chart", + "doc" : "Data sources for the chart\r", "optional" : true, "Relationship" : { "/*/destinationUrn" : { @@ -529,7 +529,7 @@ "TEXT" : "Chart showing Markdown formatted text" } }, - "doc" : "Type of the chart", + "doc" : "Type of the chart\r", "optional" : true, "Searchable" : { "addToFilters" : true, @@ -549,7 +549,7 @@ "PUBLIC" : "Publicly available access level" } }, - "doc" : "Access level for the chart", + "doc" : "Access level for the chart\r", "optional" : true, "Searchable" : { "addToFilters" : true, @@ -559,7 +559,7 @@ }, { "name" : "lastRefreshed", "type" : "com.linkedin.common.Time", - "doc" : "The time when this chart last refreshed", + "doc" : "The time when this chart last refreshed\r", "optional" : true } ], "Aspect" : { @@ -1012,7 +1012,7 @@ "type" : "record", "name" : "GlossaryTermAssociation", "namespace" : "com.linkedin.common", - "doc" : "Properties of an applied glossary term.", + "doc" : "Properties of an applied glossary term.\r", "fields" : [ { "name" : "urn", "type" : { @@ -1042,7 +1042,7 @@ } } }, - "doc" : "Urn of the applied glossary term", + "doc" : "Urn of the applied glossary term\r", "Relationship" : { "entityTypes" : [ "glossaryTerm" ], "name" : "TermedWith" @@ -1059,17 +1059,17 @@ }, { "name" : "actor", "type" : "Urn", - "doc" : "The user URN which will be credited for adding associating this term to the entity", + "doc" : "The user URN which will be credited for adding associating this term to the entity\r", "optional" : true }, { "name" : "context", "type" : "string", - "doc" : "Additional context about the association", + "doc" : "Additional context about the association\r", "optional" : true }, { "name" : "attribution", "type" : "MetadataAttribution", - "doc" : "Information about who, why, and how this metadata was applied", + "doc" : "Information about who, why, and how this metadata was applied\r", "optional" : true, "Searchable" : { "/actor" : { @@ -1380,7 +1380,7 @@ "type" : "record", "name" : "VersionTag", "namespace" : "com.linkedin.common", - "doc" : "A resource-defined string representing the resource state for the purpose of concurrency control", + "doc" : "A resource-defined string representing the resource state for the purpose of concurrency control\r", "fields" : [ { "name" : "versionTag", "type" : "string", @@ -1394,12 +1394,12 @@ "type" : "record", "name" : "DashboardInfo", "namespace" : "com.linkedin.dashboard", - "doc" : "Information about a dashboard", + "doc" : "Information about a dashboard\r", "include" : [ "com.linkedin.common.CustomProperties", "com.linkedin.common.ExternalReference" ], "fields" : [ { "name" : "title", "type" : "string", - "doc" : "Title of the dashboard", + "doc" : "Title of the dashboard\r", "Searchable" : { "boostScore" : 10.0, "enableAutocomplete" : true, @@ -1409,7 +1409,7 @@ }, { "name" : "description", "type" : "string", - "doc" : "Detailed description about the dashboard", + "doc" : "Detailed description about the dashboard\r", "Searchable" : { "fieldType" : "TEXT", "hasValuesFieldName" : "hasDescription" @@ -1420,7 +1420,7 @@ "type" : "array", "items" : "com.linkedin.common.ChartUrn" }, - "doc" : "Charts in a dashboard\nDeprecated! Use chartEdges instead.", + "doc" : "Charts in a dashboard\r\nDeprecated! Use chartEdges instead.\r", "default" : [ ], "Relationship" : { "/*" : { @@ -1436,7 +1436,7 @@ "type" : "array", "items" : "com.linkedin.common.Edge" }, - "doc" : "Charts in a dashboard", + "doc" : "Charts in a dashboard\r", "optional" : true, "Relationship" : { "/*/destinationUrn" : { @@ -1456,7 +1456,7 @@ "type" : "array", "items" : "com.linkedin.common.Urn" }, - "doc" : "Datasets consumed by a dashboard\nDeprecated! Use datasetEdges instead.", + "doc" : "Datasets consumed by a dashboard\r\nDeprecated! Use datasetEdges instead.\r", "default" : [ ], "Relationship" : { "/*" : { @@ -1472,7 +1472,7 @@ "type" : "array", "items" : "com.linkedin.common.Edge" }, - "doc" : "Datasets consumed by a dashboard", + "doc" : "Datasets consumed by a dashboard\r", "optional" : true, "Relationship" : { "/*/destinationUrn" : { @@ -1492,7 +1492,7 @@ "type" : "array", "items" : "com.linkedin.common.Edge" }, - "doc" : "Dashboards included by this dashboard.\nSome dashboard entities (e.g. PowerBI Apps) can contain other dashboards.\n\nThe Edge's sourceUrn should never be set, as it will always be the base dashboard.", + "doc" : "Dashboards included by this dashboard.\r\nSome dashboard entities (e.g. PowerBI Apps) can contain other dashboards.\r\n\r\nThe Edge's sourceUrn should never be set, as it will always be the base dashboard.\r", "default" : [ ], "Relationship" : { "/*/destinationUrn" : { @@ -1509,11 +1509,11 @@ }, { "name" : "lastModified", "type" : "com.linkedin.common.ChangeAuditStamps", - "doc" : "Captures information about who created/last modified/deleted this dashboard and when" + "doc" : "Captures information about who created/last modified/deleted this dashboard and when\r" }, { "name" : "dashboardUrl", "type" : "com.linkedin.common.Url", - "doc" : "URL for the dashboard. This could be used as an external link on DataHub to allow users access/view the dashboard", + "doc" : "URL for the dashboard. This could be used as an external link on DataHub to allow users access/view the dashboard\r", "optional" : true, "Searchable" : { "fieldType" : "KEYWORD" @@ -1521,7 +1521,7 @@ }, { "name" : "access", "type" : "com.linkedin.common.AccessLevel", - "doc" : "Access level for the dashboard", + "doc" : "Access level for the dashboard\r", "optional" : true, "Searchable" : { "addToFilters" : true, @@ -1531,7 +1531,7 @@ }, { "name" : "lastRefreshed", "type" : "com.linkedin.common.Time", - "doc" : "The time when this dashboard last refreshed", + "doc" : "The time when this dashboard last refreshed\r", "optional" : true } ], "Aspect" : { @@ -2529,12 +2529,12 @@ "type" : "record", "name" : "CorpUserInfo", "namespace" : "com.linkedin.identity", - "doc" : "Linkedin corp user information", + "doc" : "Linkedin corp user information\r", "include" : [ "com.linkedin.common.CustomProperties" ], "fields" : [ { "name" : "active", "type" : "boolean", - "doc" : "Deprecated! Use CorpUserStatus instead. Whether the corpUser is active, ref: https://iwww.corp.linkedin.com/wiki/cf/display/GTSD/Accessing+Active+Directory+via+LDAP+tools", + "doc" : "Deprecated! Use CorpUserStatus instead. Whether the corpUser is active, ref: https://iwww.corp.linkedin.com/wiki/cf/display/GTSD/Accessing+Active+Directory+via+LDAP+tools\r", "Searchable" : { "fieldType" : "BOOLEAN", "weightsPerFieldValue" : { @@ -2544,7 +2544,7 @@ }, { "name" : "displayName", "type" : "string", - "doc" : "displayName of this user , e.g. Hang Zhang(DataHQ)", + "doc" : "displayName of this user , e.g. Hang Zhang(DataHQ)\r", "optional" : true, "Searchable" : { "boostScore" : 10.0, @@ -2556,7 +2556,7 @@ }, { "name" : "email", "type" : "com.linkedin.common.EmailAddress", - "doc" : "email address of this user", + "doc" : "email address of this user\r", "optional" : true, "Searchable" : { "fieldType" : "KEYWORD", @@ -2565,7 +2565,7 @@ }, { "name" : "title", "type" : "string", - "doc" : "title of this user", + "doc" : "title of this user\r", "optional" : true, "Searchable" : { "fieldType" : "KEYWORD", @@ -2574,7 +2574,7 @@ }, { "name" : "managerUrn", "type" : "com.linkedin.common.CorpuserUrn", - "doc" : "direct manager of this user", + "doc" : "direct manager of this user\r", "optional" : true, "Relationship" : { "entityTypes" : [ "corpuser" ], @@ -2588,27 +2588,27 @@ }, { "name" : "departmentId", "type" : "long", - "doc" : "department id this user belong to", + "doc" : "department id this user belong to\r", "optional" : true }, { "name" : "departmentName", "type" : "string", - "doc" : "department name this user belong to", + "doc" : "department name this user belong to\r", "optional" : true }, { "name" : "firstName", "type" : "string", - "doc" : "first name of this user", + "doc" : "first name of this user\r", "optional" : true }, { "name" : "lastName", "type" : "string", - "doc" : "last name of this user", + "doc" : "last name of this user\r", "optional" : true }, { "name" : "fullName", "type" : "string", - "doc" : "Common name of this user, format is firstName + lastName (split by a whitespace)", + "doc" : "Common name of this user, format is firstName + lastName (split by a whitespace)\r", "optional" : true, "Searchable" : { "boostScore" : 10.0, @@ -2619,12 +2619,12 @@ }, { "name" : "countryCode", "type" : "string", - "doc" : "two uppercase letters country code. e.g. US", + "doc" : "two uppercase letters country code. e.g. US\r", "optional" : true }, { "name" : "system", "type" : "boolean", - "doc" : "Whether the corpUser is a system user.", + "doc" : "Whether the corpUser is a system user.\r", "default" : false, "optional" : true, "Searchable" : { @@ -3362,15 +3362,15 @@ "items" : { "type" : "record", "name" : "EditableSchemaFieldInfo", - "doc" : "SchemaField to describe metadata related to dataset schema.", + "doc" : "SchemaField to describe metadata related to dataset schema.\r", "fields" : [ { "name" : "fieldPath", "type" : "string", - "doc" : "FieldPath uniquely identifying the SchemaField this metadata is associated with" + "doc" : "FieldPath uniquely identifying the SchemaField this metadata is associated with\r" }, { "name" : "description", "type" : "string", - "doc" : "Description", + "doc" : "Description\r", "optional" : true, "Searchable" : { "boostScore" : 0.1, @@ -3380,7 +3380,7 @@ }, { "name" : "globalTags", "type" : "com.linkedin.common.GlobalTags", - "doc" : "Tags associated with the field", + "doc" : "Tags associated with the field\r", "optional" : true, "Relationship" : { "/tags/*/tag" : { @@ -3412,7 +3412,7 @@ }, { "name" : "glossaryTerms", "type" : "com.linkedin.common.GlossaryTerms", - "doc" : "Glossary terms associated with the field", + "doc" : "Glossary terms associated with the field\r", "optional" : true, "Relationship" : { "/terms/*/urn" : { @@ -3845,18 +3845,18 @@ "type" : "record", "name" : "MLModelProperties", "namespace" : "com.linkedin.ml.metadata", - "doc" : "Properties associated with a ML Model", + "doc" : "Properties associated with a ML Model\r", "include" : [ "com.linkedin.common.CustomProperties", "com.linkedin.common.ExternalReference", { "type" : "record", "name" : "MLModelLineageInfo", - "doc" : "A set of re-usable fields used to capture lineage information for ML Models and ML Model Groups", + "doc" : "A set of re-usable fields used to capture lineage information for ML Models and ML Model Groups\r", "fields" : [ { "name" : "trainingJobs", "type" : { "type" : "array", "items" : "com.linkedin.common.Urn" }, - "doc" : "List of jobs or process instances (if any) used to train the model or group. Visible in Lineage. Note that ML Models can also be specified as the output of a specific Data Process Instances (runs) via the DataProcessInstanceOutputs aspect.", + "doc" : "List of jobs or process instances (if any) used to train the model or group. Visible in Lineage. Note that ML Models can also be specified as the output of a specific Data Process Instances (runs) via the DataProcessInstanceOutputs aspect.\r", "optional" : true, "Relationship" : { "/*" : { @@ -3871,7 +3871,7 @@ "type" : "array", "items" : "com.linkedin.common.Urn" }, - "doc" : "List of jobs or process instances (if any) that use the model or group.", + "doc" : "List of jobs or process instances (if any) that use the model or group.\r", "optional" : true, "Relationship" : { "/*" : { @@ -3886,7 +3886,7 @@ "fields" : [ { "name" : "name", "type" : "string", - "doc" : "Display name of the MLModel", + "doc" : "Display name of the MLModel\r", "optional" : true, "Searchable" : { "boostScore" : 10.0, @@ -3897,7 +3897,7 @@ }, { "name" : "description", "type" : "string", - "doc" : "Documentation of the MLModel", + "doc" : "Documentation of the MLModel\r", "optional" : true, "Searchable" : { "fieldType" : "TEXT", @@ -3906,28 +3906,28 @@ }, { "name" : "date", "type" : "com.linkedin.common.Time", - "doc" : "Date when the MLModel was developed", + "doc" : "Date when the MLModel was developed\r", "optional" : true, "deprecated" : true }, { "name" : "created", "type" : "com.linkedin.common.TimeStamp", - "doc" : "Audit stamp containing who created this and when", + "doc" : "Audit stamp containing who created this and when\r", "optional" : true }, { "name" : "lastModified", "type" : "com.linkedin.common.TimeStamp", - "doc" : "Date when the MLModel was last modified", + "doc" : "Date when the MLModel was last modified\r", "optional" : true }, { "name" : "version", "type" : "com.linkedin.common.VersionTag", - "doc" : "Version of the MLModel", + "doc" : "Version of the MLModel\r", "optional" : true }, { "name" : "type", "type" : "string", - "doc" : "Type of Algorithm or MLModel such as whether it is a Naive Bayes classifier, Convolutional Neural Network, etc", + "doc" : "Type of Algorithm or MLModel such as whether it is a Naive Bayes classifier, Convolutional Neural Network, etc\r", "optional" : true, "Searchable" : { "fieldType" : "TEXT_PARTIAL" @@ -3943,7 +3943,7 @@ "ref" : [ "string", "int", "float", "double", "boolean" ] } }, - "doc" : "Hyper Parameters of the MLModel\n\nNOTE: these are deprecated in favor of hyperParams", + "doc" : "Hyper Parameters of the MLModel\r\n\r\nNOTE: these are deprecated in favor of hyperParams\r", "optional" : true }, { "name" : "hyperParams", @@ -3978,7 +3978,7 @@ } } }, - "doc" : "Hyperparameters of the MLModel", + "doc" : "Hyperparameters of the MLModel\r", "optional" : true }, { "name" : "trainingMetrics", @@ -4013,7 +4013,7 @@ } } }, - "doc" : "Metrics of the MLModel used in training", + "doc" : "Metrics of the MLModel used in training\r", "optional" : true }, { "name" : "onlineMetrics", @@ -4021,7 +4021,7 @@ "type" : "array", "items" : "MLMetric" }, - "doc" : "Metrics of the MLModel used in production", + "doc" : "Metrics of the MLModel used in production\r", "optional" : true }, { "name" : "mlFeatures", @@ -4029,7 +4029,7 @@ "type" : "array", "items" : "com.linkedin.common.MLFeatureUrn" }, - "doc" : "List of features used for MLModel training", + "doc" : "List of features used for MLModel training\r", "optional" : true, "Relationship" : { "/*" : { @@ -4044,7 +4044,7 @@ "type" : "array", "items" : "string" }, - "doc" : "Tags for the MLModel", + "doc" : "Tags for the MLModel\r", "default" : [ ] }, { "name" : "deployments", @@ -4052,7 +4052,7 @@ "type" : "array", "items" : "com.linkedin.common.Urn" }, - "doc" : "Deployments for the MLModel", + "doc" : "Deployments for the MLModel\r", "optional" : true, "Relationship" : { "/*" : { @@ -4066,7 +4066,7 @@ "type" : "array", "items" : "com.linkedin.common.Urn" }, - "doc" : "Groups the model belongs to", + "doc" : "Groups the model belongs to\r", "optional" : true, "Relationship" : { "/*" : { 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 a42c32445d4e2e..dd787f2dd022cb 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 @@ -45,7 +45,7 @@ "type" : "record", "name" : "ChartInfo", "namespace" : "com.linkedin.chart", - "doc" : "Information about a chart", + "doc" : "Information about a chart\r", "include" : [ { "type" : "record", "name" : "CustomProperties", @@ -92,7 +92,7 @@ "fields" : [ { "name" : "title", "type" : "string", - "doc" : "Title of the chart", + "doc" : "Title of the chart\r", "Searchable" : { "boostScore" : 10.0, "enableAutocomplete" : true, @@ -102,7 +102,7 @@ }, { "name" : "description", "type" : "string", - "doc" : "Detailed description about the chart", + "doc" : "Detailed description about the chart\r", "Searchable" : { } }, { "name" : "lastModified", @@ -169,11 +169,11 @@ "optional" : true } ] }, - "doc" : "Captures information about who created/last modified/deleted this chart and when" + "doc" : "Captures information about who created/last modified/deleted this chart and when\r" }, { "name" : "chartUrl", "type" : "com.linkedin.common.Url", - "doc" : "URL for the chart. This could be used as an external link on DataHub to allow users access/view the chart", + "doc" : "URL for the chart. This could be used as an external link on DataHub to allow users access/view the chart\r", "optional" : true, "Searchable" : { "fieldType" : "KEYWORD" @@ -184,7 +184,7 @@ "type" : "array", "items" : "ChartDataSourceType" }, - "doc" : "Data sources for the chart\nDeprecated! Use inputEdges instead.", + "doc" : "Data sources for the chart\r\nDeprecated! Use inputEdges instead.\r", "optional" : true, "Relationship" : { "/*/string" : { @@ -233,7 +233,7 @@ } ] } }, - "doc" : "Data sources for the chart", + "doc" : "Data sources for the chart\r", "optional" : true, "Relationship" : { "/*/destinationUrn" : { @@ -262,7 +262,7 @@ "TEXT" : "Chart showing Markdown formatted text" } }, - "doc" : "Type of the chart", + "doc" : "Type of the chart\r", "optional" : true, "Searchable" : { "addToFilters" : true, @@ -282,7 +282,7 @@ "PUBLIC" : "Publicly available access level" } }, - "doc" : "Access level for the chart", + "doc" : "Access level for the chart\r", "optional" : true, "Searchable" : { "addToFilters" : true, @@ -292,7 +292,7 @@ }, { "name" : "lastRefreshed", "type" : "com.linkedin.common.Time", - "doc" : "The time when this chart last refreshed", + "doc" : "The time when this chart last refreshed\r", "optional" : true } ], "Aspect" : { @@ -797,11 +797,11 @@ "type" : "record", "name" : "Deprecation", "namespace" : "com.linkedin.common", - "doc" : "Deprecation status of an entity", + "doc" : "Deprecation status of an entity\r", "fields" : [ { "name" : "deprecated", "type" : "boolean", - "doc" : "Whether the entity is deprecated.", + "doc" : "Whether the entity is deprecated.\r", "Searchable" : { "fieldType" : "BOOLEAN", "weightsPerFieldValue" : { @@ -811,16 +811,16 @@ }, { "name" : "decommissionTime", "type" : "Time", - "doc" : "The time user plan to decommission this entity.", + "doc" : "The time user plan to decommission this entity.\r", "optional" : true }, { "name" : "note", "type" : "string", - "doc" : "Additional information about the entity deprecation plan, such as the wiki, doc, RB." + "doc" : "Additional information about the entity deprecation plan, such as the wiki, doc, RB.\r" }, { "name" : "actor", "type" : "Urn", - "doc" : "The user URN which will be credited for modifying this deprecation content." + "doc" : "The user URN which will be credited for modifying this deprecation content.\r" }, { "name" : "replacement", "type" : "Urn", @@ -1007,7 +1007,7 @@ "type" : "record", "name" : "GlossaryTermAssociation", "namespace" : "com.linkedin.common", - "doc" : "Properties of an applied glossary term.", + "doc" : "Properties of an applied glossary term.\r", "fields" : [ { "name" : "urn", "type" : { @@ -1037,7 +1037,7 @@ } } }, - "doc" : "Urn of the applied glossary term", + "doc" : "Urn of the applied glossary term\r", "Relationship" : { "entityTypes" : [ "glossaryTerm" ], "name" : "TermedWith" @@ -1054,17 +1054,17 @@ }, { "name" : "actor", "type" : "Urn", - "doc" : "The user URN which will be credited for adding associating this term to the entity", + "doc" : "The user URN which will be credited for adding associating this term to the entity\r", "optional" : true }, { "name" : "context", "type" : "string", - "doc" : "Additional context about the association", + "doc" : "Additional context about the association\r", "optional" : true }, { "name" : "attribution", "type" : "MetadataAttribution", - "doc" : "Information about who, why, and how this metadata was applied", + "doc" : "Information about who, why, and how this metadata was applied\r", "optional" : true, "Searchable" : { "/actor" : { @@ -1411,7 +1411,7 @@ "type" : "record", "name" : "VersionTag", "namespace" : "com.linkedin.common", - "doc" : "A resource-defined string representing the resource state for the purpose of concurrency control", + "doc" : "A resource-defined string representing the resource state for the purpose of concurrency control\r", "fields" : [ { "name" : "versionTag", "type" : "string", @@ -1425,12 +1425,12 @@ "type" : "record", "name" : "DashboardInfo", "namespace" : "com.linkedin.dashboard", - "doc" : "Information about a dashboard", + "doc" : "Information about a dashboard\r", "include" : [ "com.linkedin.common.CustomProperties", "com.linkedin.common.ExternalReference" ], "fields" : [ { "name" : "title", "type" : "string", - "doc" : "Title of the dashboard", + "doc" : "Title of the dashboard\r", "Searchable" : { "boostScore" : 10.0, "enableAutocomplete" : true, @@ -1440,7 +1440,7 @@ }, { "name" : "description", "type" : "string", - "doc" : "Detailed description about the dashboard", + "doc" : "Detailed description about the dashboard\r", "Searchable" : { "fieldType" : "TEXT", "hasValuesFieldName" : "hasDescription" @@ -1451,7 +1451,7 @@ "type" : "array", "items" : "com.linkedin.common.ChartUrn" }, - "doc" : "Charts in a dashboard\nDeprecated! Use chartEdges instead.", + "doc" : "Charts in a dashboard\r\nDeprecated! Use chartEdges instead.\r", "default" : [ ], "Relationship" : { "/*" : { @@ -1467,7 +1467,7 @@ "type" : "array", "items" : "com.linkedin.common.Edge" }, - "doc" : "Charts in a dashboard", + "doc" : "Charts in a dashboard\r", "optional" : true, "Relationship" : { "/*/destinationUrn" : { @@ -1487,7 +1487,7 @@ "type" : "array", "items" : "com.linkedin.common.Urn" }, - "doc" : "Datasets consumed by a dashboard\nDeprecated! Use datasetEdges instead.", + "doc" : "Datasets consumed by a dashboard\r\nDeprecated! Use datasetEdges instead.\r", "default" : [ ], "Relationship" : { "/*" : { @@ -1503,7 +1503,7 @@ "type" : "array", "items" : "com.linkedin.common.Edge" }, - "doc" : "Datasets consumed by a dashboard", + "doc" : "Datasets consumed by a dashboard\r", "optional" : true, "Relationship" : { "/*/destinationUrn" : { @@ -1523,7 +1523,7 @@ "type" : "array", "items" : "com.linkedin.common.Edge" }, - "doc" : "Dashboards included by this dashboard.\nSome dashboard entities (e.g. PowerBI Apps) can contain other dashboards.\n\nThe Edge's sourceUrn should never be set, as it will always be the base dashboard.", + "doc" : "Dashboards included by this dashboard.\r\nSome dashboard entities (e.g. PowerBI Apps) can contain other dashboards.\r\n\r\nThe Edge's sourceUrn should never be set, as it will always be the base dashboard.\r", "default" : [ ], "Relationship" : { "/*/destinationUrn" : { @@ -1540,11 +1540,11 @@ }, { "name" : "lastModified", "type" : "com.linkedin.common.ChangeAuditStamps", - "doc" : "Captures information about who created/last modified/deleted this dashboard and when" + "doc" : "Captures information about who created/last modified/deleted this dashboard and when\r" }, { "name" : "dashboardUrl", "type" : "com.linkedin.common.Url", - "doc" : "URL for the dashboard. This could be used as an external link on DataHub to allow users access/view the dashboard", + "doc" : "URL for the dashboard. This could be used as an external link on DataHub to allow users access/view the dashboard\r", "optional" : true, "Searchable" : { "fieldType" : "KEYWORD" @@ -1552,7 +1552,7 @@ }, { "name" : "access", "type" : "com.linkedin.common.AccessLevel", - "doc" : "Access level for the dashboard", + "doc" : "Access level for the dashboard\r", "optional" : true, "Searchable" : { "addToFilters" : true, @@ -1562,7 +1562,7 @@ }, { "name" : "lastRefreshed", "type" : "com.linkedin.common.Time", - "doc" : "The time when this dashboard last refreshed", + "doc" : "The time when this dashboard last refreshed\r", "optional" : true } ], "Aspect" : { @@ -2746,12 +2746,12 @@ "type" : "record", "name" : "CorpUserInfo", "namespace" : "com.linkedin.identity", - "doc" : "Linkedin corp user information", + "doc" : "Linkedin corp user information\r", "include" : [ "com.linkedin.common.CustomProperties" ], "fields" : [ { "name" : "active", "type" : "boolean", - "doc" : "Deprecated! Use CorpUserStatus instead. Whether the corpUser is active, ref: https://iwww.corp.linkedin.com/wiki/cf/display/GTSD/Accessing+Active+Directory+via+LDAP+tools", + "doc" : "Deprecated! Use CorpUserStatus instead. Whether the corpUser is active, ref: https://iwww.corp.linkedin.com/wiki/cf/display/GTSD/Accessing+Active+Directory+via+LDAP+tools\r", "Searchable" : { "fieldType" : "BOOLEAN", "weightsPerFieldValue" : { @@ -2761,7 +2761,7 @@ }, { "name" : "displayName", "type" : "string", - "doc" : "displayName of this user , e.g. Hang Zhang(DataHQ)", + "doc" : "displayName of this user , e.g. Hang Zhang(DataHQ)\r", "optional" : true, "Searchable" : { "boostScore" : 10.0, @@ -2773,7 +2773,7 @@ }, { "name" : "email", "type" : "com.linkedin.common.EmailAddress", - "doc" : "email address of this user", + "doc" : "email address of this user\r", "optional" : true, "Searchable" : { "fieldType" : "KEYWORD", @@ -2782,7 +2782,7 @@ }, { "name" : "title", "type" : "string", - "doc" : "title of this user", + "doc" : "title of this user\r", "optional" : true, "Searchable" : { "fieldType" : "KEYWORD", @@ -2791,7 +2791,7 @@ }, { "name" : "managerUrn", "type" : "com.linkedin.common.CorpuserUrn", - "doc" : "direct manager of this user", + "doc" : "direct manager of this user\r", "optional" : true, "Relationship" : { "entityTypes" : [ "corpuser" ], @@ -2805,27 +2805,27 @@ }, { "name" : "departmentId", "type" : "long", - "doc" : "department id this user belong to", + "doc" : "department id this user belong to\r", "optional" : true }, { "name" : "departmentName", "type" : "string", - "doc" : "department name this user belong to", + "doc" : "department name this user belong to\r", "optional" : true }, { "name" : "firstName", "type" : "string", - "doc" : "first name of this user", + "doc" : "first name of this user\r", "optional" : true }, { "name" : "lastName", "type" : "string", - "doc" : "last name of this user", + "doc" : "last name of this user\r", "optional" : true }, { "name" : "fullName", "type" : "string", - "doc" : "Common name of this user, format is firstName + lastName (split by a whitespace)", + "doc" : "Common name of this user, format is firstName + lastName (split by a whitespace)\r", "optional" : true, "Searchable" : { "boostScore" : 10.0, @@ -2836,12 +2836,12 @@ }, { "name" : "countryCode", "type" : "string", - "doc" : "two uppercase letters country code. e.g. US", + "doc" : "two uppercase letters country code. e.g. US\r", "optional" : true }, { "name" : "system", "type" : "boolean", - "doc" : "Whether the corpUser is a system user.", + "doc" : "Whether the corpUser is a system user.\r", "default" : false, "optional" : true, "Searchable" : { @@ -3754,15 +3754,15 @@ "items" : { "type" : "record", "name" : "EditableSchemaFieldInfo", - "doc" : "SchemaField to describe metadata related to dataset schema.", + "doc" : "SchemaField to describe metadata related to dataset schema.\r", "fields" : [ { "name" : "fieldPath", "type" : "string", - "doc" : "FieldPath uniquely identifying the SchemaField this metadata is associated with" + "doc" : "FieldPath uniquely identifying the SchemaField this metadata is associated with\r" }, { "name" : "description", "type" : "string", - "doc" : "Description", + "doc" : "Description\r", "optional" : true, "Searchable" : { "boostScore" : 0.1, @@ -3772,7 +3772,7 @@ }, { "name" : "globalTags", "type" : "com.linkedin.common.GlobalTags", - "doc" : "Tags associated with the field", + "doc" : "Tags associated with the field\r", "optional" : true, "Relationship" : { "/tags/*/tag" : { @@ -3804,7 +3804,7 @@ }, { "name" : "glossaryTerms", "type" : "com.linkedin.common.GlossaryTerms", - "doc" : "Glossary terms associated with the field", + "doc" : "Glossary terms associated with the field\r", "optional" : true, "Relationship" : { "/terms/*/urn" : { @@ -4007,18 +4007,18 @@ "type" : "record", "name" : "MLModelProperties", "namespace" : "com.linkedin.ml.metadata", - "doc" : "Properties associated with a ML Model", + "doc" : "Properties associated with a ML Model\r", "include" : [ "com.linkedin.common.CustomProperties", "com.linkedin.common.ExternalReference", { "type" : "record", "name" : "MLModelLineageInfo", - "doc" : "A set of re-usable fields used to capture lineage information for ML Models and ML Model Groups", + "doc" : "A set of re-usable fields used to capture lineage information for ML Models and ML Model Groups\r", "fields" : [ { "name" : "trainingJobs", "type" : { "type" : "array", "items" : "com.linkedin.common.Urn" }, - "doc" : "List of jobs or process instances (if any) used to train the model or group. Visible in Lineage. Note that ML Models can also be specified as the output of a specific Data Process Instances (runs) via the DataProcessInstanceOutputs aspect.", + "doc" : "List of jobs or process instances (if any) used to train the model or group. Visible in Lineage. Note that ML Models can also be specified as the output of a specific Data Process Instances (runs) via the DataProcessInstanceOutputs aspect.\r", "optional" : true, "Relationship" : { "/*" : { @@ -4033,7 +4033,7 @@ "type" : "array", "items" : "com.linkedin.common.Urn" }, - "doc" : "List of jobs or process instances (if any) that use the model or group.", + "doc" : "List of jobs or process instances (if any) that use the model or group.\r", "optional" : true, "Relationship" : { "/*" : { @@ -4048,7 +4048,7 @@ "fields" : [ { "name" : "name", "type" : "string", - "doc" : "Display name of the MLModel", + "doc" : "Display name of the MLModel\r", "optional" : true, "Searchable" : { "boostScore" : 10.0, @@ -4059,7 +4059,7 @@ }, { "name" : "description", "type" : "string", - "doc" : "Documentation of the MLModel", + "doc" : "Documentation of the MLModel\r", "optional" : true, "Searchable" : { "fieldType" : "TEXT", @@ -4068,28 +4068,28 @@ }, { "name" : "date", "type" : "com.linkedin.common.Time", - "doc" : "Date when the MLModel was developed", + "doc" : "Date when the MLModel was developed\r", "optional" : true, "deprecated" : true }, { "name" : "created", "type" : "com.linkedin.common.TimeStamp", - "doc" : "Audit stamp containing who created this and when", + "doc" : "Audit stamp containing who created this and when\r", "optional" : true }, { "name" : "lastModified", "type" : "com.linkedin.common.TimeStamp", - "doc" : "Date when the MLModel was last modified", + "doc" : "Date when the MLModel was last modified\r", "optional" : true }, { "name" : "version", "type" : "com.linkedin.common.VersionTag", - "doc" : "Version of the MLModel", + "doc" : "Version of the MLModel\r", "optional" : true }, { "name" : "type", "type" : "string", - "doc" : "Type of Algorithm or MLModel such as whether it is a Naive Bayes classifier, Convolutional Neural Network, etc", + "doc" : "Type of Algorithm or MLModel such as whether it is a Naive Bayes classifier, Convolutional Neural Network, etc\r", "optional" : true, "Searchable" : { "fieldType" : "TEXT_PARTIAL" @@ -4105,7 +4105,7 @@ "ref" : [ "string", "int", "float", "double", "boolean" ] } }, - "doc" : "Hyper Parameters of the MLModel\n\nNOTE: these are deprecated in favor of hyperParams", + "doc" : "Hyper Parameters of the MLModel\r\n\r\nNOTE: these are deprecated in favor of hyperParams\r", "optional" : true }, { "name" : "hyperParams", @@ -4140,7 +4140,7 @@ } } }, - "doc" : "Hyperparameters of the MLModel", + "doc" : "Hyperparameters of the MLModel\r", "optional" : true }, { "name" : "trainingMetrics", @@ -4175,7 +4175,7 @@ } } }, - "doc" : "Metrics of the MLModel used in training", + "doc" : "Metrics of the MLModel used in training\r", "optional" : true }, { "name" : "onlineMetrics", @@ -4183,7 +4183,7 @@ "type" : "array", "items" : "MLMetric" }, - "doc" : "Metrics of the MLModel used in production", + "doc" : "Metrics of the MLModel used in production\r", "optional" : true }, { "name" : "mlFeatures", @@ -4191,7 +4191,7 @@ "type" : "array", "items" : "com.linkedin.common.MLFeatureUrn" }, - "doc" : "List of features used for MLModel training", + "doc" : "List of features used for MLModel training\r", "optional" : true, "Relationship" : { "/*" : { @@ -4206,7 +4206,7 @@ "type" : "array", "items" : "string" }, - "doc" : "Tags for the MLModel", + "doc" : "Tags for the MLModel\r", "default" : [ ] }, { "name" : "deployments", @@ -4214,7 +4214,7 @@ "type" : "array", "items" : "com.linkedin.common.Urn" }, - "doc" : "Deployments for the MLModel", + "doc" : "Deployments for the MLModel\r", "optional" : true, "Relationship" : { "/*" : { @@ -4228,7 +4228,7 @@ "type" : "array", "items" : "com.linkedin.common.Urn" }, - "doc" : "Groups the model belongs to", + "doc" : "Groups the model belongs to\r", "optional" : true, "Relationship" : { "/*" : { @@ -5031,12 +5031,12 @@ "type" : "record", "name" : "MLModelGroupProperties", "namespace" : "com.linkedin.ml.metadata", - "doc" : "Properties associated with an ML Model Group", - "include" : [ "com.linkedin.common.CustomProperties", "MLModelLineageInfo" ], + "doc" : "Properties associated with an ML Model Group\r", + "include" : [ "com.linkedin.common.CustomProperties", "MLModelLineageInfo", "com.linkedin.common.ExternalReference" ], "fields" : [ { "name" : "name", "type" : "string", - "doc" : "Display name of the MLModelGroup", + "doc" : "Display name of the MLModelGroup\r", "optional" : true, "Searchable" : { "boostScore" : 10.0, @@ -5047,7 +5047,7 @@ }, { "name" : "description", "type" : "string", - "doc" : "Documentation of the MLModelGroup", + "doc" : "Documentation of the MLModelGroup\r", "optional" : true, "Searchable" : { "fieldType" : "TEXT", @@ -5056,23 +5056,23 @@ }, { "name" : "createdAt", "type" : "com.linkedin.common.Time", - "doc" : "Date when the MLModelGroup was developed", + "doc" : "Date when the MLModelGroup was developed\r", "optional" : true, "deprecated" : true }, { "name" : "created", "type" : "com.linkedin.common.TimeStamp", - "doc" : "Time and Actor who created the MLModelGroup", + "doc" : "Time and Actor who created the MLModelGroup\r", "optional" : true }, { "name" : "lastModified", "type" : "com.linkedin.common.TimeStamp", - "doc" : "Date when the MLModelGroup was last modified", + "doc" : "Date when the MLModelGroup was last modified\r", "optional" : true }, { "name" : "version", "type" : "com.linkedin.common.VersionTag", - "doc" : "Version of the MLModelGroup", + "doc" : "Version of the MLModelGroup\r", "optional" : true } ], "Aspect" : { @@ -6091,55 +6091,55 @@ "type" : "record", "name" : "SearchFlags", "namespace" : "com.linkedin.metadata.query", - "doc" : "Set of flags to control search behavior", + "doc" : "Set of flags to control search behavior\r", "fields" : [ { "name" : "skipCache", "type" : "boolean", - "doc" : "Whether to skip cache", + "doc" : "Whether to skip cache\r", "default" : false }, { "name" : "maxAggValues", "type" : "int", - "doc" : "The maximum number of values in a facet aggregation", + "doc" : "The maximum number of values in a facet aggregation\r", "default" : 20 }, { "name" : "fulltext", "type" : "boolean", - "doc" : "Structured or unstructured fulltext query", + "doc" : "Structured or unstructured fulltext query\r", "optional" : true }, { "name" : "skipHighlighting", "type" : "boolean", - "doc" : "Whether to skip highlighting", + "doc" : "Whether to skip highlighting\r", "default" : false, "optional" : true }, { "name" : "skipAggregates", "type" : "boolean", - "doc" : "Whether to skip aggregates/facets", + "doc" : "Whether to skip aggregates/facets\r", "default" : false, "optional" : true }, { "name" : "getSuggestions", "type" : "boolean", - "doc" : "Whether to request for search suggestions on the _entityName virtualized field", + "doc" : "Whether to request for search suggestions on the _entityName virtualized field\r", "default" : false, "optional" : true }, { "name" : "groupingSpec", "type" : "GroupingSpec", - "doc" : "Instructions for grouping results before returning", + "doc" : "Instructions for grouping results before returning\r", "optional" : true }, { "name" : "includeSoftDeleted", "type" : "boolean", - "doc" : "include soft deleted entities in results", + "doc" : "include soft deleted entities in results\r", "default" : false, "optional" : true }, { "name" : "includeRestricted", "type" : "boolean", - "doc" : "include restricted entities in results (default is to filter)", + "doc" : "include restricted entities in results (default is to filter)\r", "default" : false, "optional" : true }, { @@ -6148,24 +6148,24 @@ "type" : "array", "items" : "string" }, - "doc" : "Include mentioned fields inside elastic highlighting query", + "doc" : "Include mentioned fields inside elastic highlighting query\r", "optional" : true }, { "name" : "rewriteQuery", "type" : "boolean", - "doc" : "invoke query rewrite chain for filters based on configured rewriters", + "doc" : "invoke query rewrite chain for filters based on configured rewriters\r", "default" : true, "optional" : true }, { "name" : "includeDefaultFacets", "type" : "boolean", - "doc" : "Include default facets when getting facets to aggregate on in search requests.\nBy default we include these, but custom aggregation requests don't need them.", + "doc" : "Include default facets when getting facets to aggregate on in search requests.\r\nBy default we include these, but custom aggregation requests don't need them.\r", "default" : true, "optional" : true }, { "name" : "filterNonLatestVersions", "type" : "boolean", - "doc" : "Include only latest versions in version sets, default true", + "doc" : "Include only latest versions in version sets, default true\r", "default" : true, "optional" : true } ] 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 8677fb24646d35..43f49731d52ca8 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 @@ -45,7 +45,7 @@ "type" : "record", "name" : "ChartInfo", "namespace" : "com.linkedin.chart", - "doc" : "Information about a chart", + "doc" : "Information about a chart\r", "include" : [ { "type" : "record", "name" : "CustomProperties", @@ -92,7 +92,7 @@ "fields" : [ { "name" : "title", "type" : "string", - "doc" : "Title of the chart", + "doc" : "Title of the chart\r", "Searchable" : { "boostScore" : 10.0, "enableAutocomplete" : true, @@ -102,7 +102,7 @@ }, { "name" : "description", "type" : "string", - "doc" : "Detailed description about the chart", + "doc" : "Detailed description about the chart\r", "Searchable" : { } }, { "name" : "lastModified", @@ -169,11 +169,11 @@ "optional" : true } ] }, - "doc" : "Captures information about who created/last modified/deleted this chart and when" + "doc" : "Captures information about who created/last modified/deleted this chart and when\r" }, { "name" : "chartUrl", "type" : "com.linkedin.common.Url", - "doc" : "URL for the chart. This could be used as an external link on DataHub to allow users access/view the chart", + "doc" : "URL for the chart. This could be used as an external link on DataHub to allow users access/view the chart\r", "optional" : true, "Searchable" : { "fieldType" : "KEYWORD" @@ -184,7 +184,7 @@ "type" : "array", "items" : "ChartDataSourceType" }, - "doc" : "Data sources for the chart\nDeprecated! Use inputEdges instead.", + "doc" : "Data sources for the chart\r\nDeprecated! Use inputEdges instead.\r", "optional" : true, "Relationship" : { "/*/string" : { @@ -233,7 +233,7 @@ } ] } }, - "doc" : "Data sources for the chart", + "doc" : "Data sources for the chart\r", "optional" : true, "Relationship" : { "/*/destinationUrn" : { @@ -262,7 +262,7 @@ "TEXT" : "Chart showing Markdown formatted text" } }, - "doc" : "Type of the chart", + "doc" : "Type of the chart\r", "optional" : true, "Searchable" : { "addToFilters" : true, @@ -282,7 +282,7 @@ "PUBLIC" : "Publicly available access level" } }, - "doc" : "Access level for the chart", + "doc" : "Access level for the chart\r", "optional" : true, "Searchable" : { "addToFilters" : true, @@ -292,7 +292,7 @@ }, { "name" : "lastRefreshed", "type" : "com.linkedin.common.Time", - "doc" : "The time when this chart last refreshed", + "doc" : "The time when this chart last refreshed\r", "optional" : true } ], "Aspect" : { @@ -745,7 +745,7 @@ "type" : "record", "name" : "GlossaryTermAssociation", "namespace" : "com.linkedin.common", - "doc" : "Properties of an applied glossary term.", + "doc" : "Properties of an applied glossary term.\r", "fields" : [ { "name" : "urn", "type" : { @@ -775,7 +775,7 @@ } } }, - "doc" : "Urn of the applied glossary term", + "doc" : "Urn of the applied glossary term\r", "Relationship" : { "entityTypes" : [ "glossaryTerm" ], "name" : "TermedWith" @@ -792,17 +792,17 @@ }, { "name" : "actor", "type" : "Urn", - "doc" : "The user URN which will be credited for adding associating this term to the entity", + "doc" : "The user URN which will be credited for adding associating this term to the entity\r", "optional" : true }, { "name" : "context", "type" : "string", - "doc" : "Additional context about the association", + "doc" : "Additional context about the association\r", "optional" : true }, { "name" : "attribution", "type" : "MetadataAttribution", - "doc" : "Information about who, why, and how this metadata was applied", + "doc" : "Information about who, why, and how this metadata was applied\r", "optional" : true, "Searchable" : { "/actor" : { @@ -1113,7 +1113,7 @@ "type" : "record", "name" : "VersionTag", "namespace" : "com.linkedin.common", - "doc" : "A resource-defined string representing the resource state for the purpose of concurrency control", + "doc" : "A resource-defined string representing the resource state for the purpose of concurrency control\r", "fields" : [ { "name" : "versionTag", "type" : "string", @@ -1127,12 +1127,12 @@ "type" : "record", "name" : "DashboardInfo", "namespace" : "com.linkedin.dashboard", - "doc" : "Information about a dashboard", + "doc" : "Information about a dashboard\r", "include" : [ "com.linkedin.common.CustomProperties", "com.linkedin.common.ExternalReference" ], "fields" : [ { "name" : "title", "type" : "string", - "doc" : "Title of the dashboard", + "doc" : "Title of the dashboard\r", "Searchable" : { "boostScore" : 10.0, "enableAutocomplete" : true, @@ -1142,7 +1142,7 @@ }, { "name" : "description", "type" : "string", - "doc" : "Detailed description about the dashboard", + "doc" : "Detailed description about the dashboard\r", "Searchable" : { "fieldType" : "TEXT", "hasValuesFieldName" : "hasDescription" @@ -1153,7 +1153,7 @@ "type" : "array", "items" : "com.linkedin.common.ChartUrn" }, - "doc" : "Charts in a dashboard\nDeprecated! Use chartEdges instead.", + "doc" : "Charts in a dashboard\r\nDeprecated! Use chartEdges instead.\r", "default" : [ ], "Relationship" : { "/*" : { @@ -1169,7 +1169,7 @@ "type" : "array", "items" : "com.linkedin.common.Edge" }, - "doc" : "Charts in a dashboard", + "doc" : "Charts in a dashboard\r", "optional" : true, "Relationship" : { "/*/destinationUrn" : { @@ -1189,7 +1189,7 @@ "type" : "array", "items" : "com.linkedin.common.Urn" }, - "doc" : "Datasets consumed by a dashboard\nDeprecated! Use datasetEdges instead.", + "doc" : "Datasets consumed by a dashboard\r\nDeprecated! Use datasetEdges instead.\r", "default" : [ ], "Relationship" : { "/*" : { @@ -1205,7 +1205,7 @@ "type" : "array", "items" : "com.linkedin.common.Edge" }, - "doc" : "Datasets consumed by a dashboard", + "doc" : "Datasets consumed by a dashboard\r", "optional" : true, "Relationship" : { "/*/destinationUrn" : { @@ -1225,7 +1225,7 @@ "type" : "array", "items" : "com.linkedin.common.Edge" }, - "doc" : "Dashboards included by this dashboard.\nSome dashboard entities (e.g. PowerBI Apps) can contain other dashboards.\n\nThe Edge's sourceUrn should never be set, as it will always be the base dashboard.", + "doc" : "Dashboards included by this dashboard.\r\nSome dashboard entities (e.g. PowerBI Apps) can contain other dashboards.\r\n\r\nThe Edge's sourceUrn should never be set, as it will always be the base dashboard.\r", "default" : [ ], "Relationship" : { "/*/destinationUrn" : { @@ -1242,11 +1242,11 @@ }, { "name" : "lastModified", "type" : "com.linkedin.common.ChangeAuditStamps", - "doc" : "Captures information about who created/last modified/deleted this dashboard and when" + "doc" : "Captures information about who created/last modified/deleted this dashboard and when\r" }, { "name" : "dashboardUrl", "type" : "com.linkedin.common.Url", - "doc" : "URL for the dashboard. This could be used as an external link on DataHub to allow users access/view the dashboard", + "doc" : "URL for the dashboard. This could be used as an external link on DataHub to allow users access/view the dashboard\r", "optional" : true, "Searchable" : { "fieldType" : "KEYWORD" @@ -1254,7 +1254,7 @@ }, { "name" : "access", "type" : "com.linkedin.common.AccessLevel", - "doc" : "Access level for the dashboard", + "doc" : "Access level for the dashboard\r", "optional" : true, "Searchable" : { "addToFilters" : true, @@ -1264,7 +1264,7 @@ }, { "name" : "lastRefreshed", "type" : "com.linkedin.common.Time", - "doc" : "The time when this dashboard last refreshed", + "doc" : "The time when this dashboard last refreshed\r", "optional" : true } ], "Aspect" : { @@ -2253,12 +2253,12 @@ "type" : "record", "name" : "CorpUserInfo", "namespace" : "com.linkedin.identity", - "doc" : "Linkedin corp user information", + "doc" : "Linkedin corp user information\r", "include" : [ "com.linkedin.common.CustomProperties" ], "fields" : [ { "name" : "active", "type" : "boolean", - "doc" : "Deprecated! Use CorpUserStatus instead. Whether the corpUser is active, ref: https://iwww.corp.linkedin.com/wiki/cf/display/GTSD/Accessing+Active+Directory+via+LDAP+tools", + "doc" : "Deprecated! Use CorpUserStatus instead. Whether the corpUser is active, ref: https://iwww.corp.linkedin.com/wiki/cf/display/GTSD/Accessing+Active+Directory+via+LDAP+tools\r", "Searchable" : { "fieldType" : "BOOLEAN", "weightsPerFieldValue" : { @@ -2268,7 +2268,7 @@ }, { "name" : "displayName", "type" : "string", - "doc" : "displayName of this user , e.g. Hang Zhang(DataHQ)", + "doc" : "displayName of this user , e.g. Hang Zhang(DataHQ)\r", "optional" : true, "Searchable" : { "boostScore" : 10.0, @@ -2280,7 +2280,7 @@ }, { "name" : "email", "type" : "com.linkedin.common.EmailAddress", - "doc" : "email address of this user", + "doc" : "email address of this user\r", "optional" : true, "Searchable" : { "fieldType" : "KEYWORD", @@ -2289,7 +2289,7 @@ }, { "name" : "title", "type" : "string", - "doc" : "title of this user", + "doc" : "title of this user\r", "optional" : true, "Searchable" : { "fieldType" : "KEYWORD", @@ -2298,7 +2298,7 @@ }, { "name" : "managerUrn", "type" : "com.linkedin.common.CorpuserUrn", - "doc" : "direct manager of this user", + "doc" : "direct manager of this user\r", "optional" : true, "Relationship" : { "entityTypes" : [ "corpuser" ], @@ -2312,27 +2312,27 @@ }, { "name" : "departmentId", "type" : "long", - "doc" : "department id this user belong to", + "doc" : "department id this user belong to\r", "optional" : true }, { "name" : "departmentName", "type" : "string", - "doc" : "department name this user belong to", + "doc" : "department name this user belong to\r", "optional" : true }, { "name" : "firstName", "type" : "string", - "doc" : "first name of this user", + "doc" : "first name of this user\r", "optional" : true }, { "name" : "lastName", "type" : "string", - "doc" : "last name of this user", + "doc" : "last name of this user\r", "optional" : true }, { "name" : "fullName", "type" : "string", - "doc" : "Common name of this user, format is firstName + lastName (split by a whitespace)", + "doc" : "Common name of this user, format is firstName + lastName (split by a whitespace)\r", "optional" : true, "Searchable" : { "boostScore" : 10.0, @@ -2343,12 +2343,12 @@ }, { "name" : "countryCode", "type" : "string", - "doc" : "two uppercase letters country code. e.g. US", + "doc" : "two uppercase letters country code. e.g. US\r", "optional" : true }, { "name" : "system", "type" : "boolean", - "doc" : "Whether the corpUser is a system user.", + "doc" : "Whether the corpUser is a system user.\r", "default" : false, "optional" : true, "Searchable" : { @@ -3086,15 +3086,15 @@ "items" : { "type" : "record", "name" : "EditableSchemaFieldInfo", - "doc" : "SchemaField to describe metadata related to dataset schema.", + "doc" : "SchemaField to describe metadata related to dataset schema.\r", "fields" : [ { "name" : "fieldPath", "type" : "string", - "doc" : "FieldPath uniquely identifying the SchemaField this metadata is associated with" + "doc" : "FieldPath uniquely identifying the SchemaField this metadata is associated with\r" }, { "name" : "description", "type" : "string", - "doc" : "Description", + "doc" : "Description\r", "optional" : true, "Searchable" : { "boostScore" : 0.1, @@ -3104,7 +3104,7 @@ }, { "name" : "globalTags", "type" : "com.linkedin.common.GlobalTags", - "doc" : "Tags associated with the field", + "doc" : "Tags associated with the field\r", "optional" : true, "Relationship" : { "/tags/*/tag" : { @@ -3136,7 +3136,7 @@ }, { "name" : "glossaryTerms", "type" : "com.linkedin.common.GlossaryTerms", - "doc" : "Glossary terms associated with the field", + "doc" : "Glossary terms associated with the field\r", "optional" : true, "Relationship" : { "/terms/*/urn" : { @@ -3569,18 +3569,18 @@ "type" : "record", "name" : "MLModelProperties", "namespace" : "com.linkedin.ml.metadata", - "doc" : "Properties associated with a ML Model", + "doc" : "Properties associated with a ML Model\r", "include" : [ "com.linkedin.common.CustomProperties", "com.linkedin.common.ExternalReference", { "type" : "record", "name" : "MLModelLineageInfo", - "doc" : "A set of re-usable fields used to capture lineage information for ML Models and ML Model Groups", + "doc" : "A set of re-usable fields used to capture lineage information for ML Models and ML Model Groups\r", "fields" : [ { "name" : "trainingJobs", "type" : { "type" : "array", "items" : "com.linkedin.common.Urn" }, - "doc" : "List of jobs or process instances (if any) used to train the model or group. Visible in Lineage. Note that ML Models can also be specified as the output of a specific Data Process Instances (runs) via the DataProcessInstanceOutputs aspect.", + "doc" : "List of jobs or process instances (if any) used to train the model or group. Visible in Lineage. Note that ML Models can also be specified as the output of a specific Data Process Instances (runs) via the DataProcessInstanceOutputs aspect.\r", "optional" : true, "Relationship" : { "/*" : { @@ -3595,7 +3595,7 @@ "type" : "array", "items" : "com.linkedin.common.Urn" }, - "doc" : "List of jobs or process instances (if any) that use the model or group.", + "doc" : "List of jobs or process instances (if any) that use the model or group.\r", "optional" : true, "Relationship" : { "/*" : { @@ -3610,7 +3610,7 @@ "fields" : [ { "name" : "name", "type" : "string", - "doc" : "Display name of the MLModel", + "doc" : "Display name of the MLModel\r", "optional" : true, "Searchable" : { "boostScore" : 10.0, @@ -3621,7 +3621,7 @@ }, { "name" : "description", "type" : "string", - "doc" : "Documentation of the MLModel", + "doc" : "Documentation of the MLModel\r", "optional" : true, "Searchable" : { "fieldType" : "TEXT", @@ -3630,28 +3630,28 @@ }, { "name" : "date", "type" : "com.linkedin.common.Time", - "doc" : "Date when the MLModel was developed", + "doc" : "Date when the MLModel was developed\r", "optional" : true, "deprecated" : true }, { "name" : "created", "type" : "com.linkedin.common.TimeStamp", - "doc" : "Audit stamp containing who created this and when", + "doc" : "Audit stamp containing who created this and when\r", "optional" : true }, { "name" : "lastModified", "type" : "com.linkedin.common.TimeStamp", - "doc" : "Date when the MLModel was last modified", + "doc" : "Date when the MLModel was last modified\r", "optional" : true }, { "name" : "version", "type" : "com.linkedin.common.VersionTag", - "doc" : "Version of the MLModel", + "doc" : "Version of the MLModel\r", "optional" : true }, { "name" : "type", "type" : "string", - "doc" : "Type of Algorithm or MLModel such as whether it is a Naive Bayes classifier, Convolutional Neural Network, etc", + "doc" : "Type of Algorithm or MLModel such as whether it is a Naive Bayes classifier, Convolutional Neural Network, etc\r", "optional" : true, "Searchable" : { "fieldType" : "TEXT_PARTIAL" @@ -3667,7 +3667,7 @@ "ref" : [ "string", "int", "float", "double", "boolean" ] } }, - "doc" : "Hyper Parameters of the MLModel\n\nNOTE: these are deprecated in favor of hyperParams", + "doc" : "Hyper Parameters of the MLModel\r\n\r\nNOTE: these are deprecated in favor of hyperParams\r", "optional" : true }, { "name" : "hyperParams", @@ -3702,7 +3702,7 @@ } } }, - "doc" : "Hyperparameters of the MLModel", + "doc" : "Hyperparameters of the MLModel\r", "optional" : true }, { "name" : "trainingMetrics", @@ -3737,7 +3737,7 @@ } } }, - "doc" : "Metrics of the MLModel used in training", + "doc" : "Metrics of the MLModel used in training\r", "optional" : true }, { "name" : "onlineMetrics", @@ -3745,7 +3745,7 @@ "type" : "array", "items" : "MLMetric" }, - "doc" : "Metrics of the MLModel used in production", + "doc" : "Metrics of the MLModel used in production\r", "optional" : true }, { "name" : "mlFeatures", @@ -3753,7 +3753,7 @@ "type" : "array", "items" : "com.linkedin.common.MLFeatureUrn" }, - "doc" : "List of features used for MLModel training", + "doc" : "List of features used for MLModel training\r", "optional" : true, "Relationship" : { "/*" : { @@ -3768,7 +3768,7 @@ "type" : "array", "items" : "string" }, - "doc" : "Tags for the MLModel", + "doc" : "Tags for the MLModel\r", "default" : [ ] }, { "name" : "deployments", @@ -3776,7 +3776,7 @@ "type" : "array", "items" : "com.linkedin.common.Urn" }, - "doc" : "Deployments for the MLModel", + "doc" : "Deployments for the MLModel\r", "optional" : true, "Relationship" : { "/*" : { @@ -3790,7 +3790,7 @@ "type" : "array", "items" : "com.linkedin.common.Urn" }, - "doc" : "Groups the model belongs to", + "doc" : "Groups the model belongs to\r", "optional" : true, "Relationship" : { "/*" : { 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 93f5c4dd9b8261..968fa01808d75a 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 @@ -45,7 +45,7 @@ "type" : "record", "name" : "ChartInfo", "namespace" : "com.linkedin.chart", - "doc" : "Information about a chart", + "doc" : "Information about a chart\r", "include" : [ { "type" : "record", "name" : "CustomProperties", @@ -92,7 +92,7 @@ "fields" : [ { "name" : "title", "type" : "string", - "doc" : "Title of the chart", + "doc" : "Title of the chart\r", "Searchable" : { "boostScore" : 10.0, "enableAutocomplete" : true, @@ -102,7 +102,7 @@ }, { "name" : "description", "type" : "string", - "doc" : "Detailed description about the chart", + "doc" : "Detailed description about the chart\r", "Searchable" : { } }, { "name" : "lastModified", @@ -169,11 +169,11 @@ "optional" : true } ] }, - "doc" : "Captures information about who created/last modified/deleted this chart and when" + "doc" : "Captures information about who created/last modified/deleted this chart and when\r" }, { "name" : "chartUrl", "type" : "com.linkedin.common.Url", - "doc" : "URL for the chart. This could be used as an external link on DataHub to allow users access/view the chart", + "doc" : "URL for the chart. This could be used as an external link on DataHub to allow users access/view the chart\r", "optional" : true, "Searchable" : { "fieldType" : "KEYWORD" @@ -184,7 +184,7 @@ "type" : "array", "items" : "ChartDataSourceType" }, - "doc" : "Data sources for the chart\nDeprecated! Use inputEdges instead.", + "doc" : "Data sources for the chart\r\nDeprecated! Use inputEdges instead.\r", "optional" : true, "Relationship" : { "/*/string" : { @@ -233,7 +233,7 @@ } ] } }, - "doc" : "Data sources for the chart", + "doc" : "Data sources for the chart\r", "optional" : true, "Relationship" : { "/*/destinationUrn" : { @@ -262,7 +262,7 @@ "TEXT" : "Chart showing Markdown formatted text" } }, - "doc" : "Type of the chart", + "doc" : "Type of the chart\r", "optional" : true, "Searchable" : { "addToFilters" : true, @@ -282,7 +282,7 @@ "PUBLIC" : "Publicly available access level" } }, - "doc" : "Access level for the chart", + "doc" : "Access level for the chart\r", "optional" : true, "Searchable" : { "addToFilters" : true, @@ -292,7 +292,7 @@ }, { "name" : "lastRefreshed", "type" : "com.linkedin.common.Time", - "doc" : "The time when this chart last refreshed", + "doc" : "The time when this chart last refreshed\r", "optional" : true } ], "Aspect" : { @@ -745,7 +745,7 @@ "type" : "record", "name" : "GlossaryTermAssociation", "namespace" : "com.linkedin.common", - "doc" : "Properties of an applied glossary term.", + "doc" : "Properties of an applied glossary term.\r", "fields" : [ { "name" : "urn", "type" : { @@ -775,7 +775,7 @@ } } }, - "doc" : "Urn of the applied glossary term", + "doc" : "Urn of the applied glossary term\r", "Relationship" : { "entityTypes" : [ "glossaryTerm" ], "name" : "TermedWith" @@ -792,17 +792,17 @@ }, { "name" : "actor", "type" : "Urn", - "doc" : "The user URN which will be credited for adding associating this term to the entity", + "doc" : "The user URN which will be credited for adding associating this term to the entity\r", "optional" : true }, { "name" : "context", "type" : "string", - "doc" : "Additional context about the association", + "doc" : "Additional context about the association\r", "optional" : true }, { "name" : "attribution", "type" : "MetadataAttribution", - "doc" : "Information about who, why, and how this metadata was applied", + "doc" : "Information about who, why, and how this metadata was applied\r", "optional" : true, "Searchable" : { "/actor" : { @@ -1113,7 +1113,7 @@ "type" : "record", "name" : "VersionTag", "namespace" : "com.linkedin.common", - "doc" : "A resource-defined string representing the resource state for the purpose of concurrency control", + "doc" : "A resource-defined string representing the resource state for the purpose of concurrency control\r", "fields" : [ { "name" : "versionTag", "type" : "string", @@ -1127,12 +1127,12 @@ "type" : "record", "name" : "DashboardInfo", "namespace" : "com.linkedin.dashboard", - "doc" : "Information about a dashboard", + "doc" : "Information about a dashboard\r", "include" : [ "com.linkedin.common.CustomProperties", "com.linkedin.common.ExternalReference" ], "fields" : [ { "name" : "title", "type" : "string", - "doc" : "Title of the dashboard", + "doc" : "Title of the dashboard\r", "Searchable" : { "boostScore" : 10.0, "enableAutocomplete" : true, @@ -1142,7 +1142,7 @@ }, { "name" : "description", "type" : "string", - "doc" : "Detailed description about the dashboard", + "doc" : "Detailed description about the dashboard\r", "Searchable" : { "fieldType" : "TEXT", "hasValuesFieldName" : "hasDescription" @@ -1153,7 +1153,7 @@ "type" : "array", "items" : "com.linkedin.common.ChartUrn" }, - "doc" : "Charts in a dashboard\nDeprecated! Use chartEdges instead.", + "doc" : "Charts in a dashboard\r\nDeprecated! Use chartEdges instead.\r", "default" : [ ], "Relationship" : { "/*" : { @@ -1169,7 +1169,7 @@ "type" : "array", "items" : "com.linkedin.common.Edge" }, - "doc" : "Charts in a dashboard", + "doc" : "Charts in a dashboard\r", "optional" : true, "Relationship" : { "/*/destinationUrn" : { @@ -1189,7 +1189,7 @@ "type" : "array", "items" : "com.linkedin.common.Urn" }, - "doc" : "Datasets consumed by a dashboard\nDeprecated! Use datasetEdges instead.", + "doc" : "Datasets consumed by a dashboard\r\nDeprecated! Use datasetEdges instead.\r", "default" : [ ], "Relationship" : { "/*" : { @@ -1205,7 +1205,7 @@ "type" : "array", "items" : "com.linkedin.common.Edge" }, - "doc" : "Datasets consumed by a dashboard", + "doc" : "Datasets consumed by a dashboard\r", "optional" : true, "Relationship" : { "/*/destinationUrn" : { @@ -1225,7 +1225,7 @@ "type" : "array", "items" : "com.linkedin.common.Edge" }, - "doc" : "Dashboards included by this dashboard.\nSome dashboard entities (e.g. PowerBI Apps) can contain other dashboards.\n\nThe Edge's sourceUrn should never be set, as it will always be the base dashboard.", + "doc" : "Dashboards included by this dashboard.\r\nSome dashboard entities (e.g. PowerBI Apps) can contain other dashboards.\r\n\r\nThe Edge's sourceUrn should never be set, as it will always be the base dashboard.\r", "default" : [ ], "Relationship" : { "/*/destinationUrn" : { @@ -1242,11 +1242,11 @@ }, { "name" : "lastModified", "type" : "com.linkedin.common.ChangeAuditStamps", - "doc" : "Captures information about who created/last modified/deleted this dashboard and when" + "doc" : "Captures information about who created/last modified/deleted this dashboard and when\r" }, { "name" : "dashboardUrl", "type" : "com.linkedin.common.Url", - "doc" : "URL for the dashboard. This could be used as an external link on DataHub to allow users access/view the dashboard", + "doc" : "URL for the dashboard. This could be used as an external link on DataHub to allow users access/view the dashboard\r", "optional" : true, "Searchable" : { "fieldType" : "KEYWORD" @@ -1254,7 +1254,7 @@ }, { "name" : "access", "type" : "com.linkedin.common.AccessLevel", - "doc" : "Access level for the dashboard", + "doc" : "Access level for the dashboard\r", "optional" : true, "Searchable" : { "addToFilters" : true, @@ -1264,7 +1264,7 @@ }, { "name" : "lastRefreshed", "type" : "com.linkedin.common.Time", - "doc" : "The time when this dashboard last refreshed", + "doc" : "The time when this dashboard last refreshed\r", "optional" : true } ], "Aspect" : { @@ -2247,12 +2247,12 @@ "type" : "record", "name" : "CorpUserInfo", "namespace" : "com.linkedin.identity", - "doc" : "Linkedin corp user information", + "doc" : "Linkedin corp user information\r", "include" : [ "com.linkedin.common.CustomProperties" ], "fields" : [ { "name" : "active", "type" : "boolean", - "doc" : "Deprecated! Use CorpUserStatus instead. Whether the corpUser is active, ref: https://iwww.corp.linkedin.com/wiki/cf/display/GTSD/Accessing+Active+Directory+via+LDAP+tools", + "doc" : "Deprecated! Use CorpUserStatus instead. Whether the corpUser is active, ref: https://iwww.corp.linkedin.com/wiki/cf/display/GTSD/Accessing+Active+Directory+via+LDAP+tools\r", "Searchable" : { "fieldType" : "BOOLEAN", "weightsPerFieldValue" : { @@ -2262,7 +2262,7 @@ }, { "name" : "displayName", "type" : "string", - "doc" : "displayName of this user , e.g. Hang Zhang(DataHQ)", + "doc" : "displayName of this user , e.g. Hang Zhang(DataHQ)\r", "optional" : true, "Searchable" : { "boostScore" : 10.0, @@ -2274,7 +2274,7 @@ }, { "name" : "email", "type" : "com.linkedin.common.EmailAddress", - "doc" : "email address of this user", + "doc" : "email address of this user\r", "optional" : true, "Searchable" : { "fieldType" : "KEYWORD", @@ -2283,7 +2283,7 @@ }, { "name" : "title", "type" : "string", - "doc" : "title of this user", + "doc" : "title of this user\r", "optional" : true, "Searchable" : { "fieldType" : "KEYWORD", @@ -2292,7 +2292,7 @@ }, { "name" : "managerUrn", "type" : "com.linkedin.common.CorpuserUrn", - "doc" : "direct manager of this user", + "doc" : "direct manager of this user\r", "optional" : true, "Relationship" : { "entityTypes" : [ "corpuser" ], @@ -2306,27 +2306,27 @@ }, { "name" : "departmentId", "type" : "long", - "doc" : "department id this user belong to", + "doc" : "department id this user belong to\r", "optional" : true }, { "name" : "departmentName", "type" : "string", - "doc" : "department name this user belong to", + "doc" : "department name this user belong to\r", "optional" : true }, { "name" : "firstName", "type" : "string", - "doc" : "first name of this user", + "doc" : "first name of this user\r", "optional" : true }, { "name" : "lastName", "type" : "string", - "doc" : "last name of this user", + "doc" : "last name of this user\r", "optional" : true }, { "name" : "fullName", "type" : "string", - "doc" : "Common name of this user, format is firstName + lastName (split by a whitespace)", + "doc" : "Common name of this user, format is firstName + lastName (split by a whitespace)\r", "optional" : true, "Searchable" : { "boostScore" : 10.0, @@ -2337,12 +2337,12 @@ }, { "name" : "countryCode", "type" : "string", - "doc" : "two uppercase letters country code. e.g. US", + "doc" : "two uppercase letters country code. e.g. US\r", "optional" : true }, { "name" : "system", "type" : "boolean", - "doc" : "Whether the corpUser is a system user.", + "doc" : "Whether the corpUser is a system user.\r", "default" : false, "optional" : true, "Searchable" : { @@ -3080,15 +3080,15 @@ "items" : { "type" : "record", "name" : "EditableSchemaFieldInfo", - "doc" : "SchemaField to describe metadata related to dataset schema.", + "doc" : "SchemaField to describe metadata related to dataset schema.\r", "fields" : [ { "name" : "fieldPath", "type" : "string", - "doc" : "FieldPath uniquely identifying the SchemaField this metadata is associated with" + "doc" : "FieldPath uniquely identifying the SchemaField this metadata is associated with\r" }, { "name" : "description", "type" : "string", - "doc" : "Description", + "doc" : "Description\r", "optional" : true, "Searchable" : { "boostScore" : 0.1, @@ -3098,7 +3098,7 @@ }, { "name" : "globalTags", "type" : "com.linkedin.common.GlobalTags", - "doc" : "Tags associated with the field", + "doc" : "Tags associated with the field\r", "optional" : true, "Relationship" : { "/tags/*/tag" : { @@ -3130,7 +3130,7 @@ }, { "name" : "glossaryTerms", "type" : "com.linkedin.common.GlossaryTerms", - "doc" : "Glossary terms associated with the field", + "doc" : "Glossary terms associated with the field\r", "optional" : true, "Relationship" : { "/terms/*/urn" : { @@ -3563,18 +3563,18 @@ "type" : "record", "name" : "MLModelProperties", "namespace" : "com.linkedin.ml.metadata", - "doc" : "Properties associated with a ML Model", + "doc" : "Properties associated with a ML Model\r", "include" : [ "com.linkedin.common.CustomProperties", "com.linkedin.common.ExternalReference", { "type" : "record", "name" : "MLModelLineageInfo", - "doc" : "A set of re-usable fields used to capture lineage information for ML Models and ML Model Groups", + "doc" : "A set of re-usable fields used to capture lineage information for ML Models and ML Model Groups\r", "fields" : [ { "name" : "trainingJobs", "type" : { "type" : "array", "items" : "com.linkedin.common.Urn" }, - "doc" : "List of jobs or process instances (if any) used to train the model or group. Visible in Lineage. Note that ML Models can also be specified as the output of a specific Data Process Instances (runs) via the DataProcessInstanceOutputs aspect.", + "doc" : "List of jobs or process instances (if any) used to train the model or group. Visible in Lineage. Note that ML Models can also be specified as the output of a specific Data Process Instances (runs) via the DataProcessInstanceOutputs aspect.\r", "optional" : true, "Relationship" : { "/*" : { @@ -3589,7 +3589,7 @@ "type" : "array", "items" : "com.linkedin.common.Urn" }, - "doc" : "List of jobs or process instances (if any) that use the model or group.", + "doc" : "List of jobs or process instances (if any) that use the model or group.\r", "optional" : true, "Relationship" : { "/*" : { @@ -3604,7 +3604,7 @@ "fields" : [ { "name" : "name", "type" : "string", - "doc" : "Display name of the MLModel", + "doc" : "Display name of the MLModel\r", "optional" : true, "Searchable" : { "boostScore" : 10.0, @@ -3615,7 +3615,7 @@ }, { "name" : "description", "type" : "string", - "doc" : "Documentation of the MLModel", + "doc" : "Documentation of the MLModel\r", "optional" : true, "Searchable" : { "fieldType" : "TEXT", @@ -3624,28 +3624,28 @@ }, { "name" : "date", "type" : "com.linkedin.common.Time", - "doc" : "Date when the MLModel was developed", + "doc" : "Date when the MLModel was developed\r", "optional" : true, "deprecated" : true }, { "name" : "created", "type" : "com.linkedin.common.TimeStamp", - "doc" : "Audit stamp containing who created this and when", + "doc" : "Audit stamp containing who created this and when\r", "optional" : true }, { "name" : "lastModified", "type" : "com.linkedin.common.TimeStamp", - "doc" : "Date when the MLModel was last modified", + "doc" : "Date when the MLModel was last modified\r", "optional" : true }, { "name" : "version", "type" : "com.linkedin.common.VersionTag", - "doc" : "Version of the MLModel", + "doc" : "Version of the MLModel\r", "optional" : true }, { "name" : "type", "type" : "string", - "doc" : "Type of Algorithm or MLModel such as whether it is a Naive Bayes classifier, Convolutional Neural Network, etc", + "doc" : "Type of Algorithm or MLModel such as whether it is a Naive Bayes classifier, Convolutional Neural Network, etc\r", "optional" : true, "Searchable" : { "fieldType" : "TEXT_PARTIAL" @@ -3661,7 +3661,7 @@ "ref" : [ "string", "int", "float", "double", "boolean" ] } }, - "doc" : "Hyper Parameters of the MLModel\n\nNOTE: these are deprecated in favor of hyperParams", + "doc" : "Hyper Parameters of the MLModel\r\n\r\nNOTE: these are deprecated in favor of hyperParams\r", "optional" : true }, { "name" : "hyperParams", @@ -3696,7 +3696,7 @@ } } }, - "doc" : "Hyperparameters of the MLModel", + "doc" : "Hyperparameters of the MLModel\r", "optional" : true }, { "name" : "trainingMetrics", @@ -3731,7 +3731,7 @@ } } }, - "doc" : "Metrics of the MLModel used in training", + "doc" : "Metrics of the MLModel used in training\r", "optional" : true }, { "name" : "onlineMetrics", @@ -3739,7 +3739,7 @@ "type" : "array", "items" : "MLMetric" }, - "doc" : "Metrics of the MLModel used in production", + "doc" : "Metrics of the MLModel used in production\r", "optional" : true }, { "name" : "mlFeatures", @@ -3747,7 +3747,7 @@ "type" : "array", "items" : "com.linkedin.common.MLFeatureUrn" }, - "doc" : "List of features used for MLModel training", + "doc" : "List of features used for MLModel training\r", "optional" : true, "Relationship" : { "/*" : { @@ -3762,7 +3762,7 @@ "type" : "array", "items" : "string" }, - "doc" : "Tags for the MLModel", + "doc" : "Tags for the MLModel\r", "default" : [ ] }, { "name" : "deployments", @@ -3770,7 +3770,7 @@ "type" : "array", "items" : "com.linkedin.common.Urn" }, - "doc" : "Deployments for the MLModel", + "doc" : "Deployments for the MLModel\r", "optional" : true, "Relationship" : { "/*" : { @@ -3784,7 +3784,7 @@ "type" : "array", "items" : "com.linkedin.common.Urn" }, - "doc" : "Groups the model belongs to", + "doc" : "Groups the model belongs to\r", "optional" : true, "Relationship" : { "/*" : { 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 80d1998b5499a7..620e67d78456f3 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 @@ -45,7 +45,7 @@ "type" : "record", "name" : "ChartInfo", "namespace" : "com.linkedin.chart", - "doc" : "Information about a chart", + "doc" : "Information about a chart\r", "include" : [ { "type" : "record", "name" : "CustomProperties", @@ -92,7 +92,7 @@ "fields" : [ { "name" : "title", "type" : "string", - "doc" : "Title of the chart", + "doc" : "Title of the chart\r", "Searchable" : { "boostScore" : 10.0, "enableAutocomplete" : true, @@ -102,7 +102,7 @@ }, { "name" : "description", "type" : "string", - "doc" : "Detailed description about the chart", + "doc" : "Detailed description about the chart\r", "Searchable" : { } }, { "name" : "lastModified", @@ -169,11 +169,11 @@ "optional" : true } ] }, - "doc" : "Captures information about who created/last modified/deleted this chart and when" + "doc" : "Captures information about who created/last modified/deleted this chart and when\r" }, { "name" : "chartUrl", "type" : "com.linkedin.common.Url", - "doc" : "URL for the chart. This could be used as an external link on DataHub to allow users access/view the chart", + "doc" : "URL for the chart. This could be used as an external link on DataHub to allow users access/view the chart\r", "optional" : true, "Searchable" : { "fieldType" : "KEYWORD" @@ -184,7 +184,7 @@ "type" : "array", "items" : "ChartDataSourceType" }, - "doc" : "Data sources for the chart\nDeprecated! Use inputEdges instead.", + "doc" : "Data sources for the chart\r\nDeprecated! Use inputEdges instead.\r", "optional" : true, "Relationship" : { "/*/string" : { @@ -233,7 +233,7 @@ } ] } }, - "doc" : "Data sources for the chart", + "doc" : "Data sources for the chart\r", "optional" : true, "Relationship" : { "/*/destinationUrn" : { @@ -262,7 +262,7 @@ "TEXT" : "Chart showing Markdown formatted text" } }, - "doc" : "Type of the chart", + "doc" : "Type of the chart\r", "optional" : true, "Searchable" : { "addToFilters" : true, @@ -282,7 +282,7 @@ "PUBLIC" : "Publicly available access level" } }, - "doc" : "Access level for the chart", + "doc" : "Access level for the chart\r", "optional" : true, "Searchable" : { "addToFilters" : true, @@ -292,7 +292,7 @@ }, { "name" : "lastRefreshed", "type" : "com.linkedin.common.Time", - "doc" : "The time when this chart last refreshed", + "doc" : "The time when this chart last refreshed\r", "optional" : true } ], "Aspect" : { @@ -797,11 +797,11 @@ "type" : "record", "name" : "Deprecation", "namespace" : "com.linkedin.common", - "doc" : "Deprecation status of an entity", + "doc" : "Deprecation status of an entity\r", "fields" : [ { "name" : "deprecated", "type" : "boolean", - "doc" : "Whether the entity is deprecated.", + "doc" : "Whether the entity is deprecated.\r", "Searchable" : { "fieldType" : "BOOLEAN", "weightsPerFieldValue" : { @@ -811,16 +811,16 @@ }, { "name" : "decommissionTime", "type" : "Time", - "doc" : "The time user plan to decommission this entity.", + "doc" : "The time user plan to decommission this entity.\r", "optional" : true }, { "name" : "note", "type" : "string", - "doc" : "Additional information about the entity deprecation plan, such as the wiki, doc, RB." + "doc" : "Additional information about the entity deprecation plan, such as the wiki, doc, RB.\r" }, { "name" : "actor", "type" : "Urn", - "doc" : "The user URN which will be credited for modifying this deprecation content." + "doc" : "The user URN which will be credited for modifying this deprecation content.\r" }, { "name" : "replacement", "type" : "Urn", @@ -1007,7 +1007,7 @@ "type" : "record", "name" : "GlossaryTermAssociation", "namespace" : "com.linkedin.common", - "doc" : "Properties of an applied glossary term.", + "doc" : "Properties of an applied glossary term.\r", "fields" : [ { "name" : "urn", "type" : { @@ -1037,7 +1037,7 @@ } } }, - "doc" : "Urn of the applied glossary term", + "doc" : "Urn of the applied glossary term\r", "Relationship" : { "entityTypes" : [ "glossaryTerm" ], "name" : "TermedWith" @@ -1054,17 +1054,17 @@ }, { "name" : "actor", "type" : "Urn", - "doc" : "The user URN which will be credited for adding associating this term to the entity", + "doc" : "The user URN which will be credited for adding associating this term to the entity\r", "optional" : true }, { "name" : "context", "type" : "string", - "doc" : "Additional context about the association", + "doc" : "Additional context about the association\r", "optional" : true }, { "name" : "attribution", "type" : "MetadataAttribution", - "doc" : "Information about who, why, and how this metadata was applied", + "doc" : "Information about who, why, and how this metadata was applied\r", "optional" : true, "Searchable" : { "/actor" : { @@ -1411,7 +1411,7 @@ "type" : "record", "name" : "VersionTag", "namespace" : "com.linkedin.common", - "doc" : "A resource-defined string representing the resource state for the purpose of concurrency control", + "doc" : "A resource-defined string representing the resource state for the purpose of concurrency control\r", "fields" : [ { "name" : "versionTag", "type" : "string", @@ -1425,12 +1425,12 @@ "type" : "record", "name" : "DashboardInfo", "namespace" : "com.linkedin.dashboard", - "doc" : "Information about a dashboard", + "doc" : "Information about a dashboard\r", "include" : [ "com.linkedin.common.CustomProperties", "com.linkedin.common.ExternalReference" ], "fields" : [ { "name" : "title", "type" : "string", - "doc" : "Title of the dashboard", + "doc" : "Title of the dashboard\r", "Searchable" : { "boostScore" : 10.0, "enableAutocomplete" : true, @@ -1440,7 +1440,7 @@ }, { "name" : "description", "type" : "string", - "doc" : "Detailed description about the dashboard", + "doc" : "Detailed description about the dashboard\r", "Searchable" : { "fieldType" : "TEXT", "hasValuesFieldName" : "hasDescription" @@ -1451,7 +1451,7 @@ "type" : "array", "items" : "com.linkedin.common.ChartUrn" }, - "doc" : "Charts in a dashboard\nDeprecated! Use chartEdges instead.", + "doc" : "Charts in a dashboard\r\nDeprecated! Use chartEdges instead.\r", "default" : [ ], "Relationship" : { "/*" : { @@ -1467,7 +1467,7 @@ "type" : "array", "items" : "com.linkedin.common.Edge" }, - "doc" : "Charts in a dashboard", + "doc" : "Charts in a dashboard\r", "optional" : true, "Relationship" : { "/*/destinationUrn" : { @@ -1487,7 +1487,7 @@ "type" : "array", "items" : "com.linkedin.common.Urn" }, - "doc" : "Datasets consumed by a dashboard\nDeprecated! Use datasetEdges instead.", + "doc" : "Datasets consumed by a dashboard\r\nDeprecated! Use datasetEdges instead.\r", "default" : [ ], "Relationship" : { "/*" : { @@ -1503,7 +1503,7 @@ "type" : "array", "items" : "com.linkedin.common.Edge" }, - "doc" : "Datasets consumed by a dashboard", + "doc" : "Datasets consumed by a dashboard\r", "optional" : true, "Relationship" : { "/*/destinationUrn" : { @@ -1523,7 +1523,7 @@ "type" : "array", "items" : "com.linkedin.common.Edge" }, - "doc" : "Dashboards included by this dashboard.\nSome dashboard entities (e.g. PowerBI Apps) can contain other dashboards.\n\nThe Edge's sourceUrn should never be set, as it will always be the base dashboard.", + "doc" : "Dashboards included by this dashboard.\r\nSome dashboard entities (e.g. PowerBI Apps) can contain other dashboards.\r\n\r\nThe Edge's sourceUrn should never be set, as it will always be the base dashboard.\r", "default" : [ ], "Relationship" : { "/*/destinationUrn" : { @@ -1540,11 +1540,11 @@ }, { "name" : "lastModified", "type" : "com.linkedin.common.ChangeAuditStamps", - "doc" : "Captures information about who created/last modified/deleted this dashboard and when" + "doc" : "Captures information about who created/last modified/deleted this dashboard and when\r" }, { "name" : "dashboardUrl", "type" : "com.linkedin.common.Url", - "doc" : "URL for the dashboard. This could be used as an external link on DataHub to allow users access/view the dashboard", + "doc" : "URL for the dashboard. This could be used as an external link on DataHub to allow users access/view the dashboard\r", "optional" : true, "Searchable" : { "fieldType" : "KEYWORD" @@ -1552,7 +1552,7 @@ }, { "name" : "access", "type" : "com.linkedin.common.AccessLevel", - "doc" : "Access level for the dashboard", + "doc" : "Access level for the dashboard\r", "optional" : true, "Searchable" : { "addToFilters" : true, @@ -1562,7 +1562,7 @@ }, { "name" : "lastRefreshed", "type" : "com.linkedin.common.Time", - "doc" : "The time when this dashboard last refreshed", + "doc" : "The time when this dashboard last refreshed\r", "optional" : true } ], "Aspect" : { @@ -2740,12 +2740,12 @@ "type" : "record", "name" : "CorpUserInfo", "namespace" : "com.linkedin.identity", - "doc" : "Linkedin corp user information", + "doc" : "Linkedin corp user information\r", "include" : [ "com.linkedin.common.CustomProperties" ], "fields" : [ { "name" : "active", "type" : "boolean", - "doc" : "Deprecated! Use CorpUserStatus instead. Whether the corpUser is active, ref: https://iwww.corp.linkedin.com/wiki/cf/display/GTSD/Accessing+Active+Directory+via+LDAP+tools", + "doc" : "Deprecated! Use CorpUserStatus instead. Whether the corpUser is active, ref: https://iwww.corp.linkedin.com/wiki/cf/display/GTSD/Accessing+Active+Directory+via+LDAP+tools\r", "Searchable" : { "fieldType" : "BOOLEAN", "weightsPerFieldValue" : { @@ -2755,7 +2755,7 @@ }, { "name" : "displayName", "type" : "string", - "doc" : "displayName of this user , e.g. Hang Zhang(DataHQ)", + "doc" : "displayName of this user , e.g. Hang Zhang(DataHQ)\r", "optional" : true, "Searchable" : { "boostScore" : 10.0, @@ -2767,7 +2767,7 @@ }, { "name" : "email", "type" : "com.linkedin.common.EmailAddress", - "doc" : "email address of this user", + "doc" : "email address of this user\r", "optional" : true, "Searchable" : { "fieldType" : "KEYWORD", @@ -2776,7 +2776,7 @@ }, { "name" : "title", "type" : "string", - "doc" : "title of this user", + "doc" : "title of this user\r", "optional" : true, "Searchable" : { "fieldType" : "KEYWORD", @@ -2785,7 +2785,7 @@ }, { "name" : "managerUrn", "type" : "com.linkedin.common.CorpuserUrn", - "doc" : "direct manager of this user", + "doc" : "direct manager of this user\r", "optional" : true, "Relationship" : { "entityTypes" : [ "corpuser" ], @@ -2799,27 +2799,27 @@ }, { "name" : "departmentId", "type" : "long", - "doc" : "department id this user belong to", + "doc" : "department id this user belong to\r", "optional" : true }, { "name" : "departmentName", "type" : "string", - "doc" : "department name this user belong to", + "doc" : "department name this user belong to\r", "optional" : true }, { "name" : "firstName", "type" : "string", - "doc" : "first name of this user", + "doc" : "first name of this user\r", "optional" : true }, { "name" : "lastName", "type" : "string", - "doc" : "last name of this user", + "doc" : "last name of this user\r", "optional" : true }, { "name" : "fullName", "type" : "string", - "doc" : "Common name of this user, format is firstName + lastName (split by a whitespace)", + "doc" : "Common name of this user, format is firstName + lastName (split by a whitespace)\r", "optional" : true, "Searchable" : { "boostScore" : 10.0, @@ -2830,12 +2830,12 @@ }, { "name" : "countryCode", "type" : "string", - "doc" : "two uppercase letters country code. e.g. US", + "doc" : "two uppercase letters country code. e.g. US\r", "optional" : true }, { "name" : "system", "type" : "boolean", - "doc" : "Whether the corpUser is a system user.", + "doc" : "Whether the corpUser is a system user.\r", "default" : false, "optional" : true, "Searchable" : { @@ -3748,15 +3748,15 @@ "items" : { "type" : "record", "name" : "EditableSchemaFieldInfo", - "doc" : "SchemaField to describe metadata related to dataset schema.", + "doc" : "SchemaField to describe metadata related to dataset schema.\r", "fields" : [ { "name" : "fieldPath", "type" : "string", - "doc" : "FieldPath uniquely identifying the SchemaField this metadata is associated with" + "doc" : "FieldPath uniquely identifying the SchemaField this metadata is associated with\r" }, { "name" : "description", "type" : "string", - "doc" : "Description", + "doc" : "Description\r", "optional" : true, "Searchable" : { "boostScore" : 0.1, @@ -3766,7 +3766,7 @@ }, { "name" : "globalTags", "type" : "com.linkedin.common.GlobalTags", - "doc" : "Tags associated with the field", + "doc" : "Tags associated with the field\r", "optional" : true, "Relationship" : { "/tags/*/tag" : { @@ -3798,7 +3798,7 @@ }, { "name" : "glossaryTerms", "type" : "com.linkedin.common.GlossaryTerms", - "doc" : "Glossary terms associated with the field", + "doc" : "Glossary terms associated with the field\r", "optional" : true, "Relationship" : { "/terms/*/urn" : { @@ -4001,18 +4001,18 @@ "type" : "record", "name" : "MLModelProperties", "namespace" : "com.linkedin.ml.metadata", - "doc" : "Properties associated with a ML Model", + "doc" : "Properties associated with a ML Model\r", "include" : [ "com.linkedin.common.CustomProperties", "com.linkedin.common.ExternalReference", { "type" : "record", "name" : "MLModelLineageInfo", - "doc" : "A set of re-usable fields used to capture lineage information for ML Models and ML Model Groups", + "doc" : "A set of re-usable fields used to capture lineage information for ML Models and ML Model Groups\r", "fields" : [ { "name" : "trainingJobs", "type" : { "type" : "array", "items" : "com.linkedin.common.Urn" }, - "doc" : "List of jobs or process instances (if any) used to train the model or group. Visible in Lineage. Note that ML Models can also be specified as the output of a specific Data Process Instances (runs) via the DataProcessInstanceOutputs aspect.", + "doc" : "List of jobs or process instances (if any) used to train the model or group. Visible in Lineage. Note that ML Models can also be specified as the output of a specific Data Process Instances (runs) via the DataProcessInstanceOutputs aspect.\r", "optional" : true, "Relationship" : { "/*" : { @@ -4027,7 +4027,7 @@ "type" : "array", "items" : "com.linkedin.common.Urn" }, - "doc" : "List of jobs or process instances (if any) that use the model or group.", + "doc" : "List of jobs or process instances (if any) that use the model or group.\r", "optional" : true, "Relationship" : { "/*" : { @@ -4042,7 +4042,7 @@ "fields" : [ { "name" : "name", "type" : "string", - "doc" : "Display name of the MLModel", + "doc" : "Display name of the MLModel\r", "optional" : true, "Searchable" : { "boostScore" : 10.0, @@ -4053,7 +4053,7 @@ }, { "name" : "description", "type" : "string", - "doc" : "Documentation of the MLModel", + "doc" : "Documentation of the MLModel\r", "optional" : true, "Searchable" : { "fieldType" : "TEXT", @@ -4062,28 +4062,28 @@ }, { "name" : "date", "type" : "com.linkedin.common.Time", - "doc" : "Date when the MLModel was developed", + "doc" : "Date when the MLModel was developed\r", "optional" : true, "deprecated" : true }, { "name" : "created", "type" : "com.linkedin.common.TimeStamp", - "doc" : "Audit stamp containing who created this and when", + "doc" : "Audit stamp containing who created this and when\r", "optional" : true }, { "name" : "lastModified", "type" : "com.linkedin.common.TimeStamp", - "doc" : "Date when the MLModel was last modified", + "doc" : "Date when the MLModel was last modified\r", "optional" : true }, { "name" : "version", "type" : "com.linkedin.common.VersionTag", - "doc" : "Version of the MLModel", + "doc" : "Version of the MLModel\r", "optional" : true }, { "name" : "type", "type" : "string", - "doc" : "Type of Algorithm or MLModel such as whether it is a Naive Bayes classifier, Convolutional Neural Network, etc", + "doc" : "Type of Algorithm or MLModel such as whether it is a Naive Bayes classifier, Convolutional Neural Network, etc\r", "optional" : true, "Searchable" : { "fieldType" : "TEXT_PARTIAL" @@ -4099,7 +4099,7 @@ "ref" : [ "string", "int", "float", "double", "boolean" ] } }, - "doc" : "Hyper Parameters of the MLModel\n\nNOTE: these are deprecated in favor of hyperParams", + "doc" : "Hyper Parameters of the MLModel\r\n\r\nNOTE: these are deprecated in favor of hyperParams\r", "optional" : true }, { "name" : "hyperParams", @@ -4134,7 +4134,7 @@ } } }, - "doc" : "Hyperparameters of the MLModel", + "doc" : "Hyperparameters of the MLModel\r", "optional" : true }, { "name" : "trainingMetrics", @@ -4169,7 +4169,7 @@ } } }, - "doc" : "Metrics of the MLModel used in training", + "doc" : "Metrics of the MLModel used in training\r", "optional" : true }, { "name" : "onlineMetrics", @@ -4177,7 +4177,7 @@ "type" : "array", "items" : "MLMetric" }, - "doc" : "Metrics of the MLModel used in production", + "doc" : "Metrics of the MLModel used in production\r", "optional" : true }, { "name" : "mlFeatures", @@ -4185,7 +4185,7 @@ "type" : "array", "items" : "com.linkedin.common.MLFeatureUrn" }, - "doc" : "List of features used for MLModel training", + "doc" : "List of features used for MLModel training\r", "optional" : true, "Relationship" : { "/*" : { @@ -4200,7 +4200,7 @@ "type" : "array", "items" : "string" }, - "doc" : "Tags for the MLModel", + "doc" : "Tags for the MLModel\r", "default" : [ ] }, { "name" : "deployments", @@ -4208,7 +4208,7 @@ "type" : "array", "items" : "com.linkedin.common.Urn" }, - "doc" : "Deployments for the MLModel", + "doc" : "Deployments for the MLModel\r", "optional" : true, "Relationship" : { "/*" : { @@ -4222,7 +4222,7 @@ "type" : "array", "items" : "com.linkedin.common.Urn" }, - "doc" : "Groups the model belongs to", + "doc" : "Groups the model belongs to\r", "optional" : true, "Relationship" : { "/*" : { @@ -5025,12 +5025,12 @@ "type" : "record", "name" : "MLModelGroupProperties", "namespace" : "com.linkedin.ml.metadata", - "doc" : "Properties associated with an ML Model Group", - "include" : [ "com.linkedin.common.CustomProperties", "MLModelLineageInfo" ], + "doc" : "Properties associated with an ML Model Group\r", + "include" : [ "com.linkedin.common.CustomProperties", "MLModelLineageInfo", "com.linkedin.common.ExternalReference" ], "fields" : [ { "name" : "name", "type" : "string", - "doc" : "Display name of the MLModelGroup", + "doc" : "Display name of the MLModelGroup\r", "optional" : true, "Searchable" : { "boostScore" : 10.0, @@ -5041,7 +5041,7 @@ }, { "name" : "description", "type" : "string", - "doc" : "Documentation of the MLModelGroup", + "doc" : "Documentation of the MLModelGroup\r", "optional" : true, "Searchable" : { "fieldType" : "TEXT", @@ -5050,23 +5050,23 @@ }, { "name" : "createdAt", "type" : "com.linkedin.common.Time", - "doc" : "Date when the MLModelGroup was developed", + "doc" : "Date when the MLModelGroup was developed\r", "optional" : true, "deprecated" : true }, { "name" : "created", "type" : "com.linkedin.common.TimeStamp", - "doc" : "Time and Actor who created the MLModelGroup", + "doc" : "Time and Actor who created the MLModelGroup\r", "optional" : true }, { "name" : "lastModified", "type" : "com.linkedin.common.TimeStamp", - "doc" : "Date when the MLModelGroup was last modified", + "doc" : "Date when the MLModelGroup was last modified\r", "optional" : true }, { "name" : "version", "type" : "com.linkedin.common.VersionTag", - "doc" : "Version of the MLModelGroup", + "doc" : "Version of the MLModelGroup\r", "optional" : true } ], "Aspect" : {