CUPS-ICD10 Relationships
Relationships between CUPS procedures and ICD-10 diagnostic codes.
Records: 1,581 | Last Updated: Sep 26, 2024
Schema
Section titled “Schema”| Field | Type | Format |
|---|---|---|
cups | string | - |
ciE10 | string | - |
fechaHoraActualizacion | string | date-time |
id | number | - |
estadoEntidad | boolean | - |
Sample Data
Section titled “Sample Data”[ { "cups": "67001", "ciE10": "Q892", "fechaHoraActualizacion": "2024-09-25T22:13:57.94", "id": 1446897887, "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_CUPS_CIE10.json') .then(res => res.json());
// TypeScript interface (generated from schema)interface RipsREFsCUPSCIE10 { cups: string; ciE10: string; fechaHoraActualizacion: string; id: number; estadoEntidad: boolean;}
// Use the dataconst records: RipsREFsCUPSCIE10[] = data;