TheTVDB · Schema

TagOptionEntity

a entity with selected tag option

EntertainmentMoviesTelevisionMedia MetadataPublic APIsVideo

Properties

Name Type Description
name string
tagName string
tagId integer
View JSON Schema on GitHub

JSON Schema

tvdb-tag-option-entity-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-tag-option-entity-schema.json",
  "title": "TagOptionEntity",
  "description": "a entity with selected tag option",
  "properties": {
    "name": {
      "type": "string",
      "example": "Example Name"
    },
    "tagName": {
      "type": "string",
      "example": "example"
    },
    "tagId": {
      "type": "integer",
      "example": 12345
    }
  },
  "type": "object"
}