diff options
Diffstat (limited to 'data')
| -rw-r--r-- | data/projjson.schema.json | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/data/projjson.schema.json b/data/projjson.schema.json index 60fca6df..e71e5031 100644 --- a/data/projjson.schema.json +++ b/data/projjson.schema.json @@ -1,5 +1,5 @@ { - "$id": "https://proj.org/schemas/v0.1/projjson.schema.json", + "$id": "https://proj.org/schemas/v0.2/projjson.schema.json", "$schema": "http://json-schema.org/draft-07/schema#", "description": "Schema for PROJJSON", "$comment": "This file exists both in data/ and in schemas/vXXX/. Keep both in sync. And if changing the value of $id, change PROJJSON_CURRENT_VERSION accordingly in io.cpp", @@ -932,6 +932,15 @@ }, "datum_ensemble": { "$ref": "#/definitions/datum_ensemble" }, "coordinate_system": { "$ref": "#/definitions/coordinate_system" }, + "geoid_model": { + "type": "object", + "properties": { + "name": { "type": "string" }, + "id": { "$ref": "#/definitions/id" } + }, + "required" : [ "name" ], + "additionalProperties": false + }, "$schema" : {}, "scope": {}, "area": {}, |
