Paginated marketplace orders for the authenticated seller.
{ "$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" } } } }