From f89f71440926e88d9b15a785970e97c59f716c70 Mon Sep 17 00:00:00 2001 From: Mehmood Asghar Date: Mon, 5 Aug 2024 13:55:42 -0400 Subject: [PATCH] minor --- application/schemas/geospatial-schema.json | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/application/schemas/geospatial-schema.json b/application/schemas/geospatial-schema.json index efd194f8..3a6eb303 100644 --- a/application/schemas/geospatial-schema.json +++ b/application/schemas/geospatial-schema.json @@ -1243,7 +1243,7 @@ "type":{ "title": "Type", "type": "string", - "enum": ["Point", "LineString", "Polygon"] + "enum": ["point", "lineString", "polygon"] }, "coordinates": { "title": "Coordinates", @@ -1252,8 +1252,10 @@ "type": "array", "items": { "type": "number" - } - } + }, + "minItems": 2 + }, + "minItems": 2 } } }