Record representing a single program
Record Key
any
Any valid record key
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
description
string
Optional
No description available.
maxLength: 5000 bytesid
integer
Required
No description available.
imageUri
string
uri
Optional
A valid URI.
name
string
Required
No description available.
maxLength: 500 bytestags
array
of
string
Optional
No description available.
thumbnailUri
string
uri
Optional
A valid URI.
View raw schema
{
"key": "any",
"type": "record",
"record": {
"type": "object",
"required": [
"id",
"name",
"createdAt"
],
"properties": {
"id": {
"type": "integer"
},
"name": {
"type": "string",
"maxLength": 500
},
"tags": {
"type": "array",
"items": {
"type": "string",
"maxLength": 500
}
},
"imageUri": {
"type": "string",
"format": "uri"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"description": {
"type": "string",
"maxLength": 5000
},
"thumbnailUri": {
"type": "string",
"format": "uri"
}
}
},
"description": "Record representing a single program"
}