Unified.to · Schema

AdsKeyword

Content targeting (keywords, topics, placements, video)

IntegrationsUnified API

Properties

Name Type Description
match_type string
text string
View JSON Schema on GitHub

JSON Schema

unified-to-adskeyword-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AdsKeyword",
  "title": "AdsKeyword",
  "description": "Content targeting (keywords, topics, placements, video)",
  "properties": {
    "match_type": {
      "enum": [
        "BROAD",
        "PHRASE",
        "EXACT"
      ],
      "type": "string",
      "x-speakeasy-unknown-values": "allow"
    },
    "text": {
      "type": "string"
    }
  },
  "required": [
    "text"
  ],
  "type": "object"
}