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 configuration settings.
enabled boolean Whether the extension is enabled.
published boolean
dirty boolean
revision_number integer
deleted_at string
created_at string
updated_at string
View JSON Schema on GitHub

JSON Schema

extension-extension-attributes-schema.json Raw ↑
{
  "$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 configuration settings."
    },
    "enabled": {
      "type": "boolean",
      "description": "Whether the extension is enabled."
    },
    "published": {
      "type": "boolean"
    },
    "dirty": {
      "type": "boolean"
    },
    "revision_number": {
      "type": "integer"
    },
    "deleted_at": {
      "type": "string"
    },
    "created_at": {
      "type": "string"
    },
    "updated_at": {
      "type": "string"
    }
  }
}