> For the complete documentation index, see [llms.txt](https://racoon-js.gitbook.io/en/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://racoon-js.gitbook.io/en/api/any.md).

# any

any()

## Effect

Get a schema object of type any.

## Arguments

None

## Example

```javascript
const schema = racoon.any();
schema.validate(1); // pass
schema.validate('abc'); // pass
schema.validate(true); // pass
schema.validate({}); // pass
```
