{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/ampersand/refs/heads/main/json-schema/ampersand-api-billing-account-schema.json", "title": "BillingAccount", "description": "BillingAccount schema from Ampersand API", "type": "object", "properties": { "id": { "type": "string", "description": "The billing account ID.", "example": "billing-account-123" }, "displayName": { "type": "string", "description": "The display name of the billing account.", "example": "Acme Inc" }, "billingProvider": { "type": "string", "description": "The billing provider that this account is associated with.", "example": "stripe" }, "billingProviderRef": { "type": "string", "description": "The ID used by the billing provider to identify the account.", "example": "acct_1J2k3l4m5n6o7p8q9r0s" }, "createTime": { "type": "string", "description": "The time the billing account was created.", "format": "date-time" }, "updateTime": { "type": "string", "description": "The time the billing account was last updated.", "format": "date-time" } }, "required": [ "id", "displayName", "billingProvider", "billingProviderRef" ] }