Pharmaceutical Form
Pharmaceutical dosage forms catalog (tablets, capsules, injections, etc.).
Records: 47 | Last Updated: Feb 26, 2024
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": "C28944", "nombre": "CREMA", "habilitado": true, "fechaHoraActualizacion": "2023-08-14T16:06:24.03", "id": 790492449, "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_FFM.json') .then(res => res.json());
// TypeScript interface (generated from schema)interface RipsREFsFFM { codigo: string; nombre: string; habilitado: boolean; fechaHoraActualizacion: string; id: number; estadoEntidad: boolean;}
// Use the dataconst records: RipsREFsFFM[] = data;