Assignment of a pricing plan to a customer
{ "$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 } } }