Other Services Type
Classification of other health services not covered in main categories.
Records: 6 | Last Updated: Nov 21, 2025
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": "01", "nombre": "DISPOSITIVOS MEDICOS E INSUMOS", "habilitado": true, "fechaHoraActualizacion": "2025-11-21T13:19:28.4", "id": 1297104083, "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_TipoOtrosServicios.json') .then(res => res.json());
// TypeScript interface (generated from schema)interface RipsREFsTipoOtrosServicios { codigo: string; nombre: string; habilitado: boolean; fechaHoraActualizacion: string; id: number; estadoEntidad: boolean;}
// Use the dataconst records: RipsREFsTipoOtrosServicios[] = data;