at.mapped.location

mapped.at

Documentation

A physical location in the form of a WGS84 coordinate.

main object

A physical location in the form of a WGS84 coordinate.

Properties

altitude string Optional

No description available.

maxLength: 20 bytes
latitude string Required

No description available.

maxLength: 20 bytes
longitude string Required

No description available.

maxLength: 20 bytes
name string Optional

The name of the location.

maxLength: 50 bytes
View raw schema
{
  "type": "object",
  "required": [
    "latitude",
    "longitude"
  ],
  "properties": {
    "name": {
      "type": "string",
      "maxLength": 50,
      "description": "The name of the location."
    },
    "altitude": {
      "type": "string",
      "maxLength": 20
    },
    "latitude": {
      "type": "string",
      "maxLength": 20
    },
    "longitude": {
      "type": "string",
      "maxLength": 20
    }
  },
  "description": "A physical location in the form of a WGS84 coordinate."
}

Lexicon Garden

@