RevContent · Schema
ContentItem
A RevContent ad content item associated with a boost, including performance metrics.
Native AdvertisingContent RecommendationAd NetworkPublisher MonetizationProgrammatic Advertising
Properties
| Name | Type | Description |
|---|---|---|
| content_id | integer | Unique content item identifier |
| boost_id | integer | Identifier of the parent boost |
| headline | string | Ad content headline text |
| image_url | string | URL of the content image |
| impressions | integer | Total impressions served |
| clicks | integer | Total clicks recorded |
| ctr | number | Click-through rate (clicks / impressions) |
| spend | number | Total spend in USD |
| conversions | integer | Total conversions attributed |
| cost_per_conversion | number | Average cost per conversion in USD |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://api.revcontent.io/schemas/content-item",
"title": "ContentItem",
"description": "A RevContent ad content item associated with a boost, including performance metrics.",
"type": "object",
"properties": {
"content_id": {
"type": "integer",
"description": "Unique content item identifier"
},
"boost_id": {
"type": "integer",
"description": "Identifier of the parent boost"
},
"headline": {
"type": "string",
"description": "Ad content headline text"
},
"image_url": {
"type": "string",
"format": "uri",
"description": "URL of the content image"
},
"impressions": {
"type": "integer",
"minimum": 0,
"description": "Total impressions served"
},
"clicks": {
"type": "integer",
"minimum": 0,
"description": "Total clicks recorded"
},
"ctr": {
"type": "number",
"minimum": 0,
"description": "Click-through rate (clicks / impressions)"
},
"spend": {
"type": "number",
"minimum": 0,
"description": "Total spend in USD"
},
"conversions": {
"type": "integer",
"minimum": 0,
"description": "Total conversions attributed"
},
"cost_per_conversion": {
"type": "number",
"minimum": 0,
"description": "Average cost per conversion in USD"
}
},
"required": ["content_id", "boost_id"]
}