# community.lexicon.location.fsq

> 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.fsq)
- [Documentation](https://lexicon.garden/lexicon/did:plc:2uwoih2htodskvgocarwv5eq/community.lexicon.location.fsq/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:2uwoih2htodskvgocarwv5eq/community.lexicon.location.fsq/examples)

## Definitions

### `community.lexicon.location.fsq`

**Type**: `object`

A physical location contained in the Foursquare Open Source Places dataset.

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `name` | `string` | No | The name of the location. |
| `latitude` | `string` | No |  |
| `longitude` | `string` | No |  |
| `fsq_place_id` | `string` | Yes | The unique identifier of a Foursquare POI. |

## Raw Schema

```json
{
  "id": "community.lexicon.location.fsq",
  "defs": {
    "main": {
      "type": "object",
      "required": [
        "fsq_place_id"
      ],
      "properties": {
        "name": {
          "type": "string",
          "description": "The name of the location."
        },
        "latitude": {
          "type": "string"
        },
        "longitude": {
          "type": "string"
        },
        "fsq_place_id": {
          "type": "string",
          "description": "The unique identifier of a Foursquare POI."
        }
      },
      "description": "A physical location contained in the Foursquare Open Source Places dataset."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
