addonscript-spec/docs/concepts/namespaces.md
Timo Ley 27d2e57c51
All checks were successful
continuous-integration/drone/pr Build is passing
Rename addon.md to manifest.md
2022-08-31 16:11:10 +02:00

1.3 KiB

Namespaces

Namespaces are used in conjunction with addon IDs to uniquely identify an addon.

Format

Namespaces may only contain lowercase alphanumeric characters, hyphens (should be avoided) and dots. They should be in a reversed domain name format. A namespace should specify the distribution source (i.e. com.example.repository) or the author (i.e. com.author.website) of the addon and optionally also the addon type (i.e. com.example.repository.mods, com.author.website.modpacks).

Canonical Namespaces

While an addon can have multiple namespaces, it must have exactly one canonical namespace, which is defined in the addon manifest. An API instance must also return the canonical namespace of the addon on the addon endpoint even if the addon was requested from another namespace. To check, if two addons are the same addon, thier canonical namespace and their ID must be equal.

Default Namespaces

Each API instance has a default namespace. Addons in the repository of that API instance should have that namespace, as long as there are no ID conflicts in the repository. The default namespace does not need to be the canonical namespace of these addons.