AuthorizationRequest

BillingEnterpriseOrder to CashRevenue ManagementSAPSubscription ManagementUsage-Based Pricing

Properties

Name Type Description
accountId string
amount object
expiresIn integer Authorization expiry in seconds
serviceType string
description string
View JSON Schema on GitHub

JSON Schema

sap-brim-billing-and-revenue-innovation-management-authorizationrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AuthorizationRequest",
  "title": "AuthorizationRequest",
  "type": "object",
  "required": [
    "accountId",
    "amount"
  ],
  "properties": {
    "accountId": {
      "type": "string"
    },
    "amount": {
      "$ref": "#/components/schemas/MonetaryAmount"
    },
    "expiresIn": {
      "type": "integer",
      "description": "Authorization expiry in seconds",
      "default": 3600
    },
    "serviceType": {
      "type": "string"
    },
    "description": {
      "type": "string"
    }
  }
}