Ampersand · JSON Structure

Ampersand Api Billing Account Structure

BillingAccount schema from Ampersand API

Type: object Properties: 6 Required: 4
Developer ToolsIntegrationsPlatformSaaSOAuthData SyncWebhooks

BillingAccount is a JSON Structure definition published by Ampersand, describing 6 properties, of which 4 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id displayName billingProvider billingProviderRef createTime updateTime

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/ampersand/refs/heads/main/json-structure/ampersand-api-billing-account-structure.json",
  "name": "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": "datetime",
      "description": "The time the billing account was created."
    },
    "updateTime": {
      "type": "datetime",
      "description": "The time the billing account was last updated."
    }
  },
  "required": [
    "id",
    "displayName",
    "billingProvider",
    "billingProviderRef"
  ]
}