Unified.to · Schema

AdsTarget

Targeting search result (for ads_target list endpoint)

IntegrationsUnified API

Properties

Name Type Description
id string
is_active boolean
name string
parent_id string
raw object
type string
View JSON Schema on GitHub

JSON Schema

unified-to-adstarget-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AdsTarget",
  "title": "AdsTarget",
  "description": "Targeting search result (for ads_target list endpoint)",
  "properties": {
    "id": {
      "type": "string"
    },
    "is_active": {
      "type": "boolean"
    },
    "name": {
      "type": "string"
    },
    "parent_id": {
      "type": "string"
    },
    "raw": {
      "additionalProperties": true,
      "type": "object"
    },
    "type": {
      "enum": [
        "INTEREST",
        "BEHAVIOR",
        "LOCALE",
        "COUNTRY",
        "REGION",
        "CITY",
        "ZIP",
        "US_DMA",
        "TOPIC",
        "USER_LIST",
        "AGE_RANGE",
        "GENDER",
        "CARRIER",
        "DEVICE_MODEL",
        "OS_VERSION"
      ],
      "type": "string",
      "x-speakeasy-unknown-values": "allow"
    }
  },
  "required": [
    "id"
  ],
  "type": "object"
}