--- title: "Duplicates Detection" slug: "duplicates-detection" updated: 2025-09-15T09:17:07Z published: 2025-09-15T09:17:07Z canonical: "knowledge-base.rossum.ai/duplicates-detection" --- > ## Documentation Index > Fetch the complete documentation index at: https://knowledge-base.rossum.ai/llms.txt > Use this file to discover all available pages before exploring further. # Duplicates Detection ## Installation > [!WARNING] > 🚧 WORK IN PROGRESS 🚧 > > We're still working on this part and would love to hear your thoughts! Feel free to [share your feedback](https://github.com/rossumai/university/discussions) or [submit a pull request](https://github.com/rossumai/university/pulls). Thank you! 🙏 > > Tracking issue: [https://github.com/rossumai/university/issues/404](https://github.com/rossumai/university/issues/404) ## Basic usage > [!WARNING] > 🚧 WORK IN PROGRESS 🚧 > > We're still working on this part and would love to hear your thoughts! Feel free to [share your feedback](https://github.com/rossumai/university/discussions) or [submit a pull request](https://github.com/rossumai/university/pulls). Thank you! 🙏 > > Tracking issue: [https://github.com/rossumai/university/issues/404](https://github.com/rossumai/university/issues/404) ## Available configuration options > [!WARNING] > 🚧 WORK IN PROGRESS 🚧 > > We're still working on this part and would love to hear your thoughts! Feel free to [share your feedback](https://github.com/rossumai/university/discussions) or [submit a pull request](https://github.com/rossumai/university/pulls). Thank you! 🙏 > > Tracking issue: [https://github.com/rossumai/university/issues/404](https://github.com/rossumai/university/issues/404) ```json {  "configurations": [    {      "logic": [        {          "rules": [            {              "id": 1,              // One of: "field", "filename", "relation"              "attribute": "field",              // Datapoint schema ID              "field_schema_id": "document_id"            }            // …          ],          "scope": {            // One of: "queue", "workspace", "organization"            "object": "queue",            "statuses": [              "failed_import",              "split",              "to_review",              "in_workflow",              "confirmed",              "rejected",              "exporting",              "exported",              "failed_export",              "postponed",              "deleted"            ]          },          "actions": [            {              "type": "fill_field",              "field_to_fill": "is_rossum_duplicate",              "value_to_fill": "true"            }          ],          // Defines how to combine rules. You can specify a list of rule IDs or use logical "and"          // operations between rule IDs. Each list element acts as a logical "or" operation.          "matching_flow": ["1and2", "3"]        }      ],      "trigger_events": ["annotation_content"],      "trigger_actions": ["initialize", "started", "user_update", "updated"]    }  ] } ``` > [!WARNING] > ⚠️ PLEASE BE AWARE: > > Annotation cannot be edited when it’s in **reviewing** state, so be careful which actions you combine with which statuses. > [!WARNING] > 💬 YOUR FEEDBACK MATTERS! > > Help us keep this page accurate and useful. Select **Yes** or **No** below, then use the feedback form to propose a correction, ask for clarification, or request a new article.