app.beaconbits.venue

beaconbits.app

Documentation

A user-created venue definition

main record

A user-created venue definition

Record Key tid Timestamp-based ID

Properties

address string Optional

Human-readable address

maxGraphemes: 256 graphemes
category string Optional

Venue category (bar, cafe, restaurant, etc.)

maxGraphemes: 64 graphemes
createdAt string datetime Required

Timestamp when the venue was created

name string Required

Display name of the venue

maxGraphemes: 64 graphemes
osmUri string uri Optional

Link to underlying OpenStreetMap entity (osm://node/123)

View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "name",
      "createdAt"
    ],
    "properties": {
      "name": {
        "type": "string",
        "description": "Display name of the venue",
        "maxGraphemes": 64
      },
      "osmUri": {
        "type": "string",
        "format": "uri",
        "description": "Link to underlying OpenStreetMap entity (osm://node/123)"
      },
      "address": {
        "type": "string",
        "description": "Human-readable address",
        "maxGraphemes": 256
      },
      "category": {
        "type": "string",
        "description": "Venue category (bar, cafe, restaurant, etc.)",
        "maxGraphemes": 64
      },
      "location": {
        "ref": "community.lexicon.location.geo",
        "type": "ref",
        "description": "Structured location using community lexicon"
      },
      "createdAt": {
        "type": "string",
        "format": "datetime",
        "description": "Timestamp when the venue was created"
      },
      "addressDetails": {
        "ref": "community.lexicon.location.address",
        "type": "ref",
        "description": "Structured address using community lexicon"
      }
    }
  },
  "description": "A user-created venue definition"
}

Lexicon Garden

@