PricingTier

BillingEnterpriseOrder to CashRevenue ManagementSAPSubscription ManagementUsage-Based Pricing

Properties

Name Type Description
tierName string
fromQuantity number
toQuantity number Upper bound of the tier (null for unlimited)
ratePerUnit number
flatFee object
View JSON Schema on GitHub

JSON Schema

sap-brim-billing-and-revenue-innovation-management-pricingtier-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PricingTier",
  "title": "PricingTier",
  "type": "object",
  "required": [
    "fromQuantity",
    "ratePerUnit"
  ],
  "properties": {
    "tierName": {
      "type": "string"
    },
    "fromQuantity": {
      "type": "number",
      "format": "double"
    },
    "toQuantity": {
      "type": "number",
      "format": "double",
      "description": "Upper bound of the tier (null for unlimited)"
    },
    "ratePerUnit": {
      "type": "number",
      "format": "double"
    },
    "flatFee": {
      "$ref": "#/components/schemas/MonetaryAmount"
    }
  }
}