Adobe Launch · Schema
ExtensionPackageAttributes
Data CollectionEdge NetworkEvent ForwardingMarketing TechnologyTag Management
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The unique name of the extension package. |
| display_name | string | The human-readable display name. |
| description | string | A description of the extension package capabilities. |
| version | string | The current version using semantic versioning. |
| platform | string | The platform the extension supports. |
| author | object | Information about the extension package author. |
| availability | string | The availability level of the extension package. |
| discontinued | boolean | Whether the extension package has been discontinued. |
| status | string | The current processing status. |
| exchange_url | string | The URL on Adobe Exchange for public extensions. |
| icon_path | string | Path to the extension icon within the package. |
| created_at | string | |
| updated_at | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "ExtensionPackageAttributes",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "The unique name of the extension package."
},
"display_name": {
"type": "string",
"description": "The human-readable display name."
},
"description": {
"type": "string",
"description": "A description of the extension package capabilities."
},
"version": {
"type": "string",
"description": "The current version using semantic versioning."
},
"platform": {
"type": "string",
"description": "The platform the extension supports."
},
"author": {
"type": "object",
"description": "Information about the extension package author."
},
"availability": {
"type": "string",
"description": "The availability level of the extension package."
},
"discontinued": {
"type": "boolean",
"description": "Whether the extension package has been discontinued."
},
"status": {
"type": "string",
"description": "The current processing status."
},
"exchange_url": {
"type": "string",
"description": "The URL on Adobe Exchange for public extensions."
},
"icon_path": {
"type": "string",
"description": "Path to the extension icon within the package."
},
"created_at": {
"type": "string"
},
"updated_at": {
"type": "string"
}
}
}