A record representing a film.
Record Key
any
Any valid record key
Properties
View raw schema
{
"key": "any",
"type": "record",
"record": {
"type": "object",
"required": [
"title",
"workType"
],
"properties": {
"year": {
"type": "integer",
"maximum": 2199,
"minimum": 1800,
"description": "The year the film was released."
},
"title": {
"type": "string",
"required": true,
"maxLength": 2048,
"description": "The title of the film.",
"maxGraphemes": 512
},
"workType": {
"type": "string",
"const": "film",
"required": true,
"maxLength": 64,
"description": "Identifies this record as a film.",
"maxGraphemes": 64
}
}
},
"description": "A record representing a film."
}