{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "Conversions Get", "description": "Successful Response", "type": "object", "properties": { "metadata": { "type": "object", "properties": { "cursor": { "type": [ "null", "string" ], "description": "Use this cursor value in your next call to this endpoint to return the next set of items" }, "page_size": { "type": "integer" }, "total": { "type": "integer" } } }, "data": { "type": "array", "items": { "type": "object", "properties": { "conversion_id": { "type": "string", "description": "Identifies a single conversion." }, "name": { "type": "string" }, "external_source": { "type": "string", "enum": [ "gcm", "sizmek", "facebook", "adwords", "dsp", "upload", "linked_in", "ms_ads" ] }, "external_ref": { "type": "string" } } } } } }