No description available.
Record Key
tid
Timestamp-based ID
Properties
authors
array
of
ref
org.shelfcheck.defs#authorRef
Optional
No description available.
maxLength: 32 itemscreatedAt
string
datetime
Required
An RFC 3339 formatted timestamp.
ids
ref
org.shelfcheck.defs#bookIds
Required
No description available.
reason
string
Optional
No description available.
maxLength: 1024 bytestitle
string
Optional
No description available.
maxLength: 1024 bytesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"ids",
"createdAt"
],
"properties": {
"ids": {
"ref": "org.shelfcheck.defs#bookIds",
"type": "ref"
},
"title": {
"type": "string",
"maxLength": 1024
},
"reason": {
"type": "string",
"maxLength": 1024
},
"authors": {
"type": "array",
"items": {
"ref": "org.shelfcheck.defs#authorRef",
"type": "ref"
},
"maxLength": 32
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
}
}