Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(properties) Support custom properties on all entities with profile page #10680

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
namespace com.linkedin.domain

import com.linkedin.common.AuditStamp
import com.linkedin.common.CustomProperties
import com.linkedin.common.Urn

/**
Expand All @@ -9,7 +10,7 @@ import com.linkedin.common.Urn
@Aspect = {
"name": "domainProperties"
}
record DomainProperties {
record DomainProperties includes CustomProperties {

/**
* Display name of the Domain
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
namespace com.linkedin.ml.metadata

import com.linkedin.common.CustomProperties
import com.linkedin.common.Urn
import com.linkedin.common.MLFeatureDataType
import com.linkedin.common.VersionTag
Expand All @@ -10,7 +11,7 @@ import com.linkedin.common.VersionTag
@Aspect = {
"name": "mlFeatureProperties"
}
record MLFeatureProperties {
record MLFeatureProperties includes CustomProperties {

/**
* Documentation of the MLFeature
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
namespace com.linkedin.ml.metadata

import com.linkedin.common.CustomProperties
import com.linkedin.common.Urn
import com.linkedin.common.MLFeatureDataType
import com.linkedin.common.VersionTag
Expand All @@ -10,7 +11,7 @@ import com.linkedin.common.VersionTag
@Aspect = {
"name": "mlPrimaryKeyProperties"
}
record MLPrimaryKeyProperties {
record MLPrimaryKeyProperties includes CustomProperties {

/**
* Documentation of the MLPrimaryKey
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3294,6 +3294,7 @@
"name" : "MLFeatureProperties",
"namespace" : "com.linkedin.ml.metadata",
"doc" : "Properties associated with a MLFeature",
"include" : [ "com.linkedin.common.CustomProperties" ],
"fields" : [ {
"name" : "description",
"type" : "string",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4371,6 +4371,7 @@
"name" : "MLPrimaryKeyProperties",
"namespace" : "com.linkedin.ml.metadata",
"doc" : "Properties associated with a MLPrimaryKey",
"include" : [ "com.linkedin.common.CustomProperties" ],
"fields" : [ {
"name" : "description",
"type" : "string",
Expand Down Expand Up @@ -4460,6 +4461,7 @@
"name" : "MLFeatureProperties",
"namespace" : "com.linkedin.ml.metadata",
"doc" : "Properties associated with a MLFeature",
"include" : [ "com.linkedin.common.CustomProperties" ],
"fields" : [ {
"name" : "description",
"type" : "string",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3027,6 +3027,7 @@
"name" : "MLFeatureProperties",
"namespace" : "com.linkedin.ml.metadata",
"doc" : "Properties associated with a MLFeature",
"include" : [ "com.linkedin.common.CustomProperties" ],
"fields" : [ {
"name" : "description",
"type" : "string",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3021,6 +3021,7 @@
"name" : "MLFeatureProperties",
"namespace" : "com.linkedin.ml.metadata",
"doc" : "Properties associated with a MLFeature",
"include" : [ "com.linkedin.common.CustomProperties" ],
"fields" : [ {
"name" : "description",
"type" : "string",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4365,6 +4365,7 @@
"name" : "MLPrimaryKeyProperties",
"namespace" : "com.linkedin.ml.metadata",
"doc" : "Properties associated with a MLPrimaryKey",
"include" : [ "com.linkedin.common.CustomProperties" ],
"fields" : [ {
"name" : "description",
"type" : "string",
Expand Down Expand Up @@ -4454,6 +4455,7 @@
"name" : "MLFeatureProperties",
"namespace" : "com.linkedin.ml.metadata",
"doc" : "Properties associated with a MLFeature",
"include" : [ "com.linkedin.common.CustomProperties" ],
"fields" : [ {
"name" : "description",
"type" : "string",
Expand Down
Loading