2022-08-31 14:40:32 +02:00
|
|
|
# API Addon Object
|
|
|
|
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"id": "myaddon",
|
|
|
|
"namespace": "com.example",
|
|
|
|
"meta": {
|
|
|
|
"addon": {},
|
|
|
|
"additional": {}
|
|
|
|
},
|
|
|
|
"versions": [
|
|
|
|
"1.0"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## Required properties
|
|
|
|
|
|
|
|
### id
|
|
|
|
|
|
|
|
This is the ID of the addon.
|
|
|
|
|
2022-09-05 16:54:36 +02:00
|
|
|
It MUST only contains lowercase alphanumeric characters and hyphens and SHOULD be written in the `kebab-case` format.
|
2022-08-31 14:40:32 +02:00
|
|
|
|
|
|
|
### namespace
|
|
|
|
|
|
|
|
This is the [canonical namespace](../concepts/namespaces.md#canonical-namespaces) of the addon.
|
|
|
|
|
|
|
|
### versions
|
|
|
|
|
|
|
|
This is an array of all [version numbers](../concepts/versioning.md) of this addon, which are
|
|
|
|
available on this API instance.
|
|
|
|
|
|
|
|
## Optional properties
|
|
|
|
|
|
|
|
### meta
|
|
|
|
|
|
|
|
This is a [meta object](meta.md) containing metadata about the addon. It does not
|
|
|
|
contain any version specific metadata.
|