Nominatim · Schema

Status

Service and database status report from the Nominatim /status endpoint.

GeocodingOpenStreetMapMapsLocationServicesOpenSourcePublic APIs

Properties

Name Type Description
status integer Numeric status code. 0 means OK.
message string
data_updated string Timestamp of the last successful OSM data import or replication.
software_version string
database_version string
View JSON Schema on GitHub

JSON Schema

nominatim-status-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://nominatim.org/schemas/status.json",
  "title": "Status",
  "description": "Service and database status report from the Nominatim /status endpoint.",
  "type": "object",
  "properties": {
    "status": {
      "type": "integer",
      "description": "Numeric status code. 0 means OK."
    },
    "message": { "type": "string" },
    "data_updated": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp of the last successful OSM data import or replication."
    },
    "software_version": { "type": "string" },
    "database_version": { "type": "string" }
  },
  "required": ["status", "message"]
}