Skip to content

Commit cba2b11

Browse files
committed
updating #65 testcase
1 parent 60a9ad3 commit cba2b11

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

tests/src/test/resources/org/everit/json/schema/issues/issue65/schema.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
22
"required": [
33
"arrayOfObjs",
4-
"AnotherArrayOfObjs"
4+
"anotherArrayOfObjs"
55
],
66
"properties": {
77
"arrayOfObjs": {
88
"type": "array",
99
"items": {
1010
"type": "object",
1111
"properties": {
12-
"ipRanges": {
12+
"StringArrayObj": {
1313
"type": "array",
1414
"minItems": 1,
1515
"items": {
@@ -18,14 +18,14 @@
1818
]
1919
}
2020
},
21-
"NumberObj": {
21+
"numObj": {
2222
"type": "number",
2323
"maximum": -1
2424
}
2525
}
2626
}
2727
},
28-
"AnotherArrayOfObjs": {
28+
"anotherArrayOfObjs": {
2929
"type": "array",
3030
"items": {
3131
"type": "object",
@@ -39,7 +39,7 @@
3939
"testString"
4040
]
4141
},
42-
"NumberObj": {
42+
"numObj": {
4343
"type": "number",
4444
"maximum": -1
4545
}

tests/src/test/resources/org/everit/json/schema/issues/issue65/subject-invalid.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22

3-
"objectArray1": [
3+
"arrayOfObjs": [
44
{
55
"numObj": 3,
66
"StringArrayObj": [
@@ -24,6 +24,5 @@
2424
]
2525
}
2626
],
27-
"objectArray2": []
27+
"anotherArrayOfObjs": []
2828
}
29-

0 commit comments

Comments
 (0)