Dryad · Schema

Geolocation

Research DataOpen ScienceData RepositoryDatasetsBiologyEcologyOpen Access

Properties

Name Type Description
place string A place name.
box object A bounding box.
point object A coordinate point.
View JSON Schema on GitHub

JSON Schema

geolocation.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/dryad/refs/heads/main/json-schema/geolocation.json",
  "title": "Geolocation",
  "properties": {
    "place": {
      "description": "A place name.",
      "type": "string"
    },
    "box": {
      "$ref": "#/components/schemas/geolocationBox",
      "description": "A bounding box."
    },
    "point": {
      "$ref": "#/components/schemas/geolocationPoint",
      "description": "A coordinate point."
    }
  }
}