Adobe Launch · Schema
ExtensionAttributes
Data CollectionEdge NetworkEvent ForwardingMarketing TechnologyTag Management
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The unique name of the extension. |
| display_name | string | The human-readable display name. |
| version | string | The version of the installed extension. |
| delegate_descriptor_id | string | The descriptor ID for the extension configuration. |
| settings | string | A JSON-encoded string of settings. |
| enabled | boolean | Whether the extension is enabled. |
| published | boolean | |
| dirty | boolean | |
| revision_number | integer | |
| deleted_at | string | When the extension was deleted, if applicable. |
| created_at | string | |
| updated_at | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "ExtensionAttributes",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "The unique name of the extension."
},
"display_name": {
"type": "string",
"description": "The human-readable display name."
},
"version": {
"type": "string",
"description": "The version of the installed extension."
},
"delegate_descriptor_id": {
"type": "string",
"description": "The descriptor ID for the extension configuration."
},
"settings": {
"type": "string",
"description": "A JSON-encoded string of settings."
},
"enabled": {
"type": "boolean",
"description": "Whether the extension is enabled."
},
"published": {
"type": "boolean"
},
"dirty": {
"type": "boolean"
},
"revision_number": {
"type": "integer"
},
"deleted_at": {
"type": "string",
"description": "When the extension was deleted, if applicable."
},
"created_at": {
"type": "string"
},
"updated_at": {
"type": "string"
}
}
}