Collection Concept
Payment collection concepts and billing categories.
Records: 5 | Last Updated: May 16, 2025
Schema
Section titled “Schema”| Field | Type | Format |
|---|---|---|
codigo | string | - |
nombre | string | - |
extra_I | boolean | - |
extra_II | boolean | - |
extra_III | boolean | - |
extra_IV | boolean | - |
fechaHoraActualizacion | string | date-time |
id | number | - |
estadoEntidad | boolean | - |
Sample Data
Section titled “Sample Data”[ { "codigo": "01", "nombre": "COPAGO", "extra_I": true, "extra_II": true, "extra_III": true, "extra_IV": true, "fechaHoraActualizacion": "2025-05-16T16:55:24.54", "id": 1467373433, "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_ConceptoRecaudo.json') .then(res => res.json());
// TypeScript interface (generated from schema)interface RipsREFsConceptoRecaudo { codigo: string; nombre: string; extra_I: boolean; extra_II: boolean; extra_III: boolean; extra_IV: boolean; fechaHoraActualizacion: string; id: number; estadoEntidad: boolean;}
// Use the dataconst records: RipsREFsConceptoRecaudo[] = data;