A set of Winesky-uploaded images
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
description
string
Optional
No description available.
maxLength: 5000 bytesimages
array
of
blob
Optional
No description available.
maxLength: 4 itemsminLength: 1 itemsorigin
string
Required
No description available.
maxLength: 50 bytesAllowed:
IDENTIFY_WINE, SOMMELIER, CSV_IMPORT, OTHERparent
object
Optional
No description available.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"origin",
"createdAt"
],
"properties": {
"images": {
"type": "array",
"items": {
"type": "blob",
"accept": [
"image/jpeg",
"image/png"
],
"maxSize": 3000000
},
"maxLength": 4,
"minLength": 1
},
"origin": {
"enum": [
"IDENTIFY_WINE",
"SOMMELIER",
"CSV_IMPORT",
"OTHER"
],
"type": "string",
"maxLength": 50
},
"parent": {
"type": "object",
"required": [
"cid",
"atUri"
],
"properties": {
"cid": {
"type": "string",
"format": "cid"
},
"atUri": {
"type": "string",
"format": "at-uri"
}
}
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"description": {
"type": "string",
"maxLength": 5000
}
}
},
"description": "A set of Winesky-uploaded images"
}