Record representing a single host
Record Key
any
Any valid record key
Properties
View raw schema
{
"key": "any",
"type": "record",
"record": {
"type": "object",
"required": [
"id",
"name",
"createdAt"
],
"properties": {
"id": {
"type": "integer"
},
"name": {
"type": "string",
"maxLength": 500
},
"imageUri": {
"type": "string",
"format": "uri"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"thumbnailUri": {
"type": "string",
"format": "uri"
}
}
},
"description": "Record representing a single host"
}