Amberflo · JSON Structure

Billing Pricing Plan Assignment Structure

Assignment of a pricing plan to a customer

Type: object Properties: 3
Usage-Based BillingMeteringFinOpsAI Cost ManagementBillingMonetization

PricingPlanAssignment is a JSON Structure definition published by Amberflo, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

customerId productId startTime

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amberflo/refs/heads/main/json-structure/billing-pricing-plan-assignment-structure.json",
  "name": "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": "int64",
      "description": "Plan start time in Unix milliseconds",
      "example": 1718153645993
    }
  }
}