The Movie Database · JSON Structure

Tmdb Api Changes People List Response Structure

TMDB People — People List (200 payload).

Type: object Properties: 4
CatalogDiscoveryEntertainmentImagesMediaMetadataMoviesPeopleRecommendationsReviewsSearchStreamingTrendingTVVideoWatch Providers

ChangesPeopleListResponse is a JSON Structure definition published by The Movie Database, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

results page total_pages total_results

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/tmdb/refs/heads/main/json-structure/tmdb-api-changes-people-list-response-structure.json",
  "name": "ChangesPeopleListResponse",
  "description": "TMDB People \u2014 People List (200 payload).",
  "type": "object",
  "properties": {
    "results": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "int32",
            "examples": [
              4037513
            ],
            "default": 0
          },
          "adult": {
            "type": "boolean",
            "examples": [
              false
            ],
            "default": true
          }
        }
      }
    },
    "page": {
      "type": "int32",
      "examples": [
        1
      ],
      "default": 0
    },
    "total_pages": {
      "type": "int32",
      "examples": [
        53
      ],
      "default": 0
    },
    "total_results": {
      "type": "int32",
      "examples": [
        5292
      ],
      "default": 0
    }
  }
}