Files
marka/registry/schema-org/GeospatialGeometry.schema.json
Max Richter c687eff53d big tings
2025-08-17 15:16:17 +02:00

216 lines
7.4 KiB
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "schema:GeospatialGeometry",
"title": "GeospatialGeometry",
"description": "(Eventually to be defined as) a supertype of GeoShape designed to accommodate definitions from Geo-Spatial best practices.",
"type": "object",
"allOf": [
{
"description": "A utility class that serves as the umbrella for a number of 'intangible' things such as quantities, structured values, etc.",
"$ref": "schema:Intangible"
}
],
"properties": {
"geoContains": {
"description": "Represents a relationship between two geometries (or the places they represent), relating a containing geometry to a contained geometry. \"a contains b iff no points of b lie in the exterior of a, and at least one point of the interior of b lies in the interior of a\". As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).",
"oneOf": [
{
"anyOf": [
{ "$ref": "schema:GeospatialGeometry" },
{ "$ref": "schema:Place" }
]
},
{
"type": "array",
"items": {
"anyOf": [
{ "$ref": "schema:GeospatialGeometry" },
{ "$ref": "schema:Place" }
]
}
}
]
},
"geoCoveredBy": {
"description": "Represents a relationship between two geometries (or the places they represent), relating a geometry to another that covers it. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).",
"oneOf": [
{
"anyOf": [
{ "$ref": "schema:GeospatialGeometry" },
{ "$ref": "schema:Place" }
]
},
{
"type": "array",
"items": {
"anyOf": [
{ "$ref": "schema:GeospatialGeometry" },
{ "$ref": "schema:Place" }
]
}
}
]
},
"geoCovers": {
"description": "Represents a relationship between two geometries (or the places they represent), relating a covering geometry to a covered geometry. \"Every point of b is a point of (the interior or boundary of) a\". As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).",
"oneOf": [
{
"anyOf": [
{ "$ref": "schema:GeospatialGeometry" },
{ "$ref": "schema:Place" }
]
},
{
"type": "array",
"items": {
"anyOf": [
{ "$ref": "schema:GeospatialGeometry" },
{ "$ref": "schema:Place" }
]
}
}
]
},
"geoCrosses": {
"description": "Represents a relationship between two geometries (or the places they represent), relating a geometry to another that crosses it: \"a crosses b: they have some but not all interior points in common, and the dimension of the intersection is less than that of at least one of them\". As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).",
"oneOf": [
{
"anyOf": [
{ "$ref": "schema:GeospatialGeometry" },
{ "$ref": "schema:Place" }
]
},
{
"type": "array",
"items": {
"anyOf": [
{ "$ref": "schema:GeospatialGeometry" },
{ "$ref": "schema:Place" }
]
}
}
]
},
"geoDisjoint": {
"description": "Represents spatial relations in which two geometries (or the places they represent) are topologically disjoint: \"they have no point in common. They form a set of disconnected geometries.\" (A symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).)",
"oneOf": [
{
"anyOf": [
{ "$ref": "schema:GeospatialGeometry" },
{ "$ref": "schema:Place" }
]
},
{
"type": "array",
"items": {
"anyOf": [
{ "$ref": "schema:GeospatialGeometry" },
{ "$ref": "schema:Place" }
]
}
}
]
},
"geoEquals": {
"description": "Represents spatial relations in which two geometries (or the places they represent) are topologically equal, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM). \"Two geometries are topologically equal if their interiors intersect and no part of the interior or boundary of one geometry intersects the exterior of the other\" (a symmetric relationship).",
"oneOf": [
{
"anyOf": [
{ "$ref": "schema:GeospatialGeometry" },
{ "$ref": "schema:Place" }
]
},
{
"type": "array",
"items": {
"anyOf": [
{ "$ref": "schema:GeospatialGeometry" },
{ "$ref": "schema:Place" }
]
}
}
]
},
"geoIntersects": {
"description": "Represents spatial relations in which two geometries (or the places they represent) have at least one point in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).",
"oneOf": [
{
"anyOf": [
{ "$ref": "schema:GeospatialGeometry" },
{ "$ref": "schema:Place" }
]
},
{
"type": "array",
"items": {
"anyOf": [
{ "$ref": "schema:GeospatialGeometry" },
{ "$ref": "schema:Place" }
]
}
}
]
},
"geoOverlaps": {
"description": "Represents a relationship between two geometries (or the places they represent), relating a geometry to another that geospatially overlaps it, i.e. they have some but not all points in common. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).",
"oneOf": [
{
"anyOf": [
{ "$ref": "schema:GeospatialGeometry" },
{ "$ref": "schema:Place" }
]
},
{
"type": "array",
"items": {
"anyOf": [
{ "$ref": "schema:GeospatialGeometry" },
{ "$ref": "schema:Place" }
]
}
}
]
},
"geoTouches": {
"description": "Represents spatial relations in which two geometries (or the places they represent) touch: \"they have at least one boundary point in common, but no interior points.\" (A symmetric relationship, as defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).)",
"oneOf": [
{
"anyOf": [
{ "$ref": "schema:GeospatialGeometry" },
{ "$ref": "schema:Place" }
]
},
{
"type": "array",
"items": {
"anyOf": [
{ "$ref": "schema:GeospatialGeometry" },
{ "$ref": "schema:Place" }
]
}
}
]
},
"geoWithin": {
"description": "Represents a relationship between two geometries (or the places they represent), relating a geometry to one that contains it, i.e. it is inside (i.e. within) its interior. As defined in [DE-9IM](https://en.wikipedia.org/wiki/DE-9IM).",
"oneOf": [
{
"anyOf": [
{ "$ref": "schema:GeospatialGeometry" },
{ "$ref": "schema:Place" }
]
},
{
"type": "array",
"items": {
"anyOf": [
{ "$ref": "schema:GeospatialGeometry" },
{ "$ref": "schema:Place" }
]
}
}
]
}
}
}