Skip to content

Commit 621e253

Browse files
committed
Squashed 'json/' changes from e64ebf9..002ce0f
002ce0f Merge pull request #237 from leadpony/add_to_list 6e62399 Add Justify as a suite user to README.md 0436e52 Merge pull request #233 from leadpony/fix_indentation c09e3a6 Fix broken indentation in enum.json 353f7f3 Merge pull request #232 from Clemens-U/master aa833c5 Added a test for an invalid closing Z after time-zone offset for date-time format. c17161a Merge pull request #230 from Jokipii/master 139fb66 Add https://github.com/seznam/python-fastjsonschema to the list git-subtree-dir: json git-subtree-split: 002ce0fbe070f483429260188b18fe07bd6ec0f0
1 parent c268d99 commit 621e253

File tree

6 files changed

+34
-27
lines changed

6 files changed

+34
-27
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ This suite is being used by:
100100
* [json-schema-validator](https://github.com/daveclayton/json-schema-validator)
101101
* [everit-org/json-schema](https://github.com/everit-org/json-schema)
102102
* [networknt/json-schema-validator](https://github.com/networknt/json-schema-validator)
103+
* [Justify](https://github.com/leadpony/justify)
103104

104105
### JavaScript ###
105106

@@ -140,6 +141,7 @@ for more information.
140141
### Python ###
141142

142143
* [jsonschema](https://github.com/Julian/jsonschema)
144+
* [fastjsonschema](https://github.com/seznam/python-fastjsonschema)
143145

144146
### Ruby ###
145147

tests/draft3/enum.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,12 @@
3939
{
4040
"description": "enums in properties",
4141
"schema": {
42-
"type":"object",
43-
"properties": {
44-
"foo": {"enum":["foo"]},
45-
"bar": {"enum":["bar"], "required":true}
46-
}
47-
},
42+
"type":"object",
43+
"properties": {
44+
"foo": {"enum":["foo"]},
45+
"bar": {"enum":["bar"], "required":true}
46+
}
47+
},
4848
"tests": [
4949
{
5050
"description": "both properties are valid",

tests/draft4/enum.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,13 @@
3939
{
4040
"description": "enums in properties",
4141
"schema": {
42-
"type":"object",
43-
"properties": {
44-
"foo": {"enum":["foo"]},
45-
"bar": {"enum":["bar"]}
46-
},
47-
"required": ["bar"]
48-
},
42+
"type":"object",
43+
"properties": {
44+
"foo": {"enum":["foo"]},
45+
"bar": {"enum":["bar"]}
46+
},
47+
"required": ["bar"]
48+
},
4949
"tests": [
5050
{
5151
"description": "both properties are valid",

tests/draft6/enum.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,13 @@
3939
{
4040
"description": "enums in properties",
4141
"schema": {
42-
"type":"object",
43-
"properties": {
44-
"foo": {"enum":["foo"]},
45-
"bar": {"enum":["bar"]}
46-
},
47-
"required": ["bar"]
48-
},
42+
"type":"object",
43+
"properties": {
44+
"foo": {"enum":["foo"]},
45+
"bar": {"enum":["bar"]}
46+
},
47+
"required": ["bar"]
48+
},
4949
"tests": [
5050
{
5151
"description": "both properties are valid",

tests/draft6/optional/format.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,11 @@
3333
"data": "1990-12-31T15:59:60-24:00",
3434
"valid": false
3535
},
36+
{
37+
"description": "an invalid closing Z after time-zone offset",
38+
"data": "1963-06-19T08:30:06.28123+01:00Z",
39+
"valid": false
40+
},
3641
{
3742
"description": "an invalid date-time string",
3843
"data": "06/19/1963 08:30:06 PST",

tests/draft7/enum.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,13 @@
3939
{
4040
"description": "enums in properties",
4141
"schema": {
42-
"type":"object",
43-
"properties": {
44-
"foo": {"enum":["foo"]},
45-
"bar": {"enum":["bar"]}
46-
},
47-
"required": ["bar"]
48-
},
42+
"type":"object",
43+
"properties": {
44+
"foo": {"enum":["foo"]},
45+
"bar": {"enum":["bar"]}
46+
},
47+
"required": ["bar"]
48+
},
4949
"tests": [
5050
{
5151
"description": "both properties are valid",

0 commit comments

Comments
 (0)