Discogs · Schema

Contribution

A user's contribution to the Discogs database.

MusicMarketplaceCatalogCommunityVinylPublic APIs

Properties

Name Type Description
pagination object
contributions array
View JSON Schema on GitHub

JSON Schema

discogs-contribution-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-contribution-schema.json",
  "title": "Contribution",
  "description": "A user's contribution to the Discogs database.",
  "type": "object",
  "properties": {
    "pagination": {
      "$ref": "#/components/schemas/Pagination"
    },
    "contributions": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ReleaseSummary"
      }
    }
  }
}