A channel within a harbor. Written by the harbor owner; points at the harbor record. Text channels also host an ad-hoc call; voice channels are call-first.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
harbor
string
at-uri
Required
An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).
kind
string
Optional
No description available.
Known values:
text, voicename
string
Required
No description available.
maxLength: 640 bytesmaxGraphemes: 64 graphemesposition
integer
Optional
No description available.
minimum: 0readOnly
boolean
Optional
Announcement channel: only the harbor owner can post; everyone can read.
topic
string
Optional
No description available.
maxLength: 3000 bytesmaxGraphemes: 300 graphemesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"harbor",
"name",
"createdAt"
],
"properties": {
"kind": {
"type": "string",
"knownValues": [
"text",
"voice"
]
},
"name": {
"type": "string",
"maxLength": 640,
"maxGraphemes": 64
},
"topic": {
"type": "string",
"maxLength": 3000,
"maxGraphemes": 300
},
"harbor": {
"type": "string",
"format": "at-uri"
},
"position": {
"type": "integer",
"minimum": 0
},
"readOnly": {
"type": "boolean",
"description": "Announcement channel: only the harbor owner can post; everyone can read."
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "A channel within a harbor. Written by the harbor owner; points at the harbor record. Text channels also host an ad-hoc call; voice channels are call-first."
}