schema/schema/geojson/crs.json in adiwg-json_schemas-0.4.0 vs schema/schema/geojson/crs.json in adiwg-json_schemas-0.5.0
- old
+ new
@@ -1,8 +1,8 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
- "id": "crs.json#",
+ "id": "crs.json#",
"title": "crs",
"description": "a Coordinate Reference System object",
"type": [ "object", "null" ],
"required": [ "type", "properties" ],
"properties": {
@@ -14,10 +14,11 @@
{ "$ref": "#/definitions/namedCrs" },
{ "$ref": "#/definitions/linkedCrs" }
],
"definitions": {
"namedCrs": {
+ "title": "namedCrs",
"properties": {
"type": { "enum": [ "name" ] },
"properties": {
"required": [ "name" ],
"additionalProperties": false,
@@ -30,21 +31,23 @@
}
}
},
"linkedObject": {
"type": "object",
+ "title": "linkedObject",
"required": [ "href" ],
"properties": {
"href": {
- "$ref": "../../schema.json#definitions/url"
+ "$ref": "../../schema.json#/definitions/url"
},
"type": {
"type": "string",
"description": "Suggested values: proj4, ogjwkt, esriwkt"
}
}
},
"linkedCrs": {
+ "title": "linkedCrs",
"properties": {
"type": { "enum": [ "link" ] },
"properties": { "$ref": "#/definitions/linkedObject" }
}
}