work.lexical.work.film

lexical.work

Documentation

A record representing a film.

main record

A record representing a film.

Record Key any Any valid record key

Properties

title string Required

The title of the film.

maxLength: 2048 bytesmaxGraphemes: 512 graphemes
workType string Required

Identifies this record as a film.

maxLength: 64 bytesmaxGraphemes: 64 graphemes
year integer Optional

The year the film was released.

minimum: 1800maximum: 2199
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."
}

Lexicon Garden

@