No description available.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
When this cooking log was created.
notes
string
Optional
Optional user notes captured at completion.
maxLength: 500 bytesscaledServings
unknown
Optional
Optional servings value used while cooking.
subject
ref
com.atproto.repo.strongRef
Required
Reference to the cooked recipe record (io.kich.recipe.recipe).
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"subject",
"createdAt"
],
"properties": {
"notes": {
"type": "string",
"maxLength": 500,
"description": "Optional user notes captured at completion."
},
"subject": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "Reference to the cooked recipe record (io.kich.recipe.recipe)."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "When this cooking log was created."
},
"scaledServings": {
"type": "unknown",
"description": "Optional servings value used while cooking."
}
}
}
}