domain-datensatz
v2019.6.0
Published
JSON files with pharmaceutical products in switzerland
Downloads
37
Maintainers
Readme
Domain Datensatz
The following sources publish information about the available pharmaceutical products in Switzerland.
The files have been parsed and harmonized into json files. The documentation is available in German.
Get started
const { artikel } = require('domain-datensatz')
const result = Object.values(artikel).filter(item => {
return item.applw == 'aural'
})
.map(item => {
return item.name1
})
// [
// 'Otalgan, solution',
// 'Otothricinol, Suspension',
// 'Cerumenex, Tropfen',
// 'Panotile, gocce otologiche',
// 'Otipax, liquido',
// 'Polydexa, Ohrentropfen',
// 'Cerumenol, Tropfen',
// 'Otofa, Ohrentropfen',
// 'Otidolo, homöopathisch-spagyrische Tropfen',
// 'Similasan Ohrentropfen, Tropfen',
// 'Ciproxin HC, Ohrensuspension'
// ]
console.log(result)