Etsy · JSON Structure

Open Api V3 Money Structure

A representation of an amount of money.

Type: object Properties: 3
MarketplaceEcommerceHandmadeListingsOrdersPaymentsReviewsShippingTaxonomyOAuth2

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

Properties

amount divisor currency_code

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/etsy/refs/heads/main/json-structure/open-api-v3-money-structure.json",
  "name": "Money",
  "description": "A representation of an amount of money.",
  "type": "object",
  "properties": {
    "amount": {
      "type": "int32",
      "description": "The amount of represented by this data.",
      "example": 2500
    },
    "divisor": {
      "type": "int32",
      "description": "The divisor to render the amount.",
      "minimum": 0,
      "example": 1
    },
    "currency_code": {
      "type": "string",
      "description": "The ISO currency code for this data.",
      "example": "USD"
    }
  }
}