schema/schema/extent.json in adiwg-json_schemas-0.4.0 vs schema/schema/extent.json in adiwg-json_schemas-0.5.0

- old
+ new

@@ -11,11 +11,11 @@ "geographicElement": { "type": "array", "items": { "properties": { "type": { - "enum": ["Feature", "FeatureCollection"] + "enum": ["Feature", "FeatureCollection", "GeometryCollection", "Point", "MultiPoint", "LineString", "MultiLineString", "Polygon", "MultiPolygon"] } }, "oneOf": [ { "$ref": "./geojson/geojson.json#" @@ -24,16 +24,16 @@ } }, "verticalElement": { "type": "array", "items": { - "$ref": "#definitions/verticalExtent" + "$ref": "#/definitions/verticalExtent" } }, "temporalElement": { - "$ref": "#definitions/temporalElement" + "$ref": "#/definitions/temporalElement" } }, "definitions": { "timeInstant": { "type": "object", @@ -45,11 +45,11 @@ }, "description": { "type": "string" }, "timePosition": { - "$ref": "../schema.json#definitions/date" + "$ref": "../schema.json#/definitions/date" } } }, "timePeriod": { "type": "object", @@ -61,14 +61,14 @@ }, "description": { "type": "string" }, "beginPosition": { - "$ref": "../schema.json#definitions/date" + "$ref": "../schema.json#/definitions/date" }, "endPosition": { - "$ref": "../schema.json#definitions/date" + "$ref": "../schema.json#/definitions/date" } } }, "temporalElement": { "type": "object", @@ -76,22 +76,22 @@ "minProperties": 1, "properties": { "timeInstant": { "type": "array", "items": { - "$ref": "#definitions/timeInstant" + "$ref": "#/definitions/timeInstant" } }, "timePeriod": { "type": "array", "items": { - "$ref": "#definitions/timePeriod" + "$ref": "#/definitions/timePeriod" } }, "date": { "type": "array", "items": { - "$ref": "../schema.json#definitions/date" + "$ref": "../schema.json#/definitions/date" } } } }, "verticalExtent": {