A Looking For Group record that broadcasts interest in finding activity partners within a geographic area.
Record Key
tid
Timestamp-based ID
Properties
active
boolean
Required
Whether the LFG is currently active and visible to others.
createdAt
string
datetime
Required
Record creation timestamp.
endsAt
string
datetime
Required
When the LFG expires and is no longer visible.
location
ref
community.lexicon.location#geo
Required
The geographic location for activity partner matching.
startsAt
string
datetime
Required
When the LFG becomes active.
tags
array
of
string
Required
Interest tags for matching with events and other users.
maxLength: 10 bytesminLength: 1 bytesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"location",
"tags",
"startsAt",
"endsAt",
"createdAt",
"active"
],
"properties": {
"tags": {
"type": "array",
"items": {
"type": "string",
"maxLength": 64,
"maxGraphemes": 64
},
"maxLength": 10,
"minLength": 1,
"description": "Interest tags for matching with events and other users."
},
"active": {
"type": "boolean",
"description": "Whether the LFG is currently active and visible to others."
},
"endsAt": {
"type": "string",
"format": "datetime",
"description": "When the LFG expires and is no longer visible."
},
"location": {
"ref": "community.lexicon.location#geo",
"type": "ref",
"description": "The geographic location for activity partner matching."
},
"startsAt": {
"type": "string",
"format": "datetime",
"description": "When the LFG becomes active."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Record creation timestamp."
}
}
},
"description": "A Looking For Group record that broadcasts interest in finding activity partners within a geographic area."
}