Every HTLM5 ad must have its own manifest.json file that describe properties such as the width and height of the ad, possible landing page URL, etc. This file is examined when the ad is uploaded into our system, but is also used when testing your ads locally during development.

Example

{
  "title": "Example Ad",
  "description": "An example ad",
  "width": 728,
  "height": 90,
  "source": "index.html",
  "clicktags": {
    "clickTAG": "http://example.org"
  },
  "variables": {
    "color": "blue"
  }
}

Field Description

ParameterTypeRequiredDescription
widthnumberYesThe standard width of the ad (non-expanded)
heightnumberYesThe standard height of the ad (non-expanded)
sourcestringYesThe source HTML file name
titlestringNoThe name of the ad
descriptionstringNoA description of the ad
clicktagsobject<string, string>NoPredefined click tags used by the ad when clicked
variablesobject<string, string>NoOptional predefined variables used for configuring the ad. See API for more information