VTEX · Schema

Rate1

Rate cost information.

CommerceE-CommerceRetailMarketplacePayments

Properties

Name Type Description
shippingPrice object
insurancePrice object
View JSON Schema on GitHub

JSON Schema

vtex-rate1-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Rate1",
  "title": "Rate1",
  "required": [
    "shippingPrice",
    "insurancePrice"
  ],
  "type": "object",
  "description": "Rate cost information.",
  "properties": {
    "shippingPrice": {
      "$ref": "#/components/schemas/ShippingPrice1"
    },
    "insurancePrice": {
      "$ref": "#/components/schemas/InsurancePrice"
    }
  },
  "example": {
    "shippingPrice": {
      "value": 284.02,
      "currency": "USD"
    },
    "insurancePrice": {
      "value": 0,
      "currency": "USD"
    }
  }
}