Medication Unit of Measure
Units of measurement for medications (mg, ml, tablets, etc.).
Records: 273 | Last Updated: Dec 24, 2024
Schema
Section titled “Schema”| Field | Type | Format |
|---|---|---|
codigo | number | - |
nombre | string | - |
habilitado | boolean | - |
fechaHoraActualizacion | string | date-time |
id | number | - |
estadoEntidad | boolean | - |
Sample Data
Section titled “Sample Data”[ { "codigo": 1, "nombre": "EID50", "habilitado": true, "fechaHoraActualizacion": "2024-12-24T08:10:46.09", "id": 692008636, "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_UMM.json') .then(res => res.json());
// TypeScript interface (generated from schema)interface RipsREFsUMM { codigo: number; nombre: string; habilitado: boolean; fechaHoraActualizacion: string; id: number; estadoEntidad: boolean;}
// Use the dataconst records: RipsREFsUMM[] = data;