TheTVDB · Schema

Tag

tag record

EntertainmentMoviesTelevisionMedia MetadataPublic APIsVideo

Properties

Name Type Description
allowsMultiple boolean
helpText string
id integer
name string
options array
View JSON Schema on GitHub

JSON Schema

tvdb-tag-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-schema.json",
  "title": "Tag",
  "description": "tag record",
  "properties": {
    "allowsMultiple": {
      "type": "boolean",
      "x-go-name": "AllowsMultiple",
      "example": true
    },
    "helpText": {
      "type": "string",
      "example": "example"
    },
    "id": {
      "format": "int64",
      "type": "integer",
      "x-go-name": "ID",
      "example": 12345
    },
    "name": {
      "type": "string",
      "x-go-name": "Name",
      "example": "Example Name"
    },
    "options": {
      "items": {
        "description": "tag option record",
        "properties": {
          "helpText": {
            "type": "string",
            "example": "example"
          },
          "id": {
            "format": "int64",
            "type": "integer",
            "x-go-name": "ID",
            "example": 12345
          },
          "name": {
            "type": "string",
            "x-go-name": "Name",
            "example": "Example Name"
          },
          "tag": {
            "format": "int64",
            "type": "integer",
            "x-go-name": "Tag",
            "example": 12345
          },
          "tagName": {
            "type": "string",
            "x-go-name": "TagName",
            "example": "example"
          }
        },
        "type": "object",
        "x-go-package": "github.com/whip-networks/tvdb-api-v4-core/tvdb-api-v4-core/pkg/model"
      },
      "type": "array",
      "x-go-name": "TagOptions"
    }
  },
  "type": "object"
}