TheDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/nordicsemi/bluetooth-numbers-database/llms.txt
Use this file to discover all available pages before exploring further.
experimental/ directory in the Bluetooth Numbers Database repository contains datasets that are not yet part of the stable v1 API. Currently it holds two NFC manufacturer name files — useful for developers working with NFC tags who need to resolve NFC IC manufacturer identifiers to company names and countries. These files are maintained alongside the Bluetooth data but follow a separate, less formal release process.
Available Files
| File | Description |
|---|---|
nfc_one_byte_manufacturer_names.json | One-byte (single two-hex-digit) NFC IC manufacturer identifiers assigned to individual companies |
nfc_two_byte_manufacturer_names.json | Two-byte NFC IC manufacturer identifiers for companies registered in the extended range |
Data Structure
Both files share the same top-level structure: a JSON object with a single"manufacturer" key whose value is an array of manufacturer entries. Each entry in the array has the following fields:
Array of NFC IC manufacturer records. Each element describes one registered manufacturer.
Example — One-Byte Manufacturers
Example — Two-Byte Manufacturers
Accessing Experimental Data
Theexperimental/ directory is not exported from the npm package’s main index.js and is not included in the published npm package. The files field in package.json is ["*.js", "v*/*.json", "README.md", "LICENSE"] — the v* glob only matches directories whose names begin with v, so the experimental/ directory is excluded from the npm bundle entirely. You cannot require these files from an npm installation.
To access the experimental data you must either fetch it from the raw GitHub URL (any environment) or clone the repository and read the files directly from disk.
Raw GitHub URLs
Fetch directly from GitHub’s raw content CDN for any non-Node.js environment:Reading from a cloned repository (Node.js)
If you have cloned the repository locally, you can read the files directly from disk:Contributions and corrections to the NFC datasets are welcome via pull request, following the same process as the
v1 data. If you have a manufacturer entry that is missing or incorrect, open an issue or submit a PR directly to the repository at github.com/NordicSemiconductor/bluetooth-numbers-database.