Snapchat · Schema

AppData

App-specific data for mobile app conversion events.

AdvertisingARAugmented RealityMarketingMessagingSocial Media

Properties

Name Type Description
advertiser_tracking_enabled boolean Whether the user has enabled advertiser tracking.
application_tracking_enabled boolean Whether the app has tracking enabled.
extinfo array Extended device information array.
View JSON Schema on GitHub

JSON Schema

snapchat-appdata-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AppData",
  "title": "AppData",
  "type": "object",
  "description": "App-specific data for mobile app conversion events.",
  "properties": {
    "advertiser_tracking_enabled": {
      "type": "boolean",
      "description": "Whether the user has enabled advertiser tracking."
    },
    "application_tracking_enabled": {
      "type": "boolean",
      "description": "Whether the app has tracking enabled."
    },
    "extinfo": {
      "type": "array",
      "description": "Extended device information array.",
      "items": {
        "type": "string"
      }
    }
  }
}