diff options
author | Julian Berman <Julian@GrayVines.com> | 2021-08-06 14:33:49 +0100 |
---|---|---|
committer | Julian Berman <Julian@GrayVines.com> | 2021-08-06 14:33:49 +0100 |
commit | b0f2877d217060a6be74bac29ca3b9b3cea44e18 (patch) | |
tree | 6944ba6d65cfbe5a54ee13b5cc1bf482194b97dd /json/tests/draft2019-09/optional | |
parent | 58e9a9e9ef83cdb3656531c044cfcf1fc317ddd7 (diff) | |
parent | f29c81f3d812a0d82428c90f3623dc5fb5331b2c (diff) | |
download | jsonschema-b0f2877d217060a6be74bac29ca3b9b3cea44e18.tar.gz |
Merge commit 'f29c81f3d812a0d82428c90f3623dc5fb5331b2c'
* commit 'f29c81f3d812a0d82428c90f3623dc5fb5331b2c':
Squashed 'json/' changes from f9acc454..bb2a20d3
Diffstat (limited to 'json/tests/draft2019-09/optional')
-rw-r--r-- | json/tests/draft2019-09/optional/format/uuid.json | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/json/tests/draft2019-09/optional/format/uuid.json b/json/tests/draft2019-09/optional/format/uuid.json index 45bf349..e54cbc0 100644 --- a/json/tests/draft2019-09/optional/format/uuid.json +++ b/json/tests/draft2019-09/optional/format/uuid.json @@ -46,6 +46,21 @@ "valid": false }, { + "description": "too few dashes", + "data": "2eb8aa08aa98-11ea-b4aa73b441d16380", + "valid": false + }, + { + "description": "too many dashes", + "data": "2eb8-aa08-aa98-11ea-b4aa73b44-1d16380", + "valid": false + }, + { + "description": "dashes in the wrong spot", + "data": "2eb8aa08aa9811eab4aa73b441d16380----", + "valid": false + }, + { "description": "valid version 4", "data": "98d80576-482e-427f-8434-7f86890ab222", "valid": true |