Consultation Purpose
Purpose of consultation or health technology application for RIPS Version 2.
Records: 34 | Last Updated: Aug 28, 2024
Schema
Section titled “Schema”| Field | Type | Format |
|---|---|---|
codigo | string | - |
nombre | string | - |
extra_I | boolean | - |
extra_II | boolean | - |
extra_VI | string | - |
extra_VII | number | - |
extra_VIII | number | - |
fechaHoraActualizacion | string | date-time |
id | number | - |
estadoEntidad | boolean | - |
Sample Data
Section titled “Sample Data”[ { "codigo": "12", "nombre": "DETECCION TEMPRANA DE ENFERMEDAD GENERAL", "extra_I": true, "extra_II": true, "extra_VI": "Z", "extra_VII": 0, "extra_VIII": 999, "fechaHoraActualizacion": "2024-08-27T22:11:46.8333333", "id": 1297104103, "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_FinalidadTecnologiaSalud.json') .then(res => res.json());
// TypeScript interface (generated from schema)interface RipsREFsFinalidadTecnologiaSalud { codigo: string; nombre: string; extra_I: boolean; extra_II: boolean; extra_VI: string; extra_VII: number; extra_VIII: number; fechaHoraActualizacion: string; id: number; estadoEntidad: boolean;}
// Use the dataconst records: RipsREFsFinalidadTecnologiaSalud[] = data;