Discogs · Schema

ReleaseRating

Aggregate community rating for a release.

MusicMarketplaceCatalogCommunityVinylPublic APIs

Properties

Name Type Description
release_id integer
rating object
View JSON Schema on GitHub

JSON Schema

discogs-release-rating-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/discogs/refs/heads/main/json-schema/discogs-release-rating-schema.json",
  "title": "ReleaseRating",
  "description": "Aggregate community rating for a release.",
  "type": "object",
  "properties": {
    "release_id": {
      "type": "integer",
      "example": 249504
    },
    "rating": {
      "type": "object",
      "properties": {
        "count": {
          "type": "integer"
        },
        "average": {
          "type": "number"
        }
      }
    }
  }
}