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(model): adds properties, ownership, deprecated, institutional memory and tags as aspects for data platform instance entity #5728

Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
namespace com.linkedin.dataplatforminstance

import com.linkedin.common.Uri
import com.linkedin.common.CustomProperties
import com.linkedin.common.ExternalReference

/**
* Properties associated with a Data Platform Instance
*/
@Aspect = {
"name": "dataPlatformInstanceProperties"
}
record DataPlatformInstanceProperties includes CustomProperties, ExternalReference {

/**
* Display name of the Data Platform Instance
*/
@Searchable = {
"fieldType": "TEXT_PARTIAL",
"enableAutocomplete": true,
"boostScore": 10.0
}
name: optional string

/**
* Documentation of the Data Platform Instance
*/
@Searchable = {
"fieldType": "TEXT",
"hasValuesFieldName": "hasDescription"
}
description: optional string
}
5 changes: 5 additions & 0 deletions metadata-models/src/main/resources/entity-registry.yml
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,11 @@ entities:
category: internal
keyAspect: dataPlatformInstanceKey
aspects:
- dataPlatformInstanceProperties
- ownership
- globalTags
- institutionalMemory
- deprecation
- status
- name: mlModel
category: core
Expand Down