mirror of
https://github.com/datahub-project/datahub.git
synced 2026-01-08 15:56:13 +00:00
19 lines
407 B
Plaintext
19 lines
407 B
Plaintext
namespace com.linkedin.query
|
|
|
|
import com.linkedin.common.Urn
|
|
|
|
/**
|
|
* A single subject of a particular query.
|
|
* In the future, we may evolve this model to include richer details
|
|
* about the Query Subject in relation to the query.
|
|
*/
|
|
record QuerySubject {
|
|
/**
|
|
* An entity which is the subject of a query.
|
|
*/
|
|
@Searchable = {
|
|
"fieldName": "entities",
|
|
"fieldType": "URN",
|
|
}
|
|
entity: Urn
|
|
} |