-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removing .json from ignore list so we don't miss JSON resource files.
- Loading branch information
1 parent
70709fc
commit e7f5cc7
Showing
3 changed files
with
46 additions
and
1 deletion.
There are no files selected for viewing
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
23 changes: 23 additions & 0 deletions
23
...urces/com/ebay/nst/schema/validation/OpenApiSchemaValidatorTest/json/invalidResponse.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,23 @@ | ||
{ | ||
"numberOfFruit": 100, | ||
"typesOfApples": [ | ||
{ | ||
"name": "Fuji", | ||
"color": 1 | ||
}, | ||
{ | ||
"name": "Gala", | ||
"color": "YELLOW" | ||
} | ||
], | ||
"typesOfBananas": [ | ||
{ | ||
"name": "Big Yellow", | ||
"color": "YELLOW" | ||
}, | ||
{ | ||
"name": "Old Brown", | ||
"color": 2 | ||
} | ||
] | ||
} |
23 changes: 23 additions & 0 deletions
23
...sources/com/ebay/nst/schema/validation/OpenApiSchemaValidatorTest/json/validResponse.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,23 @@ | ||
{ | ||
"numberOfFruit": 100, | ||
"typesOfApples": [ | ||
{ | ||
"name": "Fuji", | ||
"color": "RED" | ||
}, | ||
{ | ||
"name": "Gala", | ||
"color": "YELLOW" | ||
} | ||
], | ||
"typesOfBananas": [ | ||
{ | ||
"name": "Big Yellow", | ||
"color": "YELLOW" | ||
}, | ||
{ | ||
"name": "Old Brown", | ||
"color": "BROWN" | ||
} | ||
] | ||
} |