LinkedIn · Schema

CreativeCreateRequest

BusinessCareersMarketingProfessional NetworkingRecruitingSocial MediaFortune 1000

Properties

Name Type Description
campaign string
reference string
status string
type string
variables object
View JSON Schema on GitHub

JSON Schema

linkedin-creativecreaterequest-schema.json Raw ↑
{
  "$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"
  ]
}