Discogs · JSON Structure

Discogs Order Structure

A marketplace order.

Type: object Properties: 17
MusicMarketplaceCatalogCommunityVinylPublic APIs

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

Properties

id resource_url status next_status fee created items shipping shipping_address additional_instructions archived seller buyer total messages_url uri last_activity

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-order-structure.json",
  "name": "Order",
  "description": "A marketplace order.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "example": "1-1"
    },
    "resource_url": {
      "type": "uri"
    },
    "status": {
      "type": "string",
      "example": "Payment Received"
    },
    "next_status": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "fee": {
      "$ref": "#/components/schemas/Price"
    },
    "created": {
      "type": "datetime"
    },
    "items": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Listing"
      }
    },
    "shipping": {
      "$ref": "#/components/schemas/Price"
    },
    "shipping_address": {
      "type": "string"
    },
    "additional_instructions": {
      "type": "string"
    },
    "archived": {
      "type": "boolean"
    },
    "seller": {
      "$ref": "#/components/schemas/UserSummary"
    },
    "buyer": {
      "$ref": "#/components/schemas/UserSummary"
    },
    "total": {
      "$ref": "#/components/schemas/Price"
    },
    "messages_url": {
      "type": "uri"
    },
    "uri": {
      "type": "uri"
    },
    "last_activity": {
      "type": "datetime"
    }
  }
}