requirementsExtensionElement.capabilities object

Specifies the requirement sets and the minimum version necessary for your Add-in to function properly. This object determines your Add-in availability across different Office applications and versions, ensuring that your Add-in is only available on platforms that can support its features. To learn more, see how to specify your Add-in requirements in the manifest.

Properties that reference this object type:

Properties that reference this object type:

Properties that reference this object type:

Syntax

{
  "name": "{string}",
  "minVersion": "{string}",
  "maxVersion": "{string}"
}

Properties

name

Identifies the name of the requirement set.

Type
string

Required

Constraints
Maximum string length: 128.

Supported values

minVersion

Identifies the minimum version for the requirement set.

Type
string

Required

Constraints

Supported values

maxVersion

Identifies the maximum version for the requirement set.

Type
string

Required

Constraints

Supported values

Examples

{
  "capabilities": [
    {
      "name": "Mailbox",
      "minVersion": "1.1"
    }
  ]
}