UsageEventDetail

BillingEnterpriseOrder to CashRevenue ManagementSAPSubscription ManagementUsage-Based Pricing

Properties

Name Type Description
eventId string
externalId string
subscriberId string
serviceType string
quantity number
unit string
usageTimestamp string
status string
ratingResult object
receivedAt string
processedAt string
View JSON Schema on GitHub

JSON Schema

sap-brim-billing-and-revenue-innovation-management-usageeventdetail-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UsageEventDetail",
  "title": "UsageEventDetail",
  "type": "object",
  "properties": {
    "eventId": {
      "type": "string",
      "format": "uuid"
    },
    "externalId": {
      "type": "string"
    },
    "subscriberId": {
      "type": "string"
    },
    "serviceType": {
      "type": "string"
    },
    "quantity": {
      "type": "number",
      "format": "double"
    },
    "unit": {
      "type": "string"
    },
    "usageTimestamp": {
      "type": "string",
      "format": "date-time"
    },
    "status": {
      "type": "string",
      "enum": [
        "ACCEPTED",
        "QUEUED",
        "RATED",
        "CHARGED",
        "FAILED"
      ]
    },
    "ratingResult": {
      "$ref": "#/components/schemas/RatingResponse"
    },
    "receivedAt": {
      "type": "string",
      "format": "date-time"
    },
    "processedAt": {
      "type": "string",
      "format": "date-time"
    }
  }
}