Adobe Campaign · Schema

OrgUnit

OrgUnit from Adobe Campaign API

Campaign ManagementCustomer ExperienceEmail MarketingMarketing AutomationMulti-Channel Marketing

Properties

Name Type Description
PKey string Unique identifier for the organizational unit.
name string Internal name of the organizational unit.
label string Display label of the organizational unit.
parentTitle string Label of the parent organizational unit.
View JSON Schema on GitHub

JSON Schema

adobe-campaign-standard-org-unit-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adobe-campaign/refs/heads/main/json-schema/adobe-campaign-standard-org-unit-schema.json",
  "title": "OrgUnit",
  "description": "OrgUnit from Adobe Campaign API",
  "type": "object",
  "properties": {
    "PKey": {
      "type": "string",
      "description": "Unique identifier for the organizational unit.",
      "example": "example_value"
    },
    "name": {
      "type": "string",
      "description": "Internal name of the organizational unit.",
      "example": "Example Campaign"
    },
    "label": {
      "type": "string",
      "description": "Display label of the organizational unit.",
      "example": "Example Campaign"
    },
    "parentTitle": {
      "type": "string",
      "description": "Label of the parent organizational unit.",
      "example": "example_value"
    }
  }
}