TheTVDB · Schema

Release

release record

EntertainmentMoviesTelevisionMedia MetadataPublic APIsVideo

Properties

Name Type Description
country string
date string
detail string
View JSON Schema on GitHub

JSON Schema

tvdb-release-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-release-schema.json",
  "title": "Release",
  "description": "release record",
  "properties": {
    "country": {
      "type": "string",
      "example": "usa"
    },
    "date": {
      "type": "string",
      "example": "2024-01-15"
    },
    "detail": {
      "type": "string",
      "example": "example"
    }
  },
  "type": "object"
}