AuthorizationResponse

BillingEnterpriseOrder to CashRevenue ManagementSAPSubscription ManagementUsage-Based Pricing

Properties

Name Type Description
authorizationId string
accountId string
reservedAmount object
status string
expiresAt string
createdAt string
View JSON Schema on GitHub

JSON Schema

sap-brim-billing-and-revenue-innovation-management-authorizationresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AuthorizationResponse",
  "title": "AuthorizationResponse",
  "type": "object",
  "properties": {
    "authorizationId": {
      "type": "string",
      "format": "uuid"
    },
    "accountId": {
      "type": "string"
    },
    "reservedAmount": {
      "$ref": "#/components/schemas/MonetaryAmount"
    },
    "status": {
      "type": "string",
      "enum": [
        "AUTHORIZED",
        "EXPIRED",
        "CONFIRMED",
        "RELEASED"
      ]
    },
    "expiresAt": {
      "type": "string",
      "format": "date-time"
    },
    "createdAt": {
      "type": "string",
      "format": "date-time"
    }
  }
}