> ## Documentation Index
> Fetch the complete documentation index at: https://doc.lucidworks.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Object filters

export const LwTemplate = ({title = "Key questions to get you started", icon = "sparkles", cta = "Powered by Agent Studio", linkHref = "https://lucidworks.com/demo/?utm_source=docs&utm_medium=referral&utm_campaign=docs_cta_ai"}) => {
  const [isLoaded, setIsLoaded] = useState(false);
  useEffect(() => {
    const timer = setTimeout(() => {
      setIsLoaded(true);
    }, 500);
    return () => clearTimeout(timer);
  }, []);
  return <div className="lw-template-container">
      <Card title={title} icon={icon}>
        {isLoaded && <span dangerouslySetInnerHTML={{
    __html: `<lw-template id="a029c1a9-28be-427e-b0e1-5d918920246a"></lw-template
            >`
  }} />}
        <Link href={linkHref} className="agent-studio-link text-left text-gray-600 gap-2 dark:text-gray-400 text-sm font-medium flex flex-row items-center hover:text-primary dark:hover:text-primary-light group-hover:text-primary group-hover:dark:text-primary-light">Powered by Lucidworks Agent Studio</Link>
      </Card>
    </div>;
};

[old doc.lw link]: https//doc.lucidworks.com/fusion/5.9/ztfcnr

[localhost link]: http://localhost:3000/docs/5/fusion/operations/config-sync/filters/object-filter

[mintlify link]: https://doc.lucidworks.com/docs/5/fusion/operations/config-sync/filters/object-filter

You can configure which objects to synchronize using the `objects` config setting in the `fusion-config-sync` section of the Helm chart.

<LwTemplate />

## Enabled/disabled objects

Each object type can be disabled for synchronization using the `cfg.sub.objects.<TYPE-KEY>.enabled` setting.

For instance, to disable synchronization of the `users` object type, use the following configuration:

```yaml wrap  theme={"dark"}
cfg:
  sub:
    objects:
      users:
        enabled: false
```

By default, all object types are enabled for synchronization.

## Name filters

Each object type can have a name filter regex (`cfg.sub.objects.<TYPE-KEY>.name-filter` setting) that filters out objects by their name.
The global name filter regex for all object types is `cfg.sub.objects.name-filter` setting.

For instance, to exclude all objects with names starting with `test` for the `users` object type, use the following configuration:

```yaml wrap  theme={"dark"}
cfg:
  sub:
    objects:
      users:
        name-filter: "^test.*"
```

## Prop filters

Each object type can have a prop filter list (`cfg.pub.objects.<TYPE-KEY>.prop-filter` setting) that filters out object properties.

<Note>
  [Subscriber mode](/docs/5/fusion/operations/config-sync/modes/subscriber-mode) does not support prop filters.
</Note>

The prop filter list is a comma-separated list of property JSON Pointer paths.
Read more about JSON Pointer syntax [here](https://tools.ietf.org/html/rfc6901).
The global prop filter list for all object types is `cfg.pub.objects.prop-filter` setting.
For instance, to exclude the `password` property for the `users` object type, use the following configuration:

```yaml wrap  theme={"dark"}
cfg:
  pub:
    objects:
      users:
        prop-filter: "/password"
```
