Skip to content

Commit

Permalink
Merge pull request #61 from nflaig/fix-uint64-regex
Browse files Browse the repository at this point in the history
fix: update uint64 regex to allow 0 as value
  • Loading branch information
rolfyone committed Sep 8, 2023
2 parents ee334a4 + e7bd8d0 commit 7105e74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion types/uint.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Uint64:
type: string
pattern: ^[1-9][0-9]{0,19}$
pattern: ^(0|[1-9][0-9]{0,19})$
example: "30000000"

0 comments on commit 7105e74

Please sign in to comment.