No description available.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Optional
An RFC 3339 formatted timestamp.
geometry
object
Optional
No description available.
location
object
Optional
No description available.
questions
array
of
object
Optional
No description available.
rating
integer
Optional
No description available.
review
string
Optional
No description available.
tags
array
of
string
Optional
No description available.
url
string
url
Optional
No description available.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"properties": {
"url": {
"type": "string",
"format": "url"
},
"tags": {
"type": "array",
"items": {
"type": "string"
}
},
"rating": {
"type": "integer"
},
"review": {
"type": "string"
},
"geometry": {
"type": "object",
"properties": {
"type": {
"type": "string"
},
"coordinates": {
"type": "array",
"items": {
"type": "integer"
}
}
}
},
"location": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"address": {
"type": "string"
},
"country_code": {
"type": "string"
}
}
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"questions": {
"type": "array",
"items": {
"type": "object",
"properties": {
"rating": {
"type": "integer"
},
"question": {
"type": "string"
},
"selected_option": {
"type": "string"
},
"selected_options": {
"type": "array",
"items": {
"type": "string"
}
}
}
}
}
}
}
}