UNPKG

@dasch-swiss/dsp-js

Version:

JavaScript library that handles API requests to Knora

19 lines (18 loc) 473 B
/** * Params for fulltext search. * @category Model V2 */ export interface IFulltextSearchParams { /** * Iri of resource class the fulltext search is restricted to, if any. */ limitToResourceClass?: string; /** * Iri of the project the fulltext search is restricted to, if any. */ limitToProject?: string; /** * Iri of standoff class the fulltext search is restricted to, if any. */ limitToStandoffClass?: string; }