KEE - Match on a Specific Facet?

Hi, :wave: I am working on KEE and wanted to know how to use KEE to do the match on a specific facet?

Hi,

You define the keywords (facets) on which the KEE should match in the extraction section of the config.json file of your KEE.

For example, if you want to match on the (default) item fields body and title plus the keyword company, add the following to your configuration:

{
    "extraction": ["title", "body", "keyword.company"]
}

If you are setting up the KEE using the UI, add the above configuration in the Config (JSON) field.

1 Like

Great, thanks.