> For the complete documentation index, see [llms.txt](https://schema.js.org/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://schema.js.org/documents/number/multiple.md).

# Multiple

Checks if the given number is a multiple of the given value

```typescript
import Schema from "@rapidom/schema";

const Validator = Schema.number().multiple(2);
```
