A long-form review of a catalog work, authored on a NeoDB instance.
Record Key
any
Any valid record key
Properties
body
string
Required
Review body in Markdown.
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
fediverseUri
string
uri
Optional
Fediverse (ActivityPub) object URI of the corresponding post on the originating NeoDB instance.
rating
ref
net.neodb.defs#rating
Optional
Optional rating accompanying the review.
subject
ref
net.neodb.defs#subject
Required
No description available.
title
string
Required
No description available.
maxLength: 2000 bytesmaxGraphemes: 500 graphemesupdatedAt
string
datetime
Optional
An RFC 3339 formatted timestamp.
View raw schema
{
"key": "any",
"type": "record",
"record": {
"type": "object",
"required": [
"subject",
"title",
"body",
"createdAt"
],
"properties": {
"body": {
"type": "string",
"description": "Review body in Markdown."
},
"title": {
"type": "string",
"maxLength": 2000,
"maxGraphemes": 500
},
"rating": {
"ref": "net.neodb.defs#rating",
"type": "ref",
"description": "Optional rating accompanying the review."
},
"subject": {
"ref": "net.neodb.defs#subject",
"type": "ref"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"updatedAt": {
"type": "string",
"format": "datetime"
},
"fediverseUri": {
"type": "string",
"format": "uri",
"description": "Fediverse (ActivityPub) object URI of the corresponding post on the originating NeoDB instance."
}
}
},
"description": "A long-form review of a catalog work, authored on a NeoDB instance."
}