Skip to content

Commit 22d8145

Browse files
committed
Merge branch 'master' into test-issue-182
2 parents 8960aec + e381bc9 commit 22d8145

File tree

2 files changed

+11
-1
lines changed
  • tests/src/test/resources/org/everit/json/schema/issues/issue36

2 files changed

+11
-1
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"id": "http://json-schema.org/geo",
3+
"$schema": "http://json-schema.org/draft-06/schema#",
4+
"description": "A geographical coordinate",
5+
"type": "object",
6+
"properties": {
7+
"latitude": { "type": "number" },
8+
"longitude": { "type": "number" }
9+
}
10+
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
},
4848
"warehouseLocation": {
4949
"description": "Coordinates of the warehouse with the product",
50-
"$ref": "http://json-schema.org/geo"
50+
"$ref": "http://localhost:1234/geo"
5151
}
5252
},
5353
"required": [

0 commit comments

Comments
 (0)