Amberflo · Schema

PricingPlanAssignment

Assignment of a pricing plan to a customer

Usage-Based BillingMeteringFinOpsAI Cost ManagementBillingMonetization

Properties

Name Type Description
customerId string Customer identifier
productId string Product or pricing plan identifier
startTime integer Plan start time in Unix milliseconds
View JSON Schema on GitHub

JSON Schema

billing-pricing-plan-assignment-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amberflo/refs/heads/main/json-schema/billing-pricing-plan-assignment-schema.json",
  "title": "PricingPlanAssignment",
  "description": "Assignment of a pricing plan to a customer",
  "type": "object",
  "properties": {
    "customerId": {
      "type": "string",
      "description": "Customer identifier",
      "example": "customer-123456"
    },
    "productId": {
      "type": "string",
      "description": "Product or pricing plan identifier",
      "example": "plan-standard"
    },
    "startTime": {
      "type": "integer",
      "format": "int64",
      "description": "Plan start time in Unix milliseconds",
      "example": 1718153645993
    }
  }
}