-
Notifications
You must be signed in to change notification settings - Fork 28
Description
Problem Statement
Creative agents need to generate assets that work within specific rendering constraints, but the current AdCP creative format schema doesn't provide a way for sales agents to declare these constraints. This creates a disconnect between what creatives are generated and what environments can actually render them.
Proposal
Add standardized rendering_context fields to the creative format schema that sales agents can use to declare technical constraints and capabilities of their rendering environments.
Suggested Schema Addition (to be discussed)
{
"rendering_context": {
"sandbox_level": "iframe|safeframe|fencedframe|native",
"javascript_enabled": boolean,
"external_resources_allowed": boolean,
"max_file_size_kb": number,
"allowed_domains": ["domain1.com", "domain2.com"],
"viewport_constraints": {
"min_width": number,
"max_width": number,
"min_height": number,
"max_height": number,
"aspect_ratio": "16:9|4:3|1:1|flexible"
}
}
}