Condition & Destination
Patient condition at discharge and destination after hospital stay.
Records: 8 | Last Updated: Sep 19, 2024
Schema
Section titled “Schema”| Field | Type | Format |
|---|---|---|
codigo | string | - |
nombre | string | - |
extra_III | string | - |
extra_V | string | - |
extra_IV | string | - |
fechaHoraActualizacion | string | date-time |
id | number | - |
estadoEntidad | boolean | - |
Sample Data
Section titled “Sample Data”[ { "codigo": "01", "nombre": "PACIENTE CON DESTINO A SU DOMICILIO", "extra_III": "SI", "extra_V": "SI", "extra_IV": "SI", "fechaHoraActualizacion": "2024-09-18T21:37:09.12", "id": 1297104178, "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_CondicionDestino.json') .then(res => res.json());
// TypeScript interface (generated from schema)interface RipsREFsCondicionDestino { codigo: string; nombre: string; extra_III: string; extra_V: string; extra_IV: string; fechaHoraActualizacion: string; id: number; estadoEntidad: boolean;}
// Use the dataconst records: RipsREFsCondicionDestino[] = data;