From e7bd8d0a91deb9900938a2c03ce5526f0d316cf6 Mon Sep 17 00:00:00 2001 From: Nico Flaig Date: Fri, 8 Sep 2023 13:58:53 +0200 Subject: [PATCH] fix: update uint64 regex to allow 0 as value --- types/uint.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/uint.yaml b/types/uint.yaml index 24f4e88..c62a9c3 100644 --- a/types/uint.yaml +++ b/types/uint.yaml @@ -1,4 +1,4 @@ Uint64: type: string - pattern: ^[1-9][0-9]{0,19}$ + pattern: ^(0|[1-9][0-9]{0,19})$ example: "30000000"