Facebook Business Manager · Schema
AdCreative
AdvertisingAnalyticsBusiness ManagementMarketingSocial Media
Properties
| Name | Type | Description |
|---|---|---|
| id | string | The ID of the ad creative |
| name | string | The name of the ad creative |
| object_story_spec | object | Specification for the story that will appear in the ad, including page ID, link data, and media. |
| title | string | The title of the ad |
| body | string | The body text of the ad |
| image_url | string | URL of the ad image |
| call_to_action_type | string | The call-to-action button type |
| link_url | string | Destination URL for the ad |
| url_tags | string | URL tags for tracking parameters |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/AdCreative",
"title": "AdCreative",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The ID of the ad creative"
},
"name": {
"type": "string",
"description": "The name of the ad creative"
},
"object_story_spec": {
"type": "object",
"description": "Specification for the story that will appear in the ad, including page ID, link data, and media."
},
"title": {
"type": "string",
"description": "The title of the ad"
},
"body": {
"type": "string",
"description": "The body text of the ad"
},
"image_url": {
"type": "string",
"format": "uri",
"description": "URL of the ad image"
},
"call_to_action_type": {
"type": "string",
"description": "The call-to-action button type",
"enum": [
"LEARN_MORE",
"SHOP_NOW",
"SIGN_UP",
"BOOK_NOW",
"DOWNLOAD",
"GET_OFFER",
"CONTACT_US",
"SUBSCRIBE"
]
},
"link_url": {
"type": "string",
"format": "uri",
"description": "Destination URL for the ad"
},
"url_tags": {
"type": "string",
"description": "URL tags for tracking parameters"
}
}
}