TheTVDB · Schema

Links

Links for next, previous and current record

EntertainmentMoviesTelevisionMedia MetadataPublic APIsVideo

Properties

Name Type Description
prev string
self string
next string
total_items integer
page_size integer
View JSON Schema on GitHub

JSON Schema

tvdb-links-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/tvdb/refs/heads/main/json-schema/tvdb-links-schema.json",
  "title": "Links",
  "description": "Links for next, previous and current record",
  "properties": {
    "prev": {
      "type": "string",
      "nullable": true,
      "example": "example"
    },
    "self": {
      "type": "string",
      "nullable": true,
      "example": "example"
    },
    "next": {
      "type": "string",
      "example": "example"
    },
    "total_items": {
      "type": "integer",
      "example": 1
    },
    "page_size": {
      "type": "integer",
      "example": 1
    }
  },
  "type": "object"
}