{
	"$schema": "https://json-schema.org/draft/2020-12/schema",
	"$id": "https://schema.twindev.org/unece/UneceGeographicalArea",
	"title": "UneceGeographicalArea",
	"description": "A named, delimited and identified part of a land and or water surface of the globe.",
	"type": "object",
	"properties": {
		"@context": {
			"$ref": "https://schema.twindev.org/unece/UneceContextType",
			"description": "JSON-LD Context."
		},
		"type": {
			"const": "GeographicalArea",
			"description": "JSON-LD Type."
		},
		"identifier": {
			"anyOf": [
				{
					"type": "string"
				},
				{
					"$ref": "https://schema.twindev.org/json-ld/JsonLdValueObject"
				}
			],
			"description": "The identifier for this geographical area."
		},
		"name": {
			"type": "string",
			"description": "The name, expressed as text, for this geographical area."
		}
	},
	"required": ["type", "identifier", "name"]
}
