{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CreativeCreateRequest", "title": "CreativeCreateRequest", "type": "object", "properties": { "campaign": { "type": "string", "example": "urn:li:sponsoredCampaign:444555666" }, "reference": { "type": "string", "example": "urn:li:ugcPost:123456789" }, "status": { "type": "string", "example": "ACTIVE" }, "type": { "type": "string", "example": "SPONSORED_VIDEO" }, "variables": { "type": "object", "properties": { "data": { "type": "object" } } } }, "required": [ "campaign", "reference", "status", "type" ] }