Facebook · Schema

AdAccount

A Facebook ad account.

Fortune 500AdvertisingContent PublishingMessagingSocial MediaSocial Networking

Properties

Name Type Description
id string Ad account ID prefixed with act_.
name string Account name.
account_status integer Account status code.
currency string Account currency code.
balance string Account balance.
spend_cap string Spend cap for the account.
View JSON Schema on GitHub

JSON Schema

facebook-adaccount-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AdAccount",
  "title": "AdAccount",
  "type": "object",
  "description": "A Facebook ad account.",
  "properties": {
    "id": {
      "type": "string",
      "description": "Ad account ID prefixed with act_.",
      "example": "act_123456789"
    },
    "name": {
      "type": "string",
      "description": "Account name.",
      "example": "My Ad Account"
    },
    "account_status": {
      "type": "integer",
      "description": "Account status code.",
      "example": 1
    },
    "currency": {
      "type": "string",
      "description": "Account currency code.",
      "example": "USD"
    },
    "balance": {
      "type": "string",
      "description": "Account balance.",
      "example": "500.00"
    },
    "spend_cap": {
      "type": "string",
      "description": "Spend cap for the account."
    }
  }
}