Unified.to · Schema

CommerceItemPrice

IntegrationsUnified API

Properties

Name Type Description
compare_at_price number
currency string
price number
View JSON Schema on GitHub

JSON Schema

unified-to-commerceitemprice-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CommerceItemPrice",
  "title": "CommerceItemPrice",
  "properties": {
    "compare_at_price": {
      "type": "number"
    },
    "currency": {
      "type": "string"
    },
    "price": {
      "type": "number"
    }
  },
  "required": [
    "price"
  ],
  "type": "object"
}