User Type
Patient type classification (contributory, subsidized, special regimes) for RIPS Version 2.
Records: 13 | Last Updated: Sep 21, 2024
Schema
Section titled “Schema”| Field | Type | Format |
|---|---|---|
codigo | string | - |
nombre | string | - |
extra_I | string/null | - |
extra_II | string/null | - |
extra_III | string/null | - |
extra_IV | string/null | - |
fechaHoraActualizacion | string | date-time |
id | number | - |
estadoEntidad | boolean | - |
Sample Data
Section titled “Sample Data”[ { "codigo": "01", "nombre": "Contributivo cotizante", "extra_I": null, "extra_II": null, "extra_III": null, "extra_IV": null, "fechaHoraActualizacion": "2024-09-21T18:27:32.6433333", "id": 1297104055, "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_TipoUsuarioVersion2.json') .then(res => res.json());
// TypeScript interface (generated from schema)interface RipsREFsTipoUsuarioVersion2 { codigo: string; nombre: string; extra_I: string | null; extra_II: string | null; extra_III: string | null; extra_IV: string | null; fechaHoraActualizacion: string; id: number; estadoEntidad: boolean;}
// Use the dataconst records: RipsREFsTipoUsuarioVersion2[] = data;