Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions content/docs/types/string.md
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ vine.object({

### uuid

Ensure the field's value to be a valid `uuid`. You may optionally enforce a specific uuid version (version 1, 2, 3, 4 or 5).
Ensure the field's value to be a valid `uuid`. You may optionally enforce a specific uuid version (1 through 8).

```ts
vine.object({
Expand All @@ -366,7 +366,7 @@ vine.object({
vine.object({
id: vine
.string()
.uuid({ version: [2, 4, 5] })
.uuid({ version: [2, 4, 5, 7] })
})
```

Expand Down