Viewability Tag Item Object

NameModifiers & DefaultsTypeDescription
typeRequiredString

Possible values:
MOAT
IAS
GOOGLE_DCM
DOUBLE_VERIFY

Note: Use the Dictionary to fetch an up-to-date list of possible values.
The tag type (i.e. the vendor)
tagRequiredStringJS Tag

The following example illustrates the object schema:

{
   // ...  
   "viewability_tag": {
      "values": [
         {
            // Tag Item 1
         },
         {
            // Tag Item 2
         }
      ]
   }
   // ...  
}
{
   //...
   "viewability_tag": {
      "values": [
         {
            "tag": "<noscript class=...></noscript><script src=...></script>",
            "type": "MOAT"
         },
         {
            "tag": "<noscript class=...></noscript><script src=...></script>",
            "type": "IAS"
         }
      ]
   }
   //...
}