The Movie Database · Schema

ReviewDetailsResponse

TMDB Reviews — Details (200 payload).

CatalogDiscoveryEntertainmentImagesMediaMetadataMoviesPeopleRecommendationsReviewsSearchStreamingTrendingTVVideoWatch Providers

Properties

Name Type Description
id string
author string
author_details object
content string
created_at string
iso_639_1 string
media_id integer
media_title string
media_type string
updated_at string
url string
View JSON Schema on GitHub

JSON Schema

tmdb-api-review-details-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/tmdb/refs/heads/main/json-schema/tmdb-api-review-details-response-schema.json",
  "title": "ReviewDetailsResponse",
  "description": "TMDB Reviews \u2014 Details (200 payload).",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "examples": [
        "640b2aeecaaca20079decdcc"
      ]
    },
    "author": {
      "type": "string",
      "examples": [
        "Ricardo Oliveira"
      ]
    },
    "author_details": {
      "type": "object",
      "properties": {
        "name": {
          "type": "string",
          "examples": [
            "Ricardo Oliveira"
          ]
        },
        "username": {
          "type": "string",
          "examples": [
            "RSOliveira"
          ]
        },
        "avatar_path": {
          "type": "string",
          "examples": [
            "/23Cl7rhsknc7IIAcZZAGKzovjTu.jpg"
          ]
        },
        "rating": {
          "type": "integer",
          "examples": [
            9
          ],
          "default": 0
        }
      }
    },
    "content": {
      "type": "string",
      "examples": [
        "\"The Last of Us\" is a post-apocalyptic TV series based on the popular video game of the same name. The story follows the journey of Joel, a smuggler, and Ellie, a teenage girl who may be the key to finding a cure for a deadly fungal infection that has ravaged the world.\r\n\r\nThe series features outstanding performances from Pedro Pascal as Joel, Bella Ramsey as Ellie, and Anna Torv as Tess. The chemistry between the main characters is excellent, and the casting is spot-on.\r\n\r\nThe show's writing is superb, and it captures the essence of the video game while adding a fresh perspective. The narrative is engaging, and the pacing is just right, with each episode leaving you on the edge of your seat, eager to see what happens next.\r\n\r\nThe show's production value is top-notch, with stunning visuals and cinematography that capture the bleak and haunting atmosphere of a post-apocalyptic world. The use of practical effects and makeup is impressive and adds to the overall immersion of the story.\r\n\r\nOverall, \"The Last of Us\" is an outstanding TV series that does justice to the source material. It's a must-watch for fans of the video game and anyone who enjoys gripping and emotional storytelling. I would rate it a 9 out of 10.\r\n\r\n \r\n\r\nWritten and Reviewed by RSOliveira"
      ]
    },
    "created_at": {
      "type": "string",
      "examples": [
        "2023-03-10T13:04:46.674Z"
      ]
    },
    "iso_639_1": {
      "type": "string",
      "examples": [
        "en"
      ]
    },
    "media_id": {
      "type": "integer",
      "examples": [
        100088
      ],
      "default": 0
    },
    "media_title": {
      "type": "string",
      "examples": [
        "The Last of Us"
      ]
    },
    "media_type": {
      "type": "string",
      "examples": [
        "tv"
      ]
    },
    "updated_at": {
      "type": "string",
      "examples": [
        "2023-03-10T13:04:46.734Z"
      ]
    },
    "url": {
      "type": "string",
      "examples": [
        "https://www.themoviedb.org/review/640b2aeecaaca20079decdcc"
      ]
    }
  }
}