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.

Important

Configuring requirements can be error prone. We strongly recommend that you familiarize yourself with Specify Office Add-in requirements in the unified manifest for Microsoft 365 and Understand the logic of API requirement configuration.

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"
    }
  ]
}