Discogs · JSON Structure

Discogs Orders Response Structure

Paginated marketplace orders for the authenticated seller.

Type: object Properties: 2
MusicMarketplaceCatalogCommunityVinylPublic APIs

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

Properties

pagination orders

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-orders-response-structure.json",
  "name": "OrdersResponse",
  "description": "Paginated marketplace orders for the authenticated seller.",
  "type": "object",
  "properties": {
    "pagination": {
      "$ref": "#/components/schemas/Pagination"
    },
    "orders": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Order"
      }
    }
  }
}