{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "atomic_creative_update", "type": "object", "properties": { "name": { "type": "string", "minLength": 1, "maxLength": 256 }, "version": { "type": "integer", "format": "int32", "example": 3 }, "external_identifier": { "type": "string", "minLength": 1, "maxLength": 64, "nullable": true }, "width": { "type": "integer", "format": "int32", "example": 80 }, "height": { "type": "integer", "format": "int32", "example": 90 }, "concept_id": { "type": "integer", "nullable": true, "format": "int32", "example": 33 }, "status": { "type": "boolean" }, "archived": { "type": "boolean" }, "is_mraid": { "type": "boolean" }, "is_https": { "type": "boolean" }, "t1as": { "type": "boolean" }, "start_date": { "type": "string", "nullable": true, "format": "date-time" }, "end_date": { "type": "string", "nullable": true, "format": "date-time" }, "vast_version": { "type": "number", "format": "float", "minimum": 0, "maximum": 9.9, "nullable": true }, "is_audio": { "type": "boolean", "nullable": true }, "expansion_direction": { "type": "string", "maxLength": 19, "default": "NONRESTRICTED" }, "expansion_trigger": { "type": "string", "enum": [ "AUTOMATIC", "MOUSEOVER", "CLICK" ], "default": "MOUSEOVER" }, "media_type": { "type": "string", "enum": [ "display", "video", "mobile" ] }, "ad_server_type": { "type": "string", "enum": [ "ADOCADO", "ATLAS", "DART", "DOUBLECLICK", "EYEWONDER", "FLASHTALKING", "MEDIAFORGE", "MEDIAMIND", "MEDIAPLEX", "OTHER", "POINTROLL", "SIZMEK", "TERMINALONE", "TRUEFFECT", "YIELD_MANAGER" ] }, "ad_format": { "type": "string", "enum": [ "DISPLAY", "MOBILE", "EXPANDABLE", "FBX", "COMPONENT" ], "default": "DISPLAY" }, "tpas_ad_tag": { "type": "string" }, "tpas_ad_tag_name": { "type": "string", "minLength": 1, "maxLength": 255 }, "click_through_url": { "type": "string", "maxLength": 2048, "format": "uri", "nullable": true }, "click_url": { "format": "uri", "type": "string", "maxLength": 10000, "nullable": true }, "edited_tag": { "type": "string" }, "tag": { "type": "string", "nullable": true }, "built_by_user_id": { "type": "integer", "readOnly": true }, "tag_type": { "type": "string", "enum": [ "IFRAME_SCRIPT_NOSCRIPT", "IFRAME_SCRIPT", "IFRAME_NOSCRIPT", "IFRAME_IMG", "SCRIPT_NOSCRIPT", "SCRIPT", "NOSCRIPT", "IFRAME", "IMG", "VIDEO" ] } } }