---
title: "GET /entity_presentation_view/{entityId}"
method: GET
path: "/entity_presentation_view/{entityId}"
tags: ["Proposal"]
---

# GET /entity_presentation_view/{entityId}

`GET /entity_presentation_view/{entityId}`

Retrieves an Entity with its linked data for presentation sites

## Path parameters

- `entityId` integer, required — Internal database ID

## Query parameters

- `place_hierarchy` boolean
- `map_overlay` boolean
- `remove_empty_values` boolean
- `centroid` boolean

## Response `200`

Successful response

- PresentationViewModel
  - `id` integer, required
  - `systemClass` string, required
  - `viewClass` string, required
  - `title` string, required
  - `description` string, required
  - `aliases` string[], required
  - `geometries` union — Represents geographic data associated with an entity. Can be explicitly null, a single GeoJSON geometry (Point, Polygon, or LineString), or a GeoJSON FeatureCollection containing Features with specific properties.
    - FeatureCollection — A collection of GeoJSON Feature objects.
      - `type` 'FeatureCollection', required — The GeoJSON object type.
      - `features` Feature[], required
        - `type` 'Feature', required — The GeoJSON object type.
        - `geometry` union, required
          - GeoJSONPoint — A GeoJSON Point geometry.
            - `type` 'Point', required — The GeoJSON geometry type.
            - `coordinates` number[], required — A single position represented as an array of numbers. The first two elements MUST be longitude and latitude (in that order). An optional third element represents altitude. More elements are discouraged. Example: [10.9787, 49.7606] or [10.9787, 49.7606, 150.5]
          - GeoJSONPolygon — A GeoJSON Polygon geometry.
            - `type` 'Polygon', required — The GeoJSON geometry type.
            - `coordinates` LinearRing[], required — An array of LinearRing coordinate arrays. The first element MUST be the exterior ring. Subsequent elements represent interior rings (holes).
              - …
          - GeoJSONLineString — A GeoJSON LineString geometry.
            - `type` 'LineString', required — The GeoJSON geometry type.
            - `coordinates` Position[], required — An array of two or more positions. Used for LineStrings.
              - …
        - `properties` FeatureProperties, nullable, required
          - `title` string — A title for the feature.
          - `description` string — A description of the feature.
          - `shapeType` string — A custom identifier for the shape's role or type.
          - `locationId` integer — A specific identifier for the location.
    - Feature — A GeoJSON Feature object, linking a geometry to properties.
      - `type` 'Feature', required — The GeoJSON object type.
      - `geometry` union, required
        - GeoJSONPoint — A GeoJSON Point geometry.
          - `type` 'Point', required — The GeoJSON geometry type.
          - `coordinates` number[], required — A single position represented as an array of numbers. The first two elements MUST be longitude and latitude (in that order). An optional third element represents altitude. More elements are discouraged. Example: [10.9787, 49.7606] or [10.9787, 49.7606, 150.5]
        - GeoJSONPolygon — A GeoJSON Polygon geometry.
          - `type` 'Polygon', required — The GeoJSON geometry type.
          - `coordinates` LinearRing[], required — An array of LinearRing coordinate arrays. The first element MUST be the exterior ring. Subsequent elements represent interior rings (holes).
            - Position[] — An array of four or more positions where the first and last positions are equivalent (they represent closed loops). Used for defining polygon boundaries.
              - …
        - GeoJSONLineString — A GeoJSON LineString geometry.
          - `type` 'LineString', required — The GeoJSON geometry type.
          - `coordinates` Position[], required — An array of two or more positions. Used for LineStrings.
            - number[] — A single position represented as an array of numbers. The first two elements MUST be longitude and latitude (in that order). An optional third element represents altitude. More elements are discouraged. Example: [10.9787, 49.7606] or [10.9787, 49.7606, 150.5]
      - `properties` FeatureProperties, nullable, required
        - `title` string — A title for the feature.
        - `description` string — A description of the feature.
        - `shapeType` string — A custom identifier for the shape's role or type.
        - `locationId` integer — A specific identifier for the location.
  - `when` TimeRangeModel, nullable
    - `start` object, required
      - `earliest` string, nullable, required
      - `latest` string, nullable, required
      - `comment` string, nullable, required
    - `end` object, required
      - `earliest` string, nullable, required
      - `latest` string, nullable, required
      - `comment` string, nullable, required
  - `types` EntityTypeModel[], nullable
    - `id` integer, required
    - `title` string, required
    - `descriptions` string, nullable
    - `isStandard` boolean, required
    - `value` string
    - `unit` string
    - `typeHierarchy` TypeHierarchyEntryModel[], nullable
      - `label` string, required
      - `descriptions` string, nullable
      - `identifier` string, required
  - `externalReferenceSystems` ExternalReferenceModel[], nullable
    - `type` string, required
    - `identifier` string, required
    - `referenceSystem` string, required
    - `resolverURL` string, required
    - `referenceURL` string, required
    - `id` string, required
  - `references` object[], nullable
    - `id` integer, required
    - `systemClass` string, required
    - `title` string, required
    - `type` string, nullable
    - `typeId` integer, nullable
    - `citation` string, required
    - `pages` string, nullable
  - `files` object[], nullable
    - `id` integer, required
    - `title` string, required
    - `license` string, nullable, required
    - `creator` string, nullable
    - `licenseHolder` string, nullable
    - `publicShareable` boolean, nullable
    - `fromSuperEntity` boolean, nullable
    - `mimetype` string, required
    - `url` string, required
    - `IIIFManifest` string
    - `IIIFBasePath` string
  - `relations` object
    - `acquisition` RelatedEntityModel[]
      - `id` integer, required
      - `systemClass` string, required
      - `viewClass` string, required
      - `title` string, required
      - `description` string, required
      - `aliases` string[]
      - `geometries` union, required — Represents geographic data associated with an entity. Can be explicitly null, a single GeoJSON geometry (Point, Polygon, or LineString), or a GeoJSON FeatureCollection containing Features with specific properties.
        - FeatureCollection — A collection of GeoJSON Feature objects.
          - `type` 'FeatureCollection', required — The GeoJSON object type.
          - `features` Feature[], required
            - `type` 'Feature', required — The GeoJSON object type.
            - `geometry` union, required
              - …
            - `properties` FeatureProperties, nullable, required
              - …
        - Feature — A GeoJSON Feature object, linking a geometry to properties.
          - `type` 'Feature', required — The GeoJSON object type.
          - `geometry` union, required
            - GeoJSONPoint — A GeoJSON Point geometry.
              - …
            - GeoJSONPolygon — A GeoJSON Polygon geometry.
              - …
            - GeoJSONLineString — A GeoJSON LineString geometry.
              - …
          - `properties` FeatureProperties, nullable, required
            - `title` string — A title for the feature.
            - `description` string — A description of the feature.
            - `shapeType` string — A custom identifier for the shape's role or type.
            - `locationId` integer — A specific identifier for the location.
      - `when` TimeRangeModel, nullable, required
        - `start` object, required
          - `earliest` string, nullable, required
          - `latest` string, nullable, required
          - `comment` string, nullable, required
        - `end` object, required
          - `earliest` string, nullable, required
          - `latest` string, nullable, required
          - `comment` string, nullable, required
      - `standardType` object
        - `id` integer
        - `title` string
      - `relationTypes` RelationTypeModel[]
        - `property` string, required
        - `relationTo` integer, required
        - `type` string, nullable
        - `description` string, nullable
        - `when` TimeRangeModel, nullable
          - `start` object, required
            - `earliest` string, nullable, required
            - `latest` string, nullable, required
            - `comment` string, nullable, required
          - `end` object, required
            - `earliest` string, nullable, required
            - `latest` string, nullable, required
            - `comment` string, nullable, required
    - `activity` RelatedEntityModel[]
      - `id` integer, required
      - `systemClass` string, required
      - `viewClass` string, required
      - `title` string, required
      - `description` string, required
      - `aliases` string[]
      - `geometries` union, required — Represents geographic data associated with an entity. Can be explicitly null, a single GeoJSON geometry (Point, Polygon, or LineString), or a GeoJSON FeatureCollection containing Features with specific properties.
        - FeatureCollection — A collection of GeoJSON Feature objects.
          - `type` 'FeatureCollection', required — The GeoJSON object type.
          - `features` Feature[], required
            - `type` 'Feature', required — The GeoJSON object type.
            - `geometry` union, required
              - …
            - `properties` FeatureProperties, nullable, required
              - …
        - Feature — A GeoJSON Feature object, linking a geometry to properties.
          - `type` 'Feature', required — The GeoJSON object type.
          - `geometry` union, required
            - GeoJSONPoint — A GeoJSON Point geometry.
              - …
            - GeoJSONPolygon — A GeoJSON Polygon geometry.
              - …
            - GeoJSONLineString — A GeoJSON LineString geometry.
              - …
          - `properties` FeatureProperties, nullable, required
            - `title` string — A title for the feature.
            - `description` string — A description of the feature.
            - `shapeType` string — A custom identifier for the shape's role or type.
            - `locationId` integer — A specific identifier for the location.
      - `when` TimeRangeModel, nullable, required
        - `start` object, required
          - `earliest` string, nullable, required
          - `latest` string, nullable, required
          - `comment` string, nullable, required
        - `end` object, required
          - `earliest` string, nullable, required
          - `latest` string, nullable, required
          - `comment` string, nullable, required
      - `standardType` object
        - `id` integer
        - `title` string
      - `relationTypes` RelationTypeModel[]
        - `property` string, required
        - `relationTo` integer, required
        - `type` string, nullable
        - `description` string, nullable
        - `when` TimeRangeModel, nullable
          - `start` object, required
            - `earliest` string, nullable, required
            - `latest` string, nullable, required
            - `comment` string, nullable, required
          - `end` object, required
            - `earliest` string, nullable, required
            - `latest` string, nullable, required
            - `comment` string, nullable, required
    - `actor_function` RelatedEntityModel[]
      - `id` integer, required
      - `systemClass` string, required
      - `viewClass` string, required
      - `title` string, required
      - `description` string, required
      - `aliases` string[]
      - `geometries` union, required — Represents geographic data associated with an entity. Can be explicitly null, a single GeoJSON geometry (Point, Polygon, or LineString), or a GeoJSON FeatureCollection containing Features with specific properties.
        - FeatureCollection — A collection of GeoJSON Feature objects.
          - `type` 'FeatureCollection', required — The GeoJSON object type.
          - `features` Feature[], required
            - `type` 'Feature', required — The GeoJSON object type.
            - `geometry` union, required
              - …
            - `properties` FeatureProperties, nullable, required
              - …
        - Feature — A GeoJSON Feature object, linking a geometry to properties.
          - `type` 'Feature', required — The GeoJSON object type.
          - `geometry` union, required
            - GeoJSONPoint — A GeoJSON Point geometry.
              - …
            - GeoJSONPolygon — A GeoJSON Polygon geometry.
              - …
            - GeoJSONLineString — A GeoJSON LineString geometry.
              - …
          - `properties` FeatureProperties, nullable, required
            - `title` string — A title for the feature.
            - `description` string — A description of the feature.
            - `shapeType` string — A custom identifier for the shape's role or type.
            - `locationId` integer — A specific identifier for the location.
      - `when` TimeRangeModel, nullable, required
        - `start` object, required
          - `earliest` string, nullable, required
          - `latest` string, nullable, required
          - `comment` string, nullable, required
        - `end` object, required
          - `earliest` string, nullable, required
          - `latest` string, nullable, required
          - `comment` string, nullable, required
      - `standardType` object
        - `id` integer
        - `title` string
      - `relationTypes` RelationTypeModel[]
        - `property` string, required
        - `relationTo` integer, required
        - `type` string, nullable
        - `description` string, nullable
        - `when` TimeRangeModel, nullable
          - `start` object, required
            - `earliest` string, nullable, required
            - `latest` string, nullable, required
            - `comment` string, nullable, required
          - `end` object, required
            - `earliest` string, nullable, required
            - `latest` string, nullable, required
            - `comment` string, nullable, required
    - `actor_relation` RelatedEntityModel[]
      - `id` integer, required
      - `systemClass` string, required
      - `viewClass` string, required
      - `title` string, required
      - `description` string, required
      - `aliases` string[]
      - `geometries` union, required — Represents geographic data associated with an entity. Can be explicitly null, a single GeoJSON geometry (Point, Polygon, or LineString), or a GeoJSON FeatureCollection containing Features with specific properties.
        - FeatureCollection — A collection of GeoJSON Feature objects.
          - `type` 'FeatureCollection', required — The GeoJSON object type.
          - `features` Feature[], required
            - `type` 'Feature', required — The GeoJSON object type.
            - `geometry` union, required
              - …
            - `properties` FeatureProperties, nullable, required
              - …
        - Feature — A GeoJSON Feature object, linking a geometry to properties.
          - `type` 'Feature', required — The GeoJSON object type.
          - `geometry` union, required
            - GeoJSONPoint — A GeoJSON Point geometry.
              - …
            - GeoJSONPolygon — A GeoJSON Polygon geometry.
              - …
            - GeoJSONLineString — A GeoJSON LineString geometry.
              - …
          - `properties` FeatureProperties, nullable, required
            - `title` string — A title for the feature.
            - `description` string — A description of the feature.
            - `shapeType` string — A custom identifier for the shape's role or type.
            - `locationId` integer — A specific identifier for the location.
      - `when` TimeRangeModel, nullable, required
        - `start` object, required
          - `earliest` string, nullable, required
          - `latest` string, nullable, required
          - `comment` string, nullable, required
        - `end` object, required
          - `earliest` string, nullable, required
          - `latest` string, nullable, required
          - `comment` string, nullable, required
      - `standardType` object
        - `id` integer
        - `title` string
      - `relationTypes` RelationTypeModel[]
        - `property` string, required
        - `relationTo` integer, required
        - `type` string, nullable
        - `description` string, nullable
        - `when` TimeRangeModel, nullable
          - `start` object, required
            - `earliest` string, nullable, required
            - `latest` string, nullable, required
            - `comment` string, nullable, required
          - `end` object, required
            - `earliest` string, nullable, required
            - `latest` string, nullable, required
            - `comment` string, nullable, required
    - `artifact` RelatedEntityModel[]
      - `id` integer, required
      - `systemClass` string, required
      - `viewClass` string, required
      - `title` string, required
      - `description` string, required
      - `aliases` string[]
      - `geometries` union, required — Represents geographic data associated with an entity. Can be explicitly null, a single GeoJSON geometry (Point, Polygon, or LineString), or a GeoJSON FeatureCollection containing Features with specific properties.
        - FeatureCollection — A collection of GeoJSON Feature objects.
          - `type` 'FeatureCollection', required — The GeoJSON object type.
          - `features` Feature[], required
            - `type` 'Feature', required — The GeoJSON object type.
            - `geometry` union, required
              - …
            - `properties` FeatureProperties, nullable, required
              - …
        - Feature — A GeoJSON Feature object, linking a geometry to properties.
          - `type` 'Feature', required — The GeoJSON object type.
          - `geometry` union, required
            - GeoJSONPoint — A GeoJSON Point geometry.
              - …
            - GeoJSONPolygon — A GeoJSON Polygon geometry.
              - …
            - GeoJSONLineString — A GeoJSON LineString geometry.
              - …
          - `properties` FeatureProperties, nullable, required
            - `title` string — A title for the feature.
            - `description` string — A description of the feature.
            - `shapeType` string — A custom identifier for the shape's role or type.
            - `locationId` integer — A specific identifier for the location.
      - `when` TimeRangeModel, nullable, required
        - `start` object, required
          - `earliest` string, nullable, required
          - `latest` string, nullable, required
          - `comment` string, nullable, required
        - `end` object, required
          - `earliest` string, nullable, required
          - `latest` string, nullable, required
          - `comment` string, nullable, required
      - `standardType` object
        - `id` integer
        - `title` string
      - `relationTypes` RelationTypeModel[]
        - `property` string, required
        - `relationTo` integer, required
        - `type` string, nullable
        - `description` string, nullable
        - `when` TimeRangeModel, nullable
          - `start` object, required
            - `earliest` string, nullable, required
            - `latest` string, nullable, required
            - `comment` string, nullable, required
          - `end` object, required
            - `earliest` string, nullable, required
            - `latest` string, nullable, required
            - `comment` string, nullable, required
    - `bibliography` RelatedEntityModel[]
      - `id` integer, required
      - `systemClass` string, required
      - `viewClass` string, required
      - `title` string, required
      - `description` string, required
      - `aliases` string[]
      - `geometries` union, required — Represents geographic data associated with an entity. Can be explicitly null, a single GeoJSON geometry (Point, Polygon, or LineString), or a GeoJSON FeatureCollection containing Features with specific properties.
        - FeatureCollection — A collection of GeoJSON Feature objects.
          - `type` 'FeatureCollection', required — The GeoJSON object type.
          - `features` Feature[], required
            - `type` 'Feature', required — The GeoJSON object type.
            - `geometry` union, required
              - …
            - `properties` FeatureProperties, nullable, required
              - …
        - Feature — A GeoJSON Feature object, linking a geometry to properties.
          - `type` 'Feature', required — The GeoJSON object type.
          - `geometry` union, required
            - GeoJSONPoint — A GeoJSON Point geometry.
              - …
            - GeoJSONPolygon — A GeoJSON Polygon geometry.
              - …
            - GeoJSONLineString — A GeoJSON LineString geometry.
              - …
          - `properties` FeatureProperties, nullable, required
            - `title` string — A title for the feature.
            - `description` string — A description of the feature.
            - `shapeType` string — A custom identifier for the shape's role or type.
            - `locationId` integer — A specific identifier for the location.
      - `when` TimeRangeModel, nullable, required
        - `start` object, required
          - `earliest` string, nullable, required
          - `latest` string, nullable, required
          - `comment` string, nullable, required
        - `end` object, required
          - `earliest` string, nullable, required
          - `latest` string, nullable, required
          - `comment` string, nullable, required
      - `standardType` object
        - `id` integer
        - `title` string
      - `relationTypes` RelationTypeModel[]
        - `property` string, required
        - `relationTo` integer, required
        - `type` string, nullable
        - `description` string, nullable
        - `when` TimeRangeModel, nullable
          - `start` object, required
            - `earliest` string, nullable, required
            - `latest` string, nullable, required
            - `comment` string, nullable, required
          - `end` object, required
            - `earliest` string, nullable, required
            - `latest` string, nullable, required
            - `comment` string, nullable, required
    - `creation` RelatedEntityModel[]
      - `id` integer, required
      - `systemClass` string, required
      - `viewClass` string, required
      - `title` string, required
      - `description` string, required
      - `aliases` string[]
      - `geometries` union, required — Represents geographic data associated with an entity. Can be explicitly null, a single GeoJSON geometry (Point, Polygon, or LineString), or a GeoJSON FeatureCollection containing Features with specific properties.
        - FeatureCollection — A collection of GeoJSON Feature objects.
          - `type` 'FeatureCollection', required — The GeoJSON object type.
          - `features` Feature[], required
            - `type` 'Feature', required — The GeoJSON object type.
            - `geometry` union, required
              - …
            - `properties` FeatureProperties, nullable, required
              - …
        - Feature — A GeoJSON Feature object, linking a geometry to properties.
          - `type` 'Feature', required — The GeoJSON object type.
          - `geometry` union, required
            - GeoJSONPoint — A GeoJSON Point geometry.
              - …
            - GeoJSONPolygon — A GeoJSON Polygon geometry.
              - …
            - GeoJSONLineString — A GeoJSON LineString geometry.
              - …
          - `properties` FeatureProperties, nullable, required
            - `title` string — A title for the feature.
            - `description` string — A description of the feature.
            - `shapeType` string — A custom identifier for the shape's role or type.
            - `locationId` integer — A specific identifier for the location.
      - `when` TimeRangeModel, nullable, required
        - `start` object, required
          - `earliest` string, nullable, required
          - `latest` string, nullable, required
          - `comment` string, nullable, required
        - `end` object, required
          - `earliest` string, nullable, required
          - `latest` string, nullable, required
          - `comment` string, nullable, required
      - `standardType` object
        - `id` integer
        - `title` string
      - `relationTypes` RelationTypeModel[]
        - `property` string, required
        - `relationTo` integer, required
        - `type` string, nullable
        - `description` string, nullable
        - `when` TimeRangeModel, nullable
          - `start` object, required
            - `earliest` string, nullable, required
            - `latest` string, nullable, required
            - `comment` string, nullable, required
          - `end` object, required
            - `earliest` string, nullable, required
            - `latest` string, nullable, required
            - `comment` string, nullable, required
    - `edition` RelatedEntityModel[]
      - `id` integer, required
      - `systemClass` string, required
      - `viewClass` string, required
      - `title` string, required
      - `description` string, required
      - `aliases` string[]
      - `geometries` union, required — Represents geographic data associated with an entity. Can be explicitly null, a single GeoJSON geometry (Point, Polygon, or LineString), or a GeoJSON FeatureCollection containing Features with specific properties.
        - FeatureCollection — A collection of GeoJSON Feature objects.
          - `type` 'FeatureCollection', required — The GeoJSON object type.
          - `features` Feature[], required
            - `type` 'Feature', required — The GeoJSON object type.
            - `geometry` union, required
              - …
            - `properties` FeatureProperties, nullable, required
              - …
        - Feature — A GeoJSON Feature object, linking a geometry to properties.
          - `type` 'Feature', required — The GeoJSON object type.
          - `geometry` union, required
            - GeoJSONPoint — A GeoJSON Point geometry.
              - …
            - GeoJSONPolygon — A GeoJSON Polygon geometry.
              - …
            - GeoJSONLineString — A GeoJSON LineString geometry.
              - …
          - `properties` FeatureProperties, nullable, required
            - `title` string — A title for the feature.
            - `description` string — A description of the feature.
            - `shapeType` string — A custom identifier for the shape's role or type.
            - `locationId` integer — A specific identifier for the location.
      - `when` TimeRangeModel, nullable, required
        - `start` object, required
          - `earliest` string, nullable, required
          - `latest` string, nullable, required
          - `comment` string, nullable, required
        - `end` object, required
          - `earliest` string, nullable, required
          - `latest` string, nullable, required
          - `comment` string, nullable, required
      - `standardType` object
        - `id` integer
        - `title` string
      - `relationTypes` RelationTypeModel[]
        - `property` string, required
        - `relationTo` integer, required
        - `type` string, nullable
        - `description` string, nullable
        - `when` TimeRangeModel, nullable
          - `start` object, required
            - `earliest` string, nullable, required
            - `latest` string, nullable, required
            - `comment` string, nullable, required
          - `end` object, required
            - `earliest` string, nullable, required
            - `latest` string, nullable, required
            - `comment` string, nullable, required
    - `event` RelatedEntityModel[]
      - `id` integer, required
      - `systemClass` string, required
      - `viewClass` string, required
      - `title` string, required
      - `description` string, required
      - `aliases` string[]
      - `geometries` union, required — Represents geographic data associated with an entity. Can be explicitly null, a single GeoJSON geometry (Point, Polygon, or LineString), or a GeoJSON FeatureCollection containing Features with specific properties.
        - FeatureCollection — A collection of GeoJSON Feature objects.
          - `type` 'FeatureCollection', required — The GeoJSON object type.
          - `features` Feature[], required
            - `type` 'Feature', required — The GeoJSON object type.
            - `geometry` union, required
              - …
            - `properties` FeatureProperties, nullable, required
              - …
        - Feature — A GeoJSON Feature object, linking a geometry to properties.
          - `type` 'Feature', required — The GeoJSON object type.
          - `geometry` union, required
            - GeoJSONPoint — A GeoJSON Point geometry.
              - …
            - GeoJSONPolygon — A GeoJSON Polygon geometry.
              - …
            - GeoJSONLineString — A GeoJSON LineString geometry.
              - …
          - `properties` FeatureProperties, nullable, required
            - `title` string — A title for the feature.
            - `description` string — A description of the feature.
            - `shapeType` string — A custom identifier for the shape's role or type.
            - `locationId` integer — A specific identifier for the location.
      - `when` TimeRangeModel, nullable, required
        - `start` object, required
          - `earliest` string, nullable, required
          - `latest` string, nullable, required
          - `comment` string, nullable, required
        - `end` object, required
          - `earliest` string, nullable, required
          - `latest` string, nullable, required
          - `comment` string, nullable, required
      - `standardType` object
        - `id` integer
        - `title` string
      - `relationTypes` RelationTypeModel[]
        - `property` string, required
        - `relationTo` integer, required
        - `type` string, nullable
        - `description` string, nullable
        - `when` TimeRangeModel, nullable
          - `start` object, required
            - `earliest` string, nullable, required
            - `latest` string, nullable, required
            - `comment` string, nullable, required
          - `end` object, required
            - `earliest` string, nullable, required
            - `latest` string, nullable, required
            - `comment` string, nullable, required
    - `external_reference` RelatedEntityModel[]
      - `id` integer, required
      - `systemClass` string, required
      - `viewClass` string, required
      - `title` string, required
      - `description` string, required
      - `aliases` string[]
      - `geometries` union, required — Represents geographic data associated with an entity. Can be explicitly null, a single GeoJSON geometry (Point, Polygon, or LineString), or a GeoJSON FeatureCollection containing Features with specific properties.
        - FeatureCollection — A collection of GeoJSON Feature objects.
          - `type` 'FeatureCollection', required — The GeoJSON object type.
          - `features` Feature[], required
            - `type` 'Feature', required — The GeoJSON object type.
            - `geometry` union, required
              - …
            - `properties` FeatureProperties, nullable, required
              - …
        - Feature — A GeoJSON Feature object, linking a geometry to properties.
          - `type` 'Feature', required — The GeoJSON object type.
          - `geometry` union, required
            - GeoJSONPoint — A GeoJSON Point geometry.
              - …
            - GeoJSONPolygon — A GeoJSON Polygon geometry.
              - …
            - GeoJSONLineString — A GeoJSON LineString geometry.
              - …
          - `properties` FeatureProperties, nullable, required
            - `title` string — A title for the feature.
            - `description` string — A description of the feature.
            - `shapeType` string — A custom identifier for the shape's role or type.
            - `locationId` integer — A specific identifier for the location.
      - `when` TimeRangeModel, nullable, required
        - `start` object, required
          - `earliest` string, nullable, required
          - `latest` string, nullable, required
          - `comment` string, nullable, required
        - `end` object, required
          - `earliest` string, nullable, required
          - `latest` string, nullable, required
          - `comment` string, nullable, required
      - `standardType` object
        - `id` integer
        - `title` string
      - `relationTypes` RelationTypeModel[]
        - `property` string, required
        - `relationTo` integer, required
        - `type` string, nullable
        - `description` string, nullable
        - `when` TimeRangeModel, nullable
          - `start` object, required
            - `earliest` string, nullable, required
            - `latest` string, nullable, required
            - `comment` string, nullable, required
          - `end` object, required
            - `earliest` string, nullable, required
            - `latest` string, nullable, required
            - `comment` string, nullable, required
    - `feature` RelatedEntityModel[]
      - `id` integer, required
      - `systemClass` string, required
      - `viewClass` string, required
      - `title` string, required
      - `description` string, required
      - `aliases` string[]
      - `geometries` union, required — Represents geographic data associated with an entity. Can be explicitly null, a single GeoJSON geometry (Point, Polygon, or LineString), or a GeoJSON FeatureCollection containing Features with specific properties.
        - FeatureCollection — A collection of GeoJSON Feature objects.
          - `type` 'FeatureCollection', required — The GeoJSON object type.
          - `features` Feature[], required
            - `type` 'Feature', required — The GeoJSON object type.
            - `geometry` union, required
              - …
            - `properties` FeatureProperties, nullable, required
              - …
        - Feature — A GeoJSON Feature object, linking a geometry to properties.
          - `type` 'Feature', required — The GeoJSON object type.
          - `geometry` union, required
            - GeoJSONPoint — A GeoJSON Point geometry.
              - …
            - GeoJSONPolygon — A GeoJSON Polygon geometry.
              - …
            - GeoJSONLineString — A GeoJSON LineString geometry.
              - …
          - `properties` FeatureProperties, nullable, required
            - `title` string — A title for the feature.
            - `description` string — A description of the feature.
            - `shapeType` string — A custom identifier for the shape's role or type.
            - `locationId` integer — A specific identifier for the location.
      - `when` TimeRangeModel, nullable, required
        - `start` object, required
          - `earliest` string, nullable, required
          - `latest` string, nullable, required
          - `comment` string, nullable, required
        - `end` object, required
          - `earliest` string, nullable, required
          - `latest` string, nullable, required
          - `comment` string, nullable, required
      - `standardType` object
        - `id` integer
        - `title` string
      - `relationTypes` RelationTypeModel[]
        - `property` string, required
        - `relationTo` integer, required
        - `type` string, nullable
        - `description` string, nullable
        - `when` TimeRangeModel, nullable
          - `start` object, required
            - `earliest` string, nullable, required
            - `latest` string, nullable, required
            - `comment` string, nullable, required
          - `end` object, required
            - `earliest` string, nullable, required
            - `latest` string, nullable, required
            - `comment` string, nullable, required
    - `file` RelatedEntityModel[]
      - `id` integer, required
      - `systemClass` string, required
      - `viewClass` string, required
      - `title` string, required
      - `description` string, required
      - `aliases` string[]
      - `geometries` union, required — Represents geographic data associated with an entity. Can be explicitly null, a single GeoJSON geometry (Point, Polygon, or LineString), or a GeoJSON FeatureCollection containing Features with specific properties.
        - FeatureCollection — A collection of GeoJSON Feature objects.
          - `type` 'FeatureCollection', required — The GeoJSON object type.
          - `features` Feature[], required
            - `type` 'Feature', required — The GeoJSON object type.
            - `geometry` union, required
              - …
            - `properties` FeatureProperties, nullable, required
              - …
        - Feature — A GeoJSON Feature object, linking a geometry to properties.
          - `type` 'Feature', required — The GeoJSON object type.
          - `geometry` union, required
            - GeoJSONPoint — A GeoJSON Point geometry.
              - …
            - GeoJSONPolygon — A GeoJSON Polygon geometry.
              - …
            - GeoJSONLineString — A GeoJSON LineString geometry.
              - …
          - `properties` FeatureProperties, nullable, required
            - `title` string — A title for the feature.
            - `description` string — A description of the feature.
            - `shapeType` string — A custom identifier for the shape's role or type.
            - `locationId` integer — A specific identifier for the location.
      - `when` TimeRangeModel, nullable, required
        - `start` object, required
          - `earliest` string, nullable, required
          - `latest` string, nullable, required
          - `comment` string, nullable, required
        - `end` object, required
          - `earliest` string, nullable, required
          - `latest` string, nullable, required
          - `comment` string, nullable, required
      - `standardType` object
        - `id` integer
        - `title` string
      - `relationTypes` RelationTypeModel[]
        - `property` string, required
        - `relationTo` integer, required
        - `type` string, nullable
        - `description` string, nullable
        - `when` TimeRangeModel, nullable
          - `start` object, required
            - `earliest` string, nullable, required
            - `latest` string, nullable, required
            - `comment` string, nullable, required
          - `end` object, required
            - `earliest` string, nullable, required
            - `latest` string, nullable, required
            - `comment` string, nullable, required
    - `group` RelatedEntityModel[]
      - `id` integer, required
      - `systemClass` string, required
      - `viewClass` string, required
      - `title` string, required
      - `description` string, required
      - `aliases` string[]
      - `geometries` union, required — Represents geographic data associated with an entity. Can be explicitly null, a single GeoJSON geometry (Point, Polygon, or LineString), or a GeoJSON FeatureCollection containing Features with specific properties.
        - FeatureCollection — A collection of GeoJSON Feature objects.
          - `type` 'FeatureCollection', required — The GeoJSON object type.
          - `features` Feature[], required
            - `type` 'Feature', required — The GeoJSON object type.
            - `geometry` union, required
              - …
            - `properties` FeatureProperties, nullable, required
              - …
        - Feature — A GeoJSON Feature object, linking a geometry to properties.
          - `type` 'Feature', required — The GeoJSON object type.
          - `geometry` union, required
            - GeoJSONPoint — A GeoJSON Point geometry.
              - …
            - GeoJSONPolygon — A GeoJSON Polygon geometry.
              - …
            - GeoJSONLineString — A GeoJSON LineString geometry.
              - …
          - `properties` FeatureProperties, nullable, required
            - `title` string — A title for the feature.
            - `description` string — A description of the feature.
            - `shapeType` string — A custom identifier for the shape's role or type.
            - `locationId` integer — A specific identifier for the location.
      - `when` TimeRangeModel, nullable, required
        - `start` object, required
          - `earliest` string, nullable, required
          - `latest` string, nullable, required
          - `comment` string, nullable, required
        - `end` object, required
          - `earliest` string, nullable, required
          - `latest` string, nullable, required
          - `comment` string, nullable, required
      - `standardType` object
        - `id` integer
        - `title` string
      - `relationTypes` RelationTypeModel[]
        - `property` string, required
        - `relationTo` integer, required
        - `type` string, nullable
        - `description` string, nullable
        - `when` TimeRangeModel, nullable
          - `start` object, required
            - `earliest` string, nullable, required
            - `latest` string, nullable, required
            - `comment` string, nullable, required
          - `end` object, required
            - `earliest` string, nullable, required
            - `latest` string, nullable, required
            - `comment` string, nullable, required
    - `human_remains` RelatedEntityModel[]
      - `id` integer, required
      - `systemClass` string, required
      - `viewClass` string, required
      - `title` string, required
      - `description` string, required
      - `aliases` string[]
      - `geometries` union, required — Represents geographic data associated with an entity. Can be explicitly null, a single GeoJSON geometry (Point, Polygon, or LineString), or a GeoJSON FeatureCollection containing Features with specific properties.
        - FeatureCollection — A collection of GeoJSON Feature objects.
          - `type` 'FeatureCollection', required — The GeoJSON object type.
          - `features` Feature[], required
            - `type` 'Feature', required — The GeoJSON object type.
            - `geometry` union, required
              - …
            - `properties` FeatureProperties, nullable, required
              - …
        - Feature — A GeoJSON Feature object, linking a geometry to properties.
          - `type` 'Feature', required — The GeoJSON object type.
          - `geometry` union, required
            - GeoJSONPoint — A GeoJSON Point geometry.
              - …
            - GeoJSONPolygon — A GeoJSON Polygon geometry.
              - …
            - GeoJSONLineString — A GeoJSON LineString geometry.
              - …
          - `properties` FeatureProperties, nullable, required
            - `title` string — A title for the feature.
            - `description` string — A description of the feature.
            - `shapeType` string — A custom identifier for the shape's role or type.
            - `locationId` integer — A specific identifier for the location.
      - `when` TimeRangeModel, nullable, required
        - `start` object, required
          - `earliest` string, nullable, required
          - `latest` string, nullable, required
          - `comment` string, nullable, required
        - `end` object, required
          - `earliest` string, nullable, required
          - `latest` string, nullable, required
          - `comment` string, nullable, required
      - `standardType` object
        - `id` integer
        - `title` string
      - `relationTypes` RelationTypeModel[]
        - `property` string, required
        - `relationTo` integer, required
        - `type` string, nullable
        - `description` string, nullable
        - `when` TimeRangeModel, nullable
          - `start` object, required
            - `earliest` string, nullable, required
            - `latest` string, nullable, required
            - `comment` string, nullable, required
          - `end` object, required
            - `earliest` string, nullable, required
            - `latest` string, nullable, required
            - `comment` string, nullable, required
    - `involvement` RelatedEntityModel[]
      - `id` integer, required
      - `systemClass` string, required
      - `viewClass` string, required
      - `title` string, required
      - `description` string, required
      - `aliases` string[]
      - `geometries` union, required — Represents geographic data associated with an entity. Can be explicitly null, a single GeoJSON geometry (Point, Polygon, or LineString), or a GeoJSON FeatureCollection containing Features with specific properties.
        - FeatureCollection — A collection of GeoJSON Feature objects.
          - `type` 'FeatureCollection', required — The GeoJSON object type.
          - `features` Feature[], required
            - `type` 'Feature', required — The GeoJSON object type.
            - `geometry` union, required
              - …
            - `properties` FeatureProperties, nullable, required
              - …
        - Feature — A GeoJSON Feature object, linking a geometry to properties.
          - `type` 'Feature', required — The GeoJSON object type.
          - `geometry` union, required
            - GeoJSONPoint — A GeoJSON Point geometry.
              - …
            - GeoJSONPolygon — A GeoJSON Polygon geometry.
              - …
            - GeoJSONLineString — A GeoJSON LineString geometry.
              - …
          - `properties` FeatureProperties, nullable, required
            - `title` string — A title for the feature.
            - `description` string — A description of the feature.
            - `shapeType` string — A custom identifier for the shape's role or type.
            - `locationId` integer — A specific identifier for the location.
      - `when` TimeRangeModel, nullable, required
        - `start` object, required
          - `earliest` string, nullable, required
          - `latest` string, nullable, required
          - `comment` string, nullable, required
        - `end` object, required
          - `earliest` string, nullable, required
          - `latest` string, nullable, required
          - `comment` string, nullable, required
      - `standardType` object
        - `id` integer
        - `title` string
      - `relationTypes` RelationTypeModel[]
        - `property` string, required
        - `relationTo` integer, required
        - `type` string, nullable
        - `description` string, nullable
        - `when` TimeRangeModel, nullable
          - `start` object, required
            - `earliest` string, nullable, required
            - `latest` string, nullable, required
            - `comment` string, nullable, required
          - `end` object, required
            - `earliest` string, nullable, required
            - `latest` string, nullable, required
            - `comment` string, nullable, required
    - `modification` RelatedEntityModel[]
      - `id` integer, required
      - `systemClass` string, required
      - `viewClass` string, required
      - `title` string, required
      - `description` string, required
      - `aliases` string[]
      - `geometries` union, required — Represents geographic data associated with an entity. Can be explicitly null, a single GeoJSON geometry (Point, Polygon, or LineString), or a GeoJSON FeatureCollection containing Features with specific properties.
        - FeatureCollection — A collection of GeoJSON Feature objects.
          - `type` 'FeatureCollection', required — The GeoJSON object type.
          - `features` Feature[], required
            - `type` 'Feature', required — The GeoJSON object type.
            - `geometry` union, required
              - …
            - `properties` FeatureProperties, nullable, required
              - …
        - Feature — A GeoJSON Feature object, linking a geometry to properties.
          - `type` 'Feature', required — The GeoJSON object type.
          - `geometry` union, required
            - GeoJSONPoint — A GeoJSON Point geometry.
              - …
            - GeoJSONPolygon — A GeoJSON Polygon geometry.
              - …
            - GeoJSONLineString — A GeoJSON LineString geometry.
              - …
          - `properties` FeatureProperties, nullable, required
            - `title` string — A title for the feature.
            - `description` string — A description of the feature.
            - `shapeType` string — A custom identifier for the shape's role or type.
            - `locationId` integer — A specific identifier for the location.
      - `when` TimeRangeModel, nullable, required
        - `start` object, required
          - `earliest` string, nullable, required
          - `latest` string, nullable, required
          - `comment` string, nullable, required
        - `end` object, required
          - `earliest` string, nullable, required
          - `latest` string, nullable, required
          - `comment` string, nullable, required
      - `standardType` object
        - `id` integer
        - `title` string
      - `relationTypes` RelationTypeModel[]
        - `property` string, required
        - `relationTo` integer, required
        - `type` string, nullable
        - `description` string, nullable
        - `when` TimeRangeModel, nullable
          - `start` object, required
            - `earliest` string, nullable, required
            - `latest` string, nullable, required
            - `comment` string, nullable, required
          - `end` object, required
            - `earliest` string, nullable, required
            - `latest` string, nullable, required
            - `comment` string, nullable, required
    - `move` RelatedEntityModel[]
      - `id` integer, required
      - `systemClass` string, required
      - `viewClass` string, required
      - `title` string, required
      - `description` string, required
      - `aliases` string[]
      - `geometries` union, required — Represents geographic data associated with an entity. Can be explicitly null, a single GeoJSON geometry (Point, Polygon, or LineString), or a GeoJSON FeatureCollection containing Features with specific properties.
        - FeatureCollection — A collection of GeoJSON Feature objects.
          - `type` 'FeatureCollection', required — The GeoJSON object type.
          - `features` Feature[], required
            - `type` 'Feature', required — The GeoJSON object type.
            - `geometry` union, required
              - …
            - `properties` FeatureProperties, nullable, required
              - …
        - Feature — A GeoJSON Feature object, linking a geometry to properties.
          - `type` 'Feature', required — The GeoJSON object type.
          - `geometry` union, required
            - GeoJSONPoint — A GeoJSON Point geometry.
              - …
            - GeoJSONPolygon — A GeoJSON Polygon geometry.
              - …
            - GeoJSONLineString — A GeoJSON LineString geometry.
              - …
          - `properties` FeatureProperties, nullable, required
            - `title` string — A title for the feature.
            - `description` string — A description of the feature.
            - `shapeType` string — A custom identifier for the shape's role or type.
            - `locationId` integer — A specific identifier for the location.
      - `when` TimeRangeModel, nullable, required
        - `start` object, required
          - `earliest` string, nullable, required
          - `latest` string, nullable, required
          - `comment` string, nullable, required
        - `end` object, required
          - `earliest` string, nullable, required
          - `latest` string, nullable, required
          - `comment` string, nullable, required
      - `standardType` object
        - `id` integer
        - `title` string
      - `relationTypes` RelationTypeModel[]
        - `property` string, required
        - `relationTo` integer, required
        - `type` string, nullable
        - `description` string, nullable
        - `when` TimeRangeModel, nullable
          - `start` object, required
            - `earliest` string, nullable, required
            - `latest` string, nullable, required
            - `comment` string, nullable, required
          - `end` object, required
            - `earliest` string, nullable, required
            - `latest` string, nullable, required
            - `comment` string, nullable, required
    - `person` RelatedEntityModel[]
      - `id` integer, required
      - `systemClass` string, required
      - `viewClass` string, required
      - `title` string, required
      - `description` string, required
      - `aliases` string[]
      - `geometries` union, required — Represents geographic data associated with an entity. Can be explicitly null, a single GeoJSON geometry (Point, Polygon, or LineString), or a GeoJSON FeatureCollection containing Features with specific properties.
        - FeatureCollection — A collection of GeoJSON Feature objects.
          - `type` 'FeatureCollection', required — The GeoJSON object type.
          - `features` Feature[], required
            - `type` 'Feature', required — The GeoJSON object type.
            - `geometry` union, required
              - …
            - `properties` FeatureProperties, nullable, required
              - …
        - Feature — A GeoJSON Feature object, linking a geometry to properties.
          - `type` 'Feature', required — The GeoJSON object type.
          - `geometry` union, required
            - GeoJSONPoint — A GeoJSON Point geometry.
              - …
            - GeoJSONPolygon — A GeoJSON Polygon geometry.
              - …
            - GeoJSONLineString — A GeoJSON LineString geometry.
              - …
          - `properties` FeatureProperties, nullable, required
            - `title` string — A title for the feature.
            - `description` string — A description of the feature.
            - `shapeType` string — A custom identifier for the shape's role or type.
            - `locationId` integer — A specific identifier for the location.
      - `when` TimeRangeModel, nullable, required
        - `start` object, required
          - `earliest` string, nullable, required
          - `latest` string, nullable, required
          - `comment` string, nullable, required
        - `end` object, required
          - `earliest` string, nullable, required
          - `latest` string, nullable, required
          - `comment` string, nullable, required
      - `standardType` object
        - `id` integer
        - `title` string
      - `relationTypes` RelationTypeModel[]
        - `property` string, required
        - `relationTo` integer, required
        - `type` string, nullable
        - `description` string, nullable
        - `when` TimeRangeModel, nullable
          - `start` object, required
            - `earliest` string, nullable, required
            - `latest` string, nullable, required
            - `comment` string, nullable, required
          - `end` object, required
            - `earliest` string, nullable, required
            - `latest` string, nullable, required
            - `comment` string, nullable, required
    - `place` RelatedEntityModel[]
      - `id` integer, required
      - `systemClass` string, required
      - `viewClass` string, required
      - `title` string, required
      - `description` string, required
      - `aliases` string[]
      - `geometries` union, required — Represents geographic data associated with an entity. Can be explicitly null, a single GeoJSON geometry (Point, Polygon, or LineString), or a GeoJSON FeatureCollection containing Features with specific properties.
        - FeatureCollection — A collection of GeoJSON Feature objects.
          - `type` 'FeatureCollection', required — The GeoJSON object type.
          - `features` Feature[], required
            - `type` 'Feature', required — The GeoJSON object type.
            - `geometry` union, required
              - …
            - `properties` FeatureProperties, nullable, required
              - …
        - Feature — A GeoJSON Feature object, linking a geometry to properties.
          - `type` 'Feature', required — The GeoJSON object type.
          - `geometry` union, required
            - GeoJSONPoint — A GeoJSON Point geometry.
              - …
            - GeoJSONPolygon — A GeoJSON Polygon geometry.
              - …
            - GeoJSONLineString — A GeoJSON LineString geometry.
              - …
          - `properties` FeatureProperties, nullable, required
            - `title` string — A title for the feature.
            - `description` string — A description of the feature.
            - `shapeType` string — A custom identifier for the shape's role or type.
            - `locationId` integer — A specific identifier for the location.
      - `when` TimeRangeModel, nullable, required
        - `start` object, required
          - `earliest` string, nullable, required
          - `latest` string, nullable, required
          - `comment` string, nullable, required
        - `end` object, required
          - `earliest` string, nullable, required
          - `latest` string, nullable, required
          - `comment` string, nullable, required
      - `standardType` object
        - `id` integer
        - `title` string
      - `relationTypes` RelationTypeModel[]
        - `property` string, required
        - `relationTo` integer, required
        - `type` string, nullable
        - `description` string, nullable
        - `when` TimeRangeModel, nullable
          - `start` object, required
            - `earliest` string, nullable, required
            - `latest` string, nullable, required
            - `comment` string, nullable, required
          - `end` object, required
            - `earliest` string, nullable, required
            - `latest` string, nullable, required
            - `comment` string, nullable, required
    - `production` RelatedEntityModel[]
      - `id` integer, required
      - `systemClass` string, required
      - `viewClass` string, required
      - `title` string, required
      - `description` string, required
      - `aliases` string[]
      - `geometries` union, required — Represents geographic data associated with an entity. Can be explicitly null, a single GeoJSON geometry (Point, Polygon, or LineString), or a GeoJSON FeatureCollection containing Features with specific properties.
        - FeatureCollection — A collection of GeoJSON Feature objects.
          - `type` 'FeatureCollection', required — The GeoJSON object type.
          - `features` Feature[], required
            - `type` 'Feature', required — The GeoJSON object type.
            - `geometry` union, required
              - …
            - `properties` FeatureProperties, nullable, required
              - …
        - Feature — A GeoJSON Feature object, linking a geometry to properties.
          - `type` 'Feature', required — The GeoJSON object type.
          - `geometry` union, required
            - GeoJSONPoint — A GeoJSON Point geometry.
              - …
            - GeoJSONPolygon — A GeoJSON Polygon geometry.
              - …
            - GeoJSONLineString — A GeoJSON LineString geometry.
              - …
          - `properties` FeatureProperties, nullable, required
            - `title` string — A title for the feature.
            - `description` string — A description of the feature.
            - `shapeType` string — A custom identifier for the shape's role or type.
            - `locationId` integer — A specific identifier for the location.
      - `when` TimeRangeModel, nullable, required
        - `start` object, required
          - `earliest` string, nullable, required
          - `latest` string, nullable, required
          - `comment` string, nullable, required
        - `end` object, required
          - `earliest` string, nullable, required
          - `latest` string, nullable, required
          - `comment` string, nullable, required
      - `standardType` object
        - `id` integer
        - `title` string
      - `relationTypes` RelationTypeModel[]
        - `property` string, required
        - `relationTo` integer, required
        - `type` string, nullable
        - `description` string, nullable
        - `when` TimeRangeModel, nullable
          - `start` object, required
            - `earliest` string, nullable, required
            - `latest` string, nullable, required
            - `comment` string, nullable, required
          - `end` object, required
            - `earliest` string, nullable, required
            - `latest` string, nullable, required
            - `comment` string, nullable, required
    - `source` RelatedEntityModel[]
      - `id` integer, required
      - `systemClass` string, required
      - `viewClass` string, required
      - `title` string, required
      - `description` string, required
      - `aliases` string[]
      - `geometries` union, required — Represents geographic data associated with an entity. Can be explicitly null, a single GeoJSON geometry (Point, Polygon, or LineString), or a GeoJSON FeatureCollection containing Features with specific properties.
        - FeatureCollection — A collection of GeoJSON Feature objects.
          - `type` 'FeatureCollection', required — The GeoJSON object type.
          - `features` Feature[], required
            - `type` 'Feature', required — The GeoJSON object type.
            - `geometry` union, required
              - …
            - `properties` FeatureProperties, nullable, required
              - …
        - Feature — A GeoJSON Feature object, linking a geometry to properties.
          - `type` 'Feature', required — The GeoJSON object type.
          - `geometry` union, required
            - GeoJSONPoint — A GeoJSON Point geometry.
              - …
            - GeoJSONPolygon — A GeoJSON Polygon geometry.
              - …
            - GeoJSONLineString — A GeoJSON LineString geometry.
              - …
          - `properties` FeatureProperties, nullable, required
            - `title` string — A title for the feature.
            - `description` string — A description of the feature.
            - `shapeType` string — A custom identifier for the shape's role or type.
            - `locationId` integer — A specific identifier for the location.
      - `when` TimeRangeModel, nullable, required
        - `start` object, required
          - `earliest` string, nullable, required
          - `latest` string, nullable, required
          - `comment` string, nullable, required
        - `end` object, required
          - `earliest` string, nullable, required
          - `latest` string, nullable, required
          - `comment` string, nullable, required
      - `standardType` object
        - `id` integer
        - `title` string
      - `relationTypes` RelationTypeModel[]
        - `property` string, required
        - `relationTo` integer, required
        - `type` string, nullable
        - `description` string, nullable
        - `when` TimeRangeModel, nullable
          - `start` object, required
            - `earliest` string, nullable, required
            - `latest` string, nullable, required
            - `comment` string, nullable, required
          - `end` object, required
            - `earliest` string, nullable, required
            - `latest` string, nullable, required
            - `comment` string, nullable, required
    - `text` RelatedEntityModel[]
      - `id` integer, required
      - `systemClass` string, required
      - `viewClass` string, required
      - `title` string, required
      - `description` string, required
      - `aliases` string[]
      - `geometries` union, required — Represents geographic data associated with an entity. Can be explicitly null, a single GeoJSON geometry (Point, Polygon, or LineString), or a GeoJSON FeatureCollection containing Features with specific properties.
        - FeatureCollection — A collection of GeoJSON Feature objects.
          - `type` 'FeatureCollection', required — The GeoJSON object type.
          - `features` Feature[], required
            - `type` 'Feature', required — The GeoJSON object type.
            - `geometry` union, required
              - …
            - `properties` FeatureProperties, nullable, required
              - …
        - Feature — A GeoJSON Feature object, linking a geometry to properties.
          - `type` 'Feature', required — The GeoJSON object type.
          - `geometry` union, required
            - GeoJSONPoint — A GeoJSON Point geometry.
              - …
            - GeoJSONPolygon — A GeoJSON Polygon geometry.
              - …
            - GeoJSONLineString — A GeoJSON LineString geometry.
              - …
          - `properties` FeatureProperties, nullable, required
            - `title` string — A title for the feature.
            - `description` string — A description of the feature.
            - `shapeType` string — A custom identifier for the shape's role or type.
            - `locationId` integer — A specific identifier for the location.
      - `when` TimeRangeModel, nullable, required
        - `start` object, required
          - `earliest` string, nullable, required
          - `latest` string, nullable, required
          - `comment` string, nullable, required
        - `end` object, required
          - `earliest` string, nullable, required
          - `latest` string, nullable, required
          - `comment` string, nullable, required
      - `standardType` object
        - `id` integer
        - `title` string
      - `relationTypes` RelationTypeModel[]
        - `property` string, required
        - `relationTo` integer, required
        - `type` string, nullable
        - `description` string, nullable
        - `when` TimeRangeModel, nullable
          - `start` object, required
            - `earliest` string, nullable, required
            - `latest` string, nullable, required
            - `comment` string, nullable, required
          - `end` object, required
            - `earliest` string, nullable, required
            - `latest` string, nullable, required
            - `comment` string, nullable, required
    - `stratigraphic_unit` RelatedEntityModel[]
      - `id` integer, required
      - `systemClass` string, required
      - `viewClass` string, required
      - `title` string, required
      - `description` string, required
      - `aliases` string[]
      - `geometries` union, required — Represents geographic data associated with an entity. Can be explicitly null, a single GeoJSON geometry (Point, Polygon, or LineString), or a GeoJSON FeatureCollection containing Features with specific properties.
        - FeatureCollection — A collection of GeoJSON Feature objects.
          - `type` 'FeatureCollection', required — The GeoJSON object type.
          - `features` Feature[], required
            - `type` 'Feature', required — The GeoJSON object type.
            - `geometry` union, required
              - …
            - `properties` FeatureProperties, nullable, required
              - …
        - Feature — A GeoJSON Feature object, linking a geometry to properties.
          - `type` 'Feature', required — The GeoJSON object type.
          - `geometry` union, required
            - GeoJSONPoint — A GeoJSON Point geometry.
              - …
            - GeoJSONPolygon — A GeoJSON Polygon geometry.
              - …
            - GeoJSONLineString — A GeoJSON LineString geometry.
              - …
          - `properties` FeatureProperties, nullable, required
            - `title` string — A title for the feature.
            - `description` string — A description of the feature.
            - `shapeType` string — A custom identifier for the shape's role or type.
            - `locationId` integer — A specific identifier for the location.
      - `when` TimeRangeModel, nullable, required
        - `start` object, required
          - `earliest` string, nullable, required
          - `latest` string, nullable, required
          - `comment` string, nullable, required
        - `end` object, required
          - `earliest` string, nullable, required
          - `latest` string, nullable, required
          - `comment` string, nullable, required
      - `standardType` object
        - `id` integer
        - `title` string
      - `relationTypes` RelationTypeModel[]
        - `property` string, required
        - `relationTo` integer, required
        - `type` string, nullable
        - `description` string, nullable
        - `when` TimeRangeModel, nullable
          - `start` object, required
            - `earliest` string, nullable, required
            - `latest` string, nullable, required
            - `comment` string, nullable, required
          - `end` object, required
            - `earliest` string, nullable, required
            - `latest` string, nullable, required
            - `comment` string, nullable, required

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `403` — Access denied
- `404` — Resource not found
- `409` — Conflict
- `500` — Internal server error

---

[API](https://skmtc.net/craws/apis/openatlas-api.md) · [All operations](https://skmtc.net/craws/apis/openatlas-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/craws/openatlas-api/revisions/bbd340468fc9/schema)
