Common/video/v1.1/ParentalRating

Jump to: navigation, search

ParentalRating

Contains a movie or TV parental rating and the reasons for the rating.

Elements

NameTypeDescription
Rating Rating The rating.
RatingType ParentalRatingType Type of parental rating.
Reasons string [ ] Reasons associated with a rating.

XML Response Example

<ParentalRating>
  <ratingType>MPAA</ratingType>
  <rating>PG-13</rating>
  <reasons xmlns:a="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <a:string>SS</a:string>
    <a:string>SL</a:string>
    <a:string>V</a:string>
  </reasons>
</ParentalRating>

JSON Response Example

{
   "ratingType":"MPAA",
   "rating":"PG-13",
   "reasons":[
      "SS",
      "SL",
      "V"
   ]
}
 
Personal tools