MonetaryAmount

BillingEnterpriseOrder to CashRevenue ManagementSAPSubscription ManagementUsage-Based Pricing

Properties

Name Type Description
value number The monetary value
currency string ISO 4217 currency code
View JSON Schema on GitHub

JSON Schema

sap-brim-billing-and-revenue-innovation-management-monetaryamount-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MonetaryAmount",
  "title": "MonetaryAmount",
  "type": "object",
  "required": [
    "value",
    "currency"
  ],
  "properties": {
    "value": {
      "type": "number",
      "format": "double",
      "description": "The monetary value"
    },
    "currency": {
      "type": "string",
      "pattern": "^[A-Z]{3}$",
      "description": "ISO 4217 currency code"
    }
  }
}