Discogs · Schema

Profile

Profile schema from Discogs API

MusicMarketplaceCatalogCommunityVinylPublic APIs

Properties

Name Type Description
id integer
username string
resource_url string
uri string
name string
home_page string
location string
profile string
registered string
rank number
num_pending integer
num_for_sale integer
num_collection integer
num_wantlist integer
num_lists integer
releases_contributed integer
releases_rated integer
rating_avg number
inventory_url string
collection_folders_url string
collection_fields_url string
wantlist_url string
avatar_url string
banner_url string
curr_abbr object
seller_rating number
seller_num_ratings integer
buyer_rating number
buyer_num_ratings integer
email string
View JSON Schema on GitHub

JSON Schema

discogs-profile-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-profile-schema.json",
  "title": "Profile",
  "description": "Profile schema from Discogs API",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "readOnly": true
    },
    "username": {
      "type": "string"
    },
    "resource_url": {
      "type": "string",
      "format": "uri",
      "readOnly": true
    },
    "uri": {
      "type": "string",
      "format": "uri",
      "readOnly": true
    },
    "name": {
      "type": "string",
      "nullable": true
    },
    "home_page": {
      "type": "string",
      "format": "uri",
      "nullable": true
    },
    "location": {
      "type": "string",
      "nullable": true
    },
    "profile": {
      "type": "string",
      "nullable": true
    },
    "registered": {
      "type": "string",
      "format": "date-time"
    },
    "rank": {
      "type": "number",
      "format": "float"
    },
    "num_pending": {
      "type": "integer"
    },
    "num_for_sale": {
      "type": "integer"
    },
    "num_collection": {
      "type": "integer"
    },
    "num_wantlist": {
      "type": "integer"
    },
    "num_lists": {
      "type": "integer"
    },
    "releases_contributed": {
      "type": "integer"
    },
    "releases_rated": {
      "type": "integer"
    },
    "rating_avg": {
      "type": "number",
      "format": "float"
    },
    "inventory_url": {
      "type": "string",
      "format": "uri"
    },
    "collection_folders_url": {
      "type": "string",
      "format": "uri"
    },
    "collection_fields_url": {
      "type": "string",
      "format": "uri"
    },
    "wantlist_url": {
      "type": "string",
      "format": "uri"
    },
    "avatar_url": {
      "type": "string",
      "format": "uri"
    },
    "banner_url": {
      "type": "string",
      "format": "uri",
      "nullable": true
    },
    "curr_abbr": {
      "$ref": "#/components/schemas/Currency"
    },
    "seller_rating": {
      "type": "number",
      "format": "float"
    },
    "seller_num_ratings": {
      "type": "integer"
    },
    "buyer_rating": {
      "type": "number",
      "format": "float"
    },
    "buyer_num_ratings": {
      "type": "integer"
    },
    "email": {
      "type": "string",
      "format": "email"
    }
  }
}