PricingPlanCreate

BillingEnterpriseOrder to CashRevenue ManagementSAPSubscription ManagementUsage-Based Pricing

Properties

Name Type Description
name string
description string
serviceType string
pricingModel string
effectiveFrom string
effectiveTo string
currency string
View JSON Schema on GitHub

JSON Schema

sap-brim-billing-and-revenue-innovation-management-pricingplancreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PricingPlanCreate",
  "title": "PricingPlanCreate",
  "type": "object",
  "required": [
    "name",
    "serviceType",
    "pricingModel",
    "effectiveFrom",
    "currency"
  ],
  "properties": {
    "name": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "serviceType": {
      "type": "string"
    },
    "pricingModel": {
      "type": "string",
      "enum": [
        "FLAT",
        "TIERED",
        "VOLUME",
        "STAIRCASE",
        "PERCENTAGE"
      ]
    },
    "effectiveFrom": {
      "type": "string",
      "format": "date"
    },
    "effectiveTo": {
      "type": "string",
      "format": "date"
    },
    "currency": {
      "type": "string",
      "pattern": "^[A-Z]{3}$"
    }
  }
}