Unnamed definition
{
"lexicon": 1,
"id": "community.lexicon.location.geo",
"defs": {
"main": {
"type": "object",
"description": "A physical location in the form of a WGS84 coordinate.",
"required": [
"latitude",
"longitude"
],
"properties": {
"latitude": {
"type": "string"
},
"longitude": {
"type": "string"
},
"altitude": {
"type": "string"
},
"name": {
"type": "string",
"description": "The name of the location."
}
}
}
}
}