TheTVDB · JSON Structure

Tvdb Parent Company Structure

A parent company record

Type: object Properties: 3
EntertainmentMoviesTelevisionMedia MetadataPublic APIsVideo

ParentCompany is a JSON Structure definition published by TheTVDB, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id name relation

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/tvdb/refs/heads/main/json-structure/tvdb-parent-company-structure.json",
  "name": "ParentCompany",
  "description": "A parent company record",
  "properties": {
    "id": {
      "type": "int32",
      "nullable": true,
      "example": 12345
    },
    "name": {
      "type": "string",
      "example": "Example Name"
    },
    "relation": {
      "type": "object",
      "description": "A company relationship",
      "properties": {
        "id": {
          "type": "int32",
          "nullable": true,
          "example": 12345
        },
        "typeName": {
          "type": "string",
          "example": "example"
        }
      }
    }
  },
  "type": "object"
}