2022-09-10 16:56:51 +02:00
|
|
|
# Addon Descriptor Object
|
|
|
|
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"id": "addonid",
|
|
|
|
"namespace": "com.example",
|
|
|
|
"version": "1.0.0"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## Required properties
|
|
|
|
|
|
|
|
### id
|
|
|
|
|
|
|
|
This is the [ID](manifest.md#id) of the addon which this object describes.
|
|
|
|
|
|
|
|
### namespace
|
|
|
|
|
|
|
|
This is the [namespace](../concepts/namespaces.md) of the addon which this object describes.
|
2022-12-16 11:09:33 +01:00
|
|
|
It MUST be the [canonical namespace](../concepts/namespaces.md#canonical-namespaces).
|
2022-09-10 16:56:51 +02:00
|
|
|
|
|
|
|
### version
|
|
|
|
|
|
|
|
This is the [version](manifest.md#version) of the addon.
|