A record representing a card with content.
tid
Timestamp-based ID
Properties
content
union
Required
The specific content of the card, determined by the card type.
createdAt
string
datetime
Optional
Timestamp when this card was created (usually set by PDS).
originalCard
ref
com.atproto.repo.strongRef
Optional
Optional strong reference to the original card (for NOTE cards).
parentCard
ref
com.atproto.repo.strongRef
Optional
Optional strong reference to a parent card (for NOTE cards).
provenance
ref
network.cosmik.defs#provenance
Optional
Optional provenance information for this card.
type
string
Required
The type of card
URL, NOTEurl
string
uri
Optional
Optional URL associated with the card. Required for URL cards, optional for NOTE cards.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"type",
"content"
],
"properties": {
"url": {
"type": "string",
"format": "uri",
"description": "Optional URL associated with the card. Required for URL cards, optional for NOTE cards."
},
"type": {
"type": "string",
"description": "The type of card",
"knownValues": [
"URL",
"NOTE"
]
},
"content": {
"refs": [
"#urlContent",
"#noteContent"
],
"type": "union",
"description": "The specific content of the card, determined by the card type."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Timestamp when this card was created (usually set by PDS)."
},
"parentCard": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "Optional strong reference to a parent card (for NOTE cards)."
},
"provenance": {
"ref": "network.cosmik.defs#provenance",
"type": "ref",
"description": "Optional provenance information for this card."
},
"originalCard": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "Optional strong reference to the original card (for NOTE cards)."
}
}
},
"description": "A record representing a card with content."
}