# at.mapped.location

> Published by [mapped.at](https://lexicon.garden/identity/did:plc:l5m5nuh5cvdatyn5fjxar2sh)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:l5m5nuh5cvdatyn5fjxar2sh/at.mapped.location)
- [Documentation](https://lexicon.garden/lexicon/did:plc:l5m5nuh5cvdatyn5fjxar2sh/at.mapped.location/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:l5m5nuh5cvdatyn5fjxar2sh/at.mapped.location/examples)

## Definitions

### `at.mapped.location`

**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": "at.mapped.location",
  "defs": {
    "main": {
      "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."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
