Facebook · Schema

CustomAudience

A custom audience for ad targeting.

Fortune 500AdvertisingContent PublishingMessagingSocial MediaSocial Networking

Properties

Name Type Description
id string Custom audience ID.
name string Audience name.
description string Audience description.
approximate_count integer Approximate audience size.
subtype string Audience subtype.
delivery_status object Audience delivery status.
View JSON Schema on GitHub

JSON Schema

facebook-customaudience-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CustomAudience",
  "title": "CustomAudience",
  "type": "object",
  "description": "A custom audience for ad targeting.",
  "properties": {
    "id": {
      "type": "string",
      "description": "Custom audience ID.",
      "example": "700001234567890"
    },
    "name": {
      "type": "string",
      "description": "Audience name.",
      "example": "Website Visitors Last 30 Days"
    },
    "description": {
      "type": "string",
      "description": "Audience description."
    },
    "approximate_count": {
      "type": "integer",
      "description": "Approximate audience size.",
      "example": 25000
    },
    "subtype": {
      "type": "string",
      "description": "Audience subtype.",
      "enum": [
        "CUSTOM",
        "LOOKALIKE",
        "WEBSITE"
      ]
    },
    "delivery_status": {
      "type": "object",
      "description": "Audience delivery status."
    }
  }
}