Discogs · Schema

OrdersResponse

Paginated marketplace orders for the authenticated seller.

MusicMarketplaceCatalogCommunityVinylPublic APIs

Properties

Name Type Description
pagination object
orders array
View JSON Schema on GitHub

JSON Schema

discogs-orders-response-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-orders-response-schema.json",
  "title": "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"
      }
    }
  }
}