No description available.
Record Key
tid
Timestamp-based ID
Properties
collection
string
at-uri
Required
Reference (AT-URI) to the collection record (io.kich.recipe.collection)
createdAt
string
datetime
Required
When this item was added to the collection
group
string
Optional
Optional group/section name for organizing recipes within the collection
position
integer
Optional
Optional position for ordering items within the collection
subject
ref
com.atproto.repo.strongRef
Required
Reference to the recipe (io.kich.recipe.recipe) included in the collection
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"subject",
"collection",
"createdAt"
],
"properties": {
"group": {
"type": "string",
"description": "Optional group/section name for organizing recipes within the collection"
},
"subject": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "Reference to the recipe (io.kich.recipe.recipe) included in the collection"
},
"position": {
"type": "integer",
"description": "Optional position for ordering items within the collection"
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "When this item was added to the collection"
},
"collection": {
"type": "string",
"format": "at-uri",
"description": "Reference (AT-URI) to the collection record (io.kich.recipe.collection)"
}
}
}
}