Record representing a single external account or website linked by the user.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
Client-declared timestamp when this record was originally created.
feedUrl
string
uri
Optional
Optional RSS or Atom feed URL. Auto-discovered or manually provided. Used for content rendering in the ATmosphere Stream.
isPrimary
boolean
Optional
Whether this is the user's primary external link, displayed prominently on the profile card.
label
string
Optional
Optional display name for this account (e.g., 'My Blog', 'Photography').
maxLength: 640 bytesmaxGraphemes: 64 graphemesplatform
string
Required
The platform or type of external account.
Known values:
id.sifa.defs#platformRss, id.sifa.defs#platformFediverse, id.sifa.defs#platformTwitter, id.sifa.defs#platformInstagram, id.sifa.defs#platformGithub, id.sifa.defs#platformYoutube, id.sifa.defs#platformLinkedin, id.sifa.defs#platformWebsite, id.sifa.defs#platformOtherurl
string
uri
Required
The profile or site URL. Displayed as a clickable link on the user's profile.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"platform",
"url",
"createdAt"
],
"properties": {
"url": {
"type": "string",
"format": "uri",
"description": "The profile or site URL. Displayed as a clickable link on the user's profile."
},
"label": {
"type": "string",
"maxLength": 640,
"description": "Optional display name for this account (e.g., 'My Blog', 'Photography').",
"maxGraphemes": 64
},
"feedUrl": {
"type": "string",
"format": "uri",
"description": "Optional RSS or Atom feed URL. Auto-discovered or manually provided. Used for content rendering in the ATmosphere Stream."
},
"platform": {
"type": "string",
"description": "The platform or type of external account.",
"knownValues": [
"id.sifa.defs#platformRss",
"id.sifa.defs#platformFediverse",
"id.sifa.defs#platformTwitter",
"id.sifa.defs#platformInstagram",
"id.sifa.defs#platformGithub",
"id.sifa.defs#platformYoutube",
"id.sifa.defs#platformLinkedin",
"id.sifa.defs#platformWebsite",
"id.sifa.defs#platformOther"
]
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Client-declared timestamp when this record was originally created."
},
"isPrimary": {
"type": "boolean",
"description": "Whether this is the user's primary external link, displayed prominently on the profile card."
}
}
},
"description": "Record representing a single external account or website linked by the user."
}