# community.lexicon.location.geo

> Published by [lexicon.community](https://lexicon.garden/identity/did:plc:2uwoih2htodskvgocarwv5eq)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:2uwoih2htodskvgocarwv5eq/community.lexicon.location.geo)
- [Documentation](https://lexicon.garden/lexicon/did:plc:2uwoih2htodskvgocarwv5eq/community.lexicon.location.geo/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:2uwoih2htodskvgocarwv5eq/community.lexicon.location.geo/examples)

## Definitions

### `community.lexicon.location.geo`

**Type**: `object`

A physical location in the form of a WGS84 coordinate.

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `name` | `string` | No | The name of the location. |
| `altitude` | `string` | No |  |
| `latitude` | `string` | Yes |  |
| `longitude` | `string` | Yes |  |

## Raw Schema

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