Services
Specific health services catalog and classifications.
Records: 157 | Last Updated: Feb 26, 2024
Schema
Section titled “Schema”| Field | Type | Format |
|---|---|---|
codigo | number | - |
nombre | string | - |
descripcion | string | - |
habilitado | boolean | - |
fechaHoraActualizacion | string | date-time |
id | number | - |
estadoEntidad | boolean | - |
Sample Data
Section titled “Sample Data”[ { "codigo": 105, "nombre": "CUIDADO INTERMEDIO NEONATAL", "descripcion": "INTERNACION", "habilitado": true, "fechaHoraActualizacion": "2022-09-02T11:06:33.74", "id": 1324628140, "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_Servicios.json') .then(res => res.json());
// TypeScript interface (generated from schema)interface RipsREFsServicios { codigo: number; nombre: string; descripcion: string; habilitado: boolean; fechaHoraActualizacion: string; id: number; estadoEntidad: boolean;}
// Use the dataconst records: RipsREFsServicios[] = data;