xyz.opnshelf.movie

opnshelf.xyz

Documentation

A tracked movie record for OpnShelf

main record

A tracked movie record for OpnShelf

Record Key tid Timestamp-based ID

Properties

createdAt string datetime Required

Record creation timestamp

movieId string Required

TMDB movie ID

source string Required

Source of the movie data (e.g., tmdb)

watchedAt string datetime Required

When the movie was watched

View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "movieId",
      "source",
      "watchedAt",
      "createdAt"
    ],
    "properties": {
      "source": {
        "type": "string",
        "description": "Source of the movie data (e.g., tmdb)"
      },
      "movieId": {
        "type": "string",
        "description": "TMDB movie ID"
      },
      "createdAt": {
        "type": "string",
        "format": "datetime",
        "description": "Record creation timestamp"
      },
      "watchedAt": {
        "type": "string",
        "format": "datetime",
        "description": "When the movie was watched"
      }
    }
  },
  "description": "A tracked movie record for OpnShelf"
}

Lexicon Garden

@