Skip to content

Admission Route

Routes of patient admission to health services (emergency, referral, etc.).

Records: 14 | Last Updated: Aug 16, 2024

FieldTypeFormat
codigostring-
nombrestring-
extra_IIstring-
extra_IVstring-
fechaHoraActualizacionstringdate-time
idnumber-
estadoEntidadboolean-
[
{
"codigo": "01",
"nombre": "DEMANDA ESPONTANEA",
"extra_II": "SI",
"extra_IV": "NO",
"fechaHoraActualizacion": "2024-08-16T17:01:48.0133333",
"id": 1297104136,
"estadoEntidad": true
}
]
// Fetch from CDN
const data = await fetch('https://cdn-minsalud.pahventure.com/ref/Rips.REFs_ViaIngresoServicioSalud.json')
.then(res => res.json());
// TypeScript interface (generated from schema)
interface RipsREFsViaIngresoServicioSalud {
codigo: string;
nombre: string;
extra_II: string;
extra_IV: string;
fechaHoraActualizacion: string;
id: number;
estadoEntidad: boolean;
}
// Use the data
const records: RipsREFsViaIngresoServicioSalud[] = data;