RateCard

BillingEnterpriseOrder to CashRevenue ManagementSAPSubscription ManagementUsage-Based Pricing

Properties

Name Type Description
rateCardId string
name string
unit string Unit of measurement
baseRate number
tiers array
effectiveFrom string
effectiveTo string
View JSON Schema on GitHub

JSON Schema

sap-brim-billing-and-revenue-innovation-management-ratecard-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RateCard",
  "title": "RateCard",
  "type": "object",
  "properties": {
    "rateCardId": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "unit": {
      "type": "string",
      "description": "Unit of measurement"
    },
    "baseRate": {
      "type": "number",
      "format": "double"
    },
    "tiers": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/PricingTier"
      }
    },
    "effectiveFrom": {
      "type": "string",
      "format": "date"
    },
    "effectiveTo": {
      "type": "string",
      "format": "date"
    }
  }
}