SubscriptionItemCreate

BillingEnterpriseOrder to CashRevenue ManagementSAPSubscription ManagementUsage-Based Pricing

Properties

Name Type Description
productId string
quantity integer
billingType string
metadata object
View JSON Schema on GitHub

JSON Schema

sap-brim-billing-and-revenue-innovation-management-subscriptionitemcreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SubscriptionItemCreate",
  "title": "SubscriptionItemCreate",
  "type": "object",
  "required": [
    "productId",
    "quantity"
  ],
  "properties": {
    "productId": {
      "type": "string"
    },
    "quantity": {
      "type": "integer",
      "minimum": 1
    },
    "billingType": {
      "type": "string",
      "enum": [
        "RECURRING",
        "ONE_TIME",
        "USAGE_BASED"
      ]
    },
    "metadata": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      }
    }
  }
}