Care Modality
Health service care modality catalog for grouping service and health technology delivery.
Records: 9 | Last Updated: Feb 26, 2024
Schema
Section titled “Schema”| Field | Type | Format |
|---|---|---|
codigo | string | - |
nombre | string | - |
extra_I | boolean | - |
extra_II | boolean | - |
fechaHoraActualizacion | string/null | - |
id | number | - |
estadoEntidad | boolean | - |
Sample Data
Section titled “Sample Data”[ { "codigo": "01", "nombre": "Intramural", "extra_I": true, "extra_II": true, "fechaHoraActualizacion": null, "id": 1, "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_ModalidadAtencion.json') .then(res => res.json());
// TypeScript interface (generated from schema)interface RipsREFsModalidadAtencion { codigo: string; nombre: string; extra_I: boolean; extra_II: boolean; fechaHoraActualizacion: string | null; id: number; estadoEntidad: boolean;}
// Use the dataconst records: RipsREFsModalidadAtencion[] = data;