Bolt · Schema

marketplace-commission-fee

CheckoutPaymentseCommerceOne-Click CheckoutShopper NetworkFraud Protection

Properties

Name Type Description
bps integer
flat_cents integer
metadata object
View JSON Schema on GitHub

JSON Schema

marketplace-commission-fee.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api.bolt.com/schemas/marketplace-commission-fee",
  "title": "marketplace-commission-fee",
  "properties": {
    "bps": {
      "format": "int64",
      "type": "integer",
      "example": 100
    },
    "flat_cents": {
      "format": "int64",
      "type": "integer",
      "example": 100
    },
    "metadata": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      },
      "nullable": true,
      "example": {
        "plan_type": "pro",
        "tier": "premium",
        "region": "us-east-1"
      }
    }
  },
  "type": "object"
}