{
	"$schema": "https://json-schema.org/draft/2020-12/schema",
	"$id": "https://linked.art/api/1.0/schema/place.json",
	"title": "Place Schema",
	"description": "_crm:E53\\_Place_\nGeographic locations where activities occur.\nSee: [API](https://linked.art/api/1.0/endpoint/place/) | [Model](https://linked.art/model/place/)",
	"type": "object",
	"properties": {
		"@context": {"$ref": "core.json#/$defs/ContextStringOrArray"},
		"id": {"$ref": "core.json#/$defs/idProp"},
		"type": {"allOf": [{"title": "General", "$ref": "core.json#/$defs/typeProp"},
			{"title": "Specific", "type": "string", "const": "Place"}]},
		"_label": {"$ref": "core.json#/$defs/labelProp"},
		"classified_as": {"$ref": "core.json#/$defs/classified_asProp"},
		"identified_by": {"$ref": "core.json#/$defs/identified_byProp"},
		"referred_to_by": {"$ref": "core.json#/$defs/referred_to_byProp"},
		"equivalent": {"allOf": [{"title": "General", "$ref": "core.json#/$defs/equivalentProp"},
			{"title": "Specific", "description": "List of `Place` entities", "type": "array", "items": {"$ref": "core.json#/$defs/PlaceRef"}}]},
		"representation": {"$ref": "core.json#/$defs/representationProp"},
		"member_of": {"$ref": "core.json#/$defs/member_ofSetProp"},
		"subject_of": {"$ref": "core.json#/$defs/subject_ofProp"},
		"attributed_by": {"$ref": "core.json#/$defs/attributed_byRelProp"},

		"defined_by": {
			"title": "crm:P168_place_is_defined_by",
			"description": "A string with a WKT or GeoJSON definition of the area of the Place",
			"type": "string"

		},
		"part_of": {
			"title": "crm:P89_falls_within",
			"description": "This `Place` is contained within one or more larger `Place` entities",
			"type": "array", 
			"items": {"$ref": "core.json#/$defs/PlaceRef"}
		}
	},
	"required": ["@context", "id", "type", "_label"],
	"additionalProperties": false
}
