Documentation Center

Structure of a Content Manager Extension configuration in the Add-on manifest

An Extension configuration for Content Manager lists the name and type of the Extension, as well as any number of custom properties and their values.

A Content Manager Extension configuration has the following structure:
{
  "type": "EXTENSIONTYPE",
  "name": "EXTENSIONNAME",
  "properties": {
    "EXTENSIONPROPNAME": "EXTENSIONPROPVALUE"
  }
}
where:
  • EXTENSIONTYPE is the type of extension point you are extending using your Extension
  • EXTENSIONNAME is the name of the Extension
  • EXTENSIONPROPNAME is the name of a custom property for this Extension.
  • EXTENSIONPROPVALUE is the name of the value for that custom property.

Note that the properties section can contain any number of custom properties and their values.