# KEE - Match on a Specific Facet?

**URL:** https://forum.squirro.com/t/kee-match-on-a-specific-facet/118
**Category:** The Insight Engine
**Created:** [March 15, 2022, 10:11am UTC](https://forum.squirro.com/t/kee-match-on-a-specific-facet/118 "2022-03-15T10:11:01Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![Lauren](https://dub1.discourse-cdn.com/flex013/user_avatar/forum.squirro.com/lauren/32/18_2.png) [@Lauren](https://forum.squirro.com/u/Lauren)
#### Post date: [March 15, 2022, 10:11am UTC](https://forum.squirro.com/t/kee-match-on-a-specific-facet/118/1 "2022-03-15T10:11:01Z")

</div>

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

---

<div class="post-metadata">

### Author: ![claudio](https://dub1.discourse-cdn.com/flex013/user_avatar/forum.squirro.com/claudio/32/67_2.png) [@claudio](https://forum.squirro.com/u/claudio)
#### Post date: [March 15, 2022, 10:36am UTC](https://forum.squirro.com/t/kee-match-on-a-specific-facet/118/2 "2022-03-15T10:36:11Z")

</div>

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:

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

```

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

 ![Screenshot 2022-03-15 at 11.34.15](https://europe1.discourse-cdn.com/flex013/uploads/squirro/original/1X/c15277175c40a170c9b8d8fa53e0aadb59d00892.png)

---

<div class="post-metadata">

### Author: ![Lauren](https://dub1.discourse-cdn.com/flex013/user_avatar/forum.squirro.com/lauren/32/18_2.png) [@Lauren](https://forum.squirro.com/u/Lauren)
#### Post date: [March 15, 2022, 10:41am UTC](https://forum.squirro.com/t/kee-match-on-a-specific-facet/118/3 "2022-03-15T10:41:16Z")

</div>

Great, thanks.
