-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(model): adds properties, ownership, deprecated, institutional me…
…mory and tags as aspects for data platform instance entity (#5728)
- Loading branch information
1 parent
8395016
commit c6eff28
Showing
2 changed files
with
38 additions
and
0 deletions.
There are no files selected for viewing
33 changes: 33 additions & 0 deletions
33
...els/src/main/pegasus/com/linkedin/dataplatforminstance/DataPlatformInstanceProperties.pdl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters