Discogs · JSON Structure

Discogs Inventory Export Structure

A marketplace inventory CSV export job.

Type: object Properties: 8
MusicMarketplaceCatalogCommunityVinylPublic APIs

InventoryExport is a JSON Structure definition published by Discogs, describing 8 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

status created_ts url finished_ts download_url filename id type

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/discogs/refs/heads/main/json-structure/discogs-inventory-export-structure.json",
  "name": "InventoryExport",
  "description": "A marketplace inventory CSV export job.",
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "enum": [
        "pending",
        "in progress",
        "success",
        "failure"
      ]
    },
    "created_ts": {
      "type": "datetime"
    },
    "url": {
      "type": "uri"
    },
    "finished_ts": {
      "type": "datetime"
    },
    "download_url": {
      "type": "uri"
    },
    "filename": {
      "type": "string",
      "example": "inventory-export.csv"
    },
    "id": {
      "type": "int32",
      "example": 599
    },
    "type": {
      "type": "string",
      "example": "export"
    }
  }
}