Record key is the recipe's rkey for one-review-per-user-per-recipe; pass recipeId as rkey
Record Key
any
Any valid record key
Properties
comment
string
Optional
Optional review comment in GitHub-flavored markdown
maxLength: 10000 bytescreatedAt
string
datetime
Required
When this review was created
rating
integer
Required
Star rating as integer 1-5 (1=1 star, 5=5 stars)
minimum: 1maximum: 5subject
ref
com.atproto.repo.strongRef
Required
Reference to the recipe being reviewed
updatedAt
string
datetime
Optional
When this review was last updated
View raw schema
{
"key": "any",
"type": "record",
"record": {
"type": "object",
"required": [
"subject",
"rating",
"createdAt"
],
"properties": {
"rating": {
"type": "integer",
"maximum": 5,
"minimum": 1,
"description": "Star rating as integer 1-5 (1=1 star, 5=5 stars)"
},
"comment": {
"type": "string",
"maxLength": 10000,
"description": "Optional review comment in GitHub-flavored markdown"
},
"subject": {
"ref": "com.atproto.repo.strongRef",
"type": "ref",
"description": "Reference to the recipe being reviewed"
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "When this review was created"
},
"updatedAt": {
"type": "string",
"format": "datetime",
"description": "When this review was last updated"
}
}
},
"description": "Record key is the recipe's rkey for one-review-per-user-per-recipe; pass recipeId as rkey"
}