Defines the namespace for your custom functions. A namespace prepends itself to your custom functions to help customers identify your functions as part of your add-in.
Properties that reference this object type:
Syntax
{
"id": "{string}",
"name": "{string}"
}
{
"type": "object",
"description": "Defines the namespace for your custom functions. A namespace prepends itself to your custom functions to help customers identify your functions as part of your add-in.",
"properties": {
"id": {
"type": "string",
"description": "Non-localizeable version of the namespace.",
"pattern": "^[A-Za-z][A-Za-z0-9._]*$",
"minLength": 1,
"maxLength": 32
},
"name": {
"type": "string",
"description": "Localizeable version of the namespace.",
"pattern": "^[A-Za-z][A-Za-z0-9._]*$",
"minLength": 1,
"maxLength": 32
}
},
"required": [
"id",
"name"
]
}
{
"id": "{string}",
"name": "{string}"
}
{
"type": "object",
"description": "Defines the namespace for your custom functions. A namespace prepends itself to your custom functions to help customers identify your functions as part of your add-in.",
"properties": {
"id": {
"type": "string",
"description": "Non-localizable version of the namespace.",
"pattern": "^[A-Za-z][A-Za-z0-9._]*$",
"minLength": 1,
"maxLength": 32
},
"name": {
"type": "string",
"description": "Localizable version of the namespace.",
"pattern": "^[A-Za-z][A-Za-z0-9._]*$",
"minLength": 1,
"maxLength": 32
}
},
"required": [
"id",
"name"
]
}
Properties
id
Non-localizeable version of the namespace.
Constraints
Minimum string length: 1. Maximum string length: 32.
Supported values
The string value must start with a letter and can contain only letters, numbers, periods, and underscores.
name
Localizeable version of the namespace.
This property is localizable. For more information, see the localization schema.
Constraints
Minimum string length: 1. Maximum string length: 32.
Supported values
The string value must start with a letter and can contain only letters, numbers, periods, and underscores.
name
Localizeable version of the namespace.
Constraints
Minimum string length: 1. Maximum string length: 32.
Supported values
The string value must start with a letter and can contain only letters, numbers, periods, and underscores.