action jellyfin_get_parental_ratings { label: "Gets known parental ratings." provider: jellyfin method: GET path: "/Localization/ParentalRatings" encoding: json output: { type: "array" items: { type: "object" description: "Class ParentalRating." properties: { Name: { type: "string" description: "Gets or sets the name." } Value: { type: "integer" format: "int32" description: "Gets or sets the value." } } additionalProperties: false } } }