These are drug names and identifiers used by the FDA SRS.
First download the data which should be in a TEXT format
wget https://fdasis.nlm.nih.gov/srs/download/srs/UNII_Data.zip
unzip UNII_Data.zip
rm UNII_Data.zip
rm "README UNII_Lists.txt"
for filename in UNII*txt
do
echo $filename
mv "$filename" "${filename// /_}";
done
Now use the general file loader to load this into GraphKB
node bin/load.js file fdaSrs UNII*.txt
⚠️ Since this file contains cross-reference mappings to NCIt, it is useful to load NCIt first.