Adobe Launch · Schema
CompanyAttributes
Data CollectionEdge NetworkEvent ForwardingMarketing TechnologyTag Management
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The name of the company. |
| org_id | string | The Adobe organization ID. |
| token | string | A unique token for the company. |
| created_at | string | When the company was created. |
| updated_at | string | When the company was last updated. |
| cjm_enabled | boolean | Whether Customer Journey Management is enabled. |
| edge_enabled | boolean | Whether Edge capabilities are enabled. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "CompanyAttributes",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "The name of the company."
},
"org_id": {
"type": "string",
"description": "The Adobe organization ID."
},
"token": {
"type": "string",
"description": "A unique token for the company."
},
"created_at": {
"type": "string",
"description": "When the company was created."
},
"updated_at": {
"type": "string",
"description": "When the company was last updated."
},
"cjm_enabled": {
"type": "boolean",
"description": "Whether Customer Journey Management is enabled."
},
"edge_enabled": {
"type": "boolean",
"description": "Whether Edge capabilities are enabled."
}
}
}