eBay · Schema

SimpleAmount

This type defines the monetary value of the payment dispute, and the currency used.

AuctionsCommerceProductsMarketplaceFortune 500

Properties

Name Type Description
currency string A three-letter ISO 4217 code (such as USD for US site) that indicates the currency of the amount in the value field. Both the value and currency<
value string The monetary amount of the payment dispute. Both the value and currency fields are always returned with the amount container.
View JSON Schema on GitHub

JSON Schema

ebay-simpleamount-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SimpleAmount",
  "title": "SimpleAmount",
  "type": "object",
  "properties": {
    "currency": {
      "type": "string",
      "description": "A three-letter ISO 4217 code (such as <code>USD</code> for US site) that indicates the currency of the amount in the <strong>value</strong> field. Both the <strong>value</strong> and <strong>currency</strong> fields are always returned with the <strong>amount</strong> container. For implementation help, refer to <a href='https://developer.ebay.com/api-docs/sell/fulfillment/types/ba:CurrencyCodeEnum'>eBay API documentation</a>"
    },
    "value": {
      "type": "string",
      "description": "The monetary amount of the payment dispute. Both the <strong>value</strong> and <strong>currency</strong> fields are always returned with the <strong>amount</strong> container."
    }
  },
  "description": "This type defines the monetary value of the payment dispute, and the currency used."
}