Skip to content

Commit

Permalink
feat(model): add searchable annotation for features in feature table (d…
Browse files Browse the repository at this point in the history
  • Loading branch information
Dexter Lee authored and maggiehays committed Aug 1, 2022
1 parent d6375f6 commit 5fe24af
Showing 1 changed file with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,12 @@ record MLFeatureTableProperties includes CustomProperties {
"entityTypes": [ "mlFeature" ]
}
}
@Searchable = {
"/*": {
"fieldName": "features",
"fieldType": "URN"
}
}
mlFeatures: optional array[Urn]

/**
Expand All @@ -36,5 +42,11 @@ record MLFeatureTableProperties includes CustomProperties {
"entityTypes": [ "mlPrimaryKey" ]
}
}
@Searchable = {
"/*": {
"fieldName": "primaryKeys",
"fieldType": "URN"
}
}
mlPrimaryKeys: optional array[Urn]
}

0 comments on commit 5fe24af

Please sign in to comment.