A collection of flashcards and sources.
Record Key
tid
Timestamp-based ID
Properties
cardRefs
array
of
string
at-uri
Optional
Ordered list of references to cards in this deck.
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
description
string
Optional
Description of the deck context.
maxLength: 3000 byteslanguage
string
Optional
Language code for the deck content (e.g., 'en', 'es', 'fr').
maxLength: 20 byteslicense
string
Optional
License for the deck content.
maxLength: 500 bytessourceRefs
array
of
string
at-uri
Optional
References to source materials (articles, lectures) used in this deck.
tags
array
of
string
Optional
No description available.
maxLength: 64 itemstitle
string
Required
Title of the deck.
maxLength: 300 bytesupdatedAt
string
datetime
Optional
Timestamp of last update.
visibility
string
Optional
Visibility setting for the deck.
maxLength: 100 bytesKnown values:
private, unlisted, publicDefault:
publicView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"title",
"createdAt"
],
"properties": {
"tags": {
"type": "array",
"items": {
"type": "string",
"maxLength": 100
},
"maxLength": 64
},
"title": {
"type": "string",
"maxLength": 300,
"description": "Title of the deck."
},
"license": {
"type": "string",
"maxLength": 500,
"description": "License for the deck content."
},
"cardRefs": {
"type": "array",
"items": {
"type": "string",
"format": "at-uri"
},
"description": "Ordered list of references to cards in this deck."
},
"language": {
"type": "string",
"maxLength": 20,
"description": "Language code for the deck content (e.g., 'en', 'es', 'fr')."
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"updatedAt": {
"type": "string",
"format": "datetime",
"description": "Timestamp of last update."
},
"sourceRefs": {
"type": "array",
"items": {
"type": "string",
"format": "at-uri"
},
"description": "References to source materials (articles, lectures) used in this deck."
},
"visibility": {
"type": "string",
"default": "public",
"maxLength": 100,
"description": "Visibility setting for the deck.",
"knownValues": [
"private",
"unlisted",
"public"
]
},
"description": {
"type": "string",
"maxLength": 3000,
"description": "Description of the deck context."
}
}
},
"description": "A collection of flashcards and sources."
}