From ed7f5826e35dbf65c91e1084268f02794d44171b Mon Sep 17 00:00:00 2001 From: Yann Zimmermann Date: Thu, 5 Nov 2015 08:51:52 +0100 Subject: [PATCH] Allowing coordinates with more then 2 dimensions The schema already had globally this possibility but a bug was remaining here. --- geojson/geometry.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/geojson/geometry.json b/geojson/geometry.json index ca3bea0..9d35c7c 100644 --- a/geojson/geometry.json +++ b/geojson/geometry.json @@ -60,8 +60,7 @@ "description": "A single position", "type": "array", "minItems": 2, - "items": [ { "type": "number" }, { "type": "number" } ], - "additionalItems": false + "items": { "type": "number" } }, "positionArray": { "description": "An array of positions",