TheTVDB · Schema

ParentCompany

A parent company record

EntertainmentMoviesTelevisionMedia MetadataPublic APIsVideo

Properties

Name Type Description
id integer
name string
relation object A company relationship
View JSON Schema on GitHub

JSON Schema

tvdb-parent-company-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-parent-company-schema.json",
  "title": "ParentCompany",
  "description": "A parent company record",
  "properties": {
    "id": {
      "type": "integer",
      "nullable": true,
      "example": 12345
    },
    "name": {
      "type": "string",
      "example": "Example Name"
    },
    "relation": {
      "type": "object",
      "description": "A company relationship",
      "properties": {
        "id": {
          "type": "integer",
          "nullable": true,
          "example": 12345
        },
        "typeName": {
          "type": "string",
          "example": "example"
        }
      }
    }
  },
  "type": "object"
}