QueryPartItem
Query Part Item🔗
Description🔗
A Query Part Item is a search term that needs to be matched against the document metadata.
In case of resolved location query parts, the resolved geo coordinates are appended to the value of query part items, separated by a leading '@'.
Fields🔗
Parameter Name | Type | Description |
---|---|---|
value | string | the term that should be searched for in the documents |
label | string | the label that should be displayed representing the item |
synonyms | list of strings | the list of automatically expanded synonyms for this query part item |
subParts | list of QueryPart | Object part items contain nested QueryParts inside. |
Examples🔗
{
"value":"01",
"label":"Bachelor",
"synonyms":[]
}
{
"value":"\"Software Developer\"",
"label":"\"Software Developer\"",
"synonyms": ["\"Application Developer\"", "\"Application Engineer\"", ... ]
}