VTEX · Schema

InsurancePrice

Insurance cost information.

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
value integer Insurance cost in cents.
currency string Currency code in [ISO 4217](https://www.iban.com/currency-codes) format.
View JSON Schema on GitHub

JSON Schema

vtex-insuranceprice-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/InsurancePrice",
  "title": "InsurancePrice",
  "required": [
    "value",
    "currency"
  ],
  "type": "object",
  "description": "Insurance cost information.",
  "properties": {
    "value": {
      "type": "integer",
      "format": "int32",
      "description": "Insurance cost in cents."
    },
    "currency": {
      "type": "string",
      "description": "Currency code in [ISO 4217](https://www.iban.com/currency-codes) format."
    }
  },
  "example": {
    "value": 0,
    "currency": "USD"
  }
}