Discogs · Schema

Identifier

Identifier schema from Discogs API

MusicMarketplaceCatalogCommunityVinylPublic APIs

Properties

Name Type Description
type string
value string
description string
View JSON Schema on GitHub

JSON Schema

discogs-identifier-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-identifier-schema.json",
  "title": "Identifier",
  "description": "Identifier schema from Discogs API",
  "type": "object",
  "properties": {
    "type": {
      "type": "string"
    },
    "value": {
      "type": "string",
      "nullable": true
    },
    "description": {
      "type": "string",
      "nullable": true
    }
  }
}