Coverage Plan
Health insurance coverage plan types and benefit categories.
Records: 15 | Last Updated: Dec 4, 2025
Schema
Section titled “Schema”| Field | Type | Format |
|---|---|---|
codigo | string | - |
nombre | string | - |
habilitado | string | - |
extra_I | string | - |
extra_II | string | - |
extra_III | string | - |
extra_IV | string | - |
fechaHoraActualizacion | string | date-time |
id | number | - |
estadoEntidad | boolean | - |
Sample Data
Section titled “Sample Data”[ { "codigo": "01", "nombre": "Plan de beneficios en salud financiado con UPC", "habilitado": "SI", "extra_I": "01,02,03,04", "extra_II": "01,02,03,04", "extra_III": "01,02,04,05", "extra_IV": "", "fechaHoraActualizacion": "2025-12-04T07:04:07.9733333", "id": 1678131297, "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_CoberturaPlan.json') .then(res => res.json());
// TypeScript interface (generated from schema)interface RipsREFsCoberturaPlan { codigo: string; nombre: string; habilitado: string; extra_I: string; extra_II: string; extra_III: string; extra_IV: string; fechaHoraActualizacion: string; id: number; estadoEntidad: boolean;}
// Use the dataconst records: RipsREFsCoberturaPlan[] = data;