> For the complete documentation index, see [llms.txt](https://radoslaw-medryk.gitbook.io/verifica/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://radoslaw-medryk.gitbook.io/verifica/predicates/built-in-predicates/isoneof.md).

# isOneOf

```typescript
isOneOf(allowedValues)
```

Verifies if provided `Validatable` is exactly equal (`===`) to one of provided values in array `allowedValues`.

### Arguments:

* `allowedValues` - required, array of values.

### Possible errors:

#### If provided `Validatable` is not equal (`===`) to any of values in provided `allowedValues` array:

```typescript
{
    type: "isOneOf",
    path: [/* ... */]
}
```

### Examples:

Each of examples uses this import statement:

```typescript
const { asVerificable, isValid, isOneOf, getErrors } = require("verifica");
```

#### Value not equally (`===`) matching any of provided `allowedValues` :

```typescript
const verificable = asVerificable("something");
isValid(verificable, isOneOf(["a", "b", "c"])); // false
getErrors(verificable, isArrayOf(isString)); // [{ type: "isOneOf", path: [] }]
```

#### Value matching at least one of `allowedValues`:

```typescript
const verificable = asVerificable(123);
isValid(verificable, isOneOf([111, 123, 222])); // true
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://radoslaw-medryk.gitbook.io/verifica/predicates/built-in-predicates/isoneof.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
