{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Bidding",
"title": "Bidding",
"type": "object",
"properties": {
"auctionEndDate": {
"type": "string",
"description": "The date the auction will end."
},
"auctionStatus": {
"type": "string",
"description": "An enumeration value that represents the current state of the auction, such as ACTIVE or ENDED.
If this value is ENDED and the value of highBidder is true, this indicates the buyer has won the auction. For implementation help, refer to eBay API documentation"
},
"bidCount": {
"type": "integer",
"description": "The number of proxy bids that have been placed for the auction.",
"format": "int32"
},
"currentPrice": {
"description": "The amount of the highest bid, which is the current price of the item.",
"$ref": "#/components/schemas/Amount"
},
"currentProxyBid": {
"description": "The buyer's proxy bid, which is the maxAmount specified in the request. ",
"$ref": "#/components/schemas/ProxyBid"
},
"highBidder": {
"type": "boolean",
"description": "Indicates if the buyer is the highest bidder.
false, this indicates that either the buyer has not bid on this item or has been out-bid. true, this indicates the buyer is winning the auction and if the value of auctionStatus is ENDED, this indicates the buyer has won the auction.If the highest bid is not equal to or higher than the reserve price when the auction ends, the listing ends and the item is not sold.
Note: This is returned only for auctions that have a reserve price.
" }, "suggestedBidAmounts": { "type": "array", "description": "The suggested bid amount for the next bid. Note: These are generated suggestions and do not guarantee the buyer will win the bid. This means these suggestions do not take into account the max bid amount of other bidders. The buyer can be outbid even if they submit the highest suggested bid.", "items": { "$ref": "#/components/schemas/Amount" } } }, "description": "The type the defines the field for the auction details." }