LinkedIn · Schema
AdAccountCreateRequest
BusinessCareersMarketingProfessional NetworkingRecruitingSocial MediaFortune 1000
Properties
| Name | Type | Description |
|---|---|---|
| currency | string | |
| name | string | |
| notifiedOnCampaignOptimization | boolean | |
| notifiedOnCreativeApproval | boolean | |
| notifiedOnCreativeRejection | boolean | |
| notifiedOnEndOfCampaign | boolean | |
| reference | string | |
| type | string | |
| test | boolean |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/AdAccountCreateRequest",
"title": "AdAccountCreateRequest",
"type": "object",
"properties": {
"currency": {
"type": "string",
"example": "USD"
},
"name": {
"type": "string",
"example": "XYZ Company"
},
"notifiedOnCampaignOptimization": {
"type": "boolean",
"example": true
},
"notifiedOnCreativeApproval": {
"type": "boolean",
"example": true
},
"notifiedOnCreativeRejection": {
"type": "boolean",
"example": true
},
"notifiedOnEndOfCampaign": {
"type": "boolean",
"example": true
},
"reference": {
"type": "string",
"example": "urn:li:organization:12345678"
},
"type": {
"type": "string",
"enum": [
"BUSINESS",
"ENTERPRISE"
],
"example": "BUSINESS"
},
"test": {
"type": "boolean",
"example": true
}
},
"required": [
"currency",
"name",
"reference",
"type"
]
}