2025-07-15 17:40:11 -05:00

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
}