-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c62697a
commit c1b7e07
Showing
35 changed files
with
123 additions
and
12 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 6 additions & 0 deletions
6
...malizes/Data/IsArray/Schema/HasType/IsArray/WithItemDefinition/IsSequence/normalized.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
[ | ||
9001, | ||
"foo", | ||
false, | ||
null | ||
] |
6 changes: 6 additions & 0 deletions
6
...ormalizes/Data/IsArray/Schema/HasType/IsArray/WithItemDefinition/IsSequence/original.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
[ | ||
9001, | ||
"foo", | ||
false, | ||
null | ||
] |
19 changes: 19 additions & 0 deletions
19
...eNormalizes/Data/IsArray/Schema/HasType/IsArray/WithItemDefinition/IsSequence/schema.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"type": [ | ||
"array" | ||
], | ||
"items": [ | ||
{ | ||
"type": "integer" | ||
}, | ||
{ | ||
"type": "string" | ||
}, | ||
{ | ||
"type": "boolean" | ||
}, | ||
{ | ||
"type": "null" | ||
} | ||
] | ||
} |
6 changes: 6 additions & 0 deletions
6
...alizeNormalizes/Data/IsArray/Schema/HasType/IsArray/WithoutItemDefinition/normalized.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
[ | ||
9001, | ||
"foo", | ||
false, | ||
null | ||
] |
6 changes: 6 additions & 0 deletions
6
...rmalizeNormalizes/Data/IsArray/Schema/HasType/IsArray/WithoutItemDefinition/original.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
[ | ||
9001, | ||
"foo", | ||
false, | ||
null | ||
] |
5 changes: 5 additions & 0 deletions
5
...NormalizeNormalizes/Data/IsArray/Schema/HasType/IsArray/WithoutItemDefinition/schema.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"type": [ | ||
"array" | ||
] | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 6 additions & 0 deletions
6
...alizes/Data/IsArray/Schema/HasType/IsScalar/WithItemDefinition/IsSequence/normalized.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
[ | ||
9001, | ||
"foo", | ||
false, | ||
null | ||
] |
6 changes: 6 additions & 0 deletions
6
...rmalizes/Data/IsArray/Schema/HasType/IsScalar/WithItemDefinition/IsSequence/original.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
[ | ||
9001, | ||
"foo", | ||
false, | ||
null | ||
] |
17 changes: 17 additions & 0 deletions
17
...Normalizes/Data/IsArray/Schema/HasType/IsScalar/WithItemDefinition/IsSequence/schema.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"type": "array", | ||
"items": [ | ||
{ | ||
"type": "integer" | ||
}, | ||
{ | ||
"type": "string" | ||
}, | ||
{ | ||
"type": "boolean" | ||
}, | ||
{ | ||
"type": "null" | ||
} | ||
] | ||
} |
10 changes: 4 additions & 6 deletions
10
...lizeNormalizes/Data/IsArray/Schema/HasType/IsScalar/WithoutItemDefinition/normalized.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,6 @@ | ||
[ | ||
{ | ||
"baz": 9000 | ||
}, | ||
{ | ||
"baz": 9001 | ||
} | ||
9001, | ||
"foo", | ||
false, | ||
null | ||
] |
10 changes: 4 additions & 6 deletions
10
...malizeNormalizes/Data/IsArray/Schema/HasType/IsScalar/WithoutItemDefinition/original.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,6 @@ | ||
[ | ||
{ | ||
"baz": 9000 | ||
}, | ||
{ | ||
"baz": 9001 | ||
} | ||
9001, | ||
"foo", | ||
false, | ||
null | ||
] |
6 changes: 6 additions & 0 deletions
6
.../Fixture/SchemaNormalizer/NormalizeNormalizes/Data/IsArray/Schema/IsEmpty/normalized.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
[ | ||
9001, | ||
"foo", | ||
false, | ||
null | ||
] |
6 changes: 6 additions & 0 deletions
6
test/Fixture/SchemaNormalizer/NormalizeNormalizes/Data/IsArray/Schema/IsEmpty/original.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
[ | ||
9001, | ||
"foo", | ||
false, | ||
null | ||
] |
1 change: 1 addition & 0 deletions
1
test/Fixture/SchemaNormalizer/NormalizeNormalizes/Data/IsArray/Schema/IsEmpty/schema.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{} |
1 change: 1 addition & 0 deletions
1
test/Fixture/SchemaNormalizer/NormalizeNormalizes/Data/IsScalar/Boolean/normalized.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
false |
1 change: 1 addition & 0 deletions
1
test/Fixture/SchemaNormalizer/NormalizeNormalizes/Data/IsScalar/Boolean/original.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
false |
3 changes: 3 additions & 0 deletions
3
test/Fixture/SchemaNormalizer/NormalizeNormalizes/Data/IsScalar/Boolean/schema.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"type": "boolean" | ||
} |
1 change: 1 addition & 0 deletions
1
test/Fixture/SchemaNormalizer/NormalizeNormalizes/Data/IsScalar/Null/normalized.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
null |
1 change: 1 addition & 0 deletions
1
test/Fixture/SchemaNormalizer/NormalizeNormalizes/Data/IsScalar/Null/original.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
null |
3 changes: 3 additions & 0 deletions
3
test/Fixture/SchemaNormalizer/NormalizeNormalizes/Data/IsScalar/Null/schema.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"type": "null" | ||
} |
1 change: 1 addition & 0 deletions
1
test/Fixture/SchemaNormalizer/NormalizeNormalizes/Data/IsScalar/Number/Float/normalized.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
3.1415 |
1 change: 1 addition & 0 deletions
1
test/Fixture/SchemaNormalizer/NormalizeNormalizes/Data/IsScalar/Number/Float/original.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
3.1415 |
3 changes: 3 additions & 0 deletions
3
test/Fixture/SchemaNormalizer/NormalizeNormalizes/Data/IsScalar/Number/Float/schema.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"type": "number" | ||
} |
1 change: 1 addition & 0 deletions
1
...Fixture/SchemaNormalizer/NormalizeNormalizes/Data/IsScalar/Number/Integer/normalized.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
9001 |
1 change: 1 addition & 0 deletions
1
test/Fixture/SchemaNormalizer/NormalizeNormalizes/Data/IsScalar/Number/Integer/original.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
9001 |
3 changes: 3 additions & 0 deletions
3
test/Fixture/SchemaNormalizer/NormalizeNormalizes/Data/IsScalar/Number/Integer/schema.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"type": "number" | ||
} |
1 change: 1 addition & 0 deletions
1
test/Fixture/SchemaNormalizer/NormalizeNormalizes/Data/IsScalar/String/normalized.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
"https://localheinz.com" |
1 change: 1 addition & 0 deletions
1
test/Fixture/SchemaNormalizer/NormalizeNormalizes/Data/IsScalar/String/original.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
"https://localheinz.com" |
3 changes: 3 additions & 0 deletions
3
test/Fixture/SchemaNormalizer/NormalizeNormalizes/Data/IsScalar/String/schema.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"type": "string" | ||
} |