INN (DCI)
International Nonproprietary Names (INN/DCI) for pharmaceutical substances.
Records: 9,609 | Last Updated: Jun 5, 2026
Schema
Section titled “Schema”| Field | Type | Format |
|---|---|---|
codigo | string | - |
nombre | string | - |
habilitado | boolean | - |
fechaHoraActualizacion | string | date-time |
id | number | - |
estadoEntidad | boolean | - |
Sample Data
Section titled “Sample Data”[ { "codigo": "1", "nombre": "HIDRALAZINA", "habilitado": true, "fechaHoraActualizacion": "2026-06-05T18:45:58.4", "id": 903210505, "estadoEntidad": true }]Usage Example
Section titled “Usage Example”TypeScript/JavaScript
Section titled “TypeScript/JavaScript”// Fetch from CDNconst data = await fetch('https://cdn-minsalud.pahventure.com/ref/Rips.REFs_DCI.json') .then(res => res.json());
// TypeScript interface (generated from schema)interface RipsREFsDCI { codigo: string; nombre: string; habilitado: boolean; fechaHoraActualizacion: string; id: number; estadoEntidad: boolean;}
// Use the dataconst records: RipsREFsDCI[] = data;