No description available.
Record Key
tid
Timestamp-based ID
Properties
category
string
Required
No description available.
condition
string
Optional
No description available.
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
description
string
Optional
No description available.
maxLength: 3000 bytesexternalUrl
string
Optional
Optional external URL for purchasing the item (e.g., Amazon, eBay link)
maxLength: 2000 byteshideFromFriends
boolean
Optional
No description available.
images
array
of
blob
Optional
No description available.
location
ref
#locationObj
Required
No description available.
metadata
ref
#metadataObj
Optional
No description available.
price
string
Required
String representation
title
string
Required
No description available.
maxLength: 300 bytesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"title",
"price",
"category",
"location",
"createdAt"
],
"properties": {
"price": {
"type": "string",
"description": "String representation"
},
"title": {
"type": "string",
"maxLength": 300
},
"images": {
"type": "array",
"items": {
"type": "blob",
"accept": [
"image/*"
],
"maxSize": 1000000
}
},
"category": {
"type": "string"
},
"location": {
"ref": "#locationObj",
"type": "ref"
},
"metadata": {
"ref": "#metadataObj",
"type": "ref"
},
"condition": {
"type": "string"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"description": {
"type": "string",
"maxLength": 3000
},
"externalUrl": {
"type": "string",
"maxLength": 2000,
"description": "Optional external URL for purchasing the item (e.g., Amazon, eBay link)"
},
"hideFromFriends": {
"type": "boolean"
}
}
}
}