Matches intervals containing terms that are similar to the provided term, within an edit distance defined by fuzziness. An edit is a single character change needed to make a term match, including character insertion, deletion, substitution, or transposition of two adjacent characters.
| Name | Type | Required | Description |
|---|---|---|---|
| term | str | Yes | The term to match. |
| fuzziness | Optional[int] | No | Maximum edit distance allowed for matching. Valid values are 0, 1, or 2. Defaults to 2. |
| type | Literal["fuzzy"] | Yes | None |