No description available.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
imageUrl
string
uri
Optional
A valid URI.
name
string
Required
No description available.
maxLength: 256 bytesolAuthorKey
string
Optional
Open Library author key, e.g. 'OL23919A'. Primary correlation key when present.
maxLength: 64 bytesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"createdAt"
],
"properties": {
"name": {
"type": "string",
"maxLength": 256
},
"imageUrl": {
"type": "string",
"format": "uri"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"olAuthorKey": {
"type": "string",
"maxLength": 64,
"description": "Open Library author key, e.g. 'OL23919A'. Primary correlation key when present."
}
}
}
}