Skip to content

Commit

Permalink
fix: uuid/ulid regex (#108)
Browse files Browse the repository at this point in the history
  • Loading branch information
kalinkrustev authored Oct 1, 2024
1 parent 8e17f22 commit b0578c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/interface/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -922,7 +922,7 @@ components:
lowercase [UUID](https://datatracker.ietf.org/doc/html/rfc9562) and
uppercase [ULID](https://github.com/ulid/spec)
pattern: >-
^[0-9a-f]{8}-[0-9a-f]{4}-[1-7][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|[0-9A-HJKMNP-TV-Z]{26}$
^[0-9a-f]{8}-[0-9a-f]{4}-[1-7][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$|^[0-9A-HJKMNP-TV-Z]{26}$
type: string
Currency:
title: CurrencyEnum
Expand Down

0 comments on commit b0578c6

Please sign in to comment.