LstSiNo
Yes/No list for disability and incapacity reporting.
Records: 2 | Last Updated: Feb 26, 2024
Schema
Section titled “Schema”| Field | Type | Format |
|---|---|---|
ID | number | - |
Codigo | string | - |
Nombre | string | - |
Descripcion | string/null | - |
Habilitado | boolean | - |
CreationDateTime | string | date-time |
LastUpdateDateTime | string | date-time |
Extra_I | string | - |
Extra_II | string | - |
Extra_III | string | - |
Extra_IV | string | - |
Extra_V | string/null | - |
Extra_VI | string/null | - |
Extra_VII | string/null | - |
Extra_VIII | string/null | - |
Extra_IX | string/null | - |
Extra_X | string/null | - |
Valor | string/null | - |
Sample Data
Section titled “Sample Data”[ { "ID": 24607, "Codigo": "SI", "Nombre": "SI", "Descripcion": null, "Habilitado": true, "CreationDateTime": "2016-11-21T11:04:07.763-05:00", "LastUpdateDateTime": "2021-07-21T12:14:06.727-05:00", "Extra_I": "1", "Extra_II": "S", "Extra_III": "1", "Extra_IV": "01", "Extra_V": null, "Extra_VI": null, "Extra_VII": null, "Extra_VIII": null, "Extra_IX": null, "Extra_X": null, "Valor": null }]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_Incapacidad.json') .then(res => res.json());
// TypeScript interface (generated from schema)interface RipsREFsIncapacidad { ID: number; Codigo: string; Nombre: string; Descripcion: string | null; Habilitado: boolean; CreationDateTime: string; LastUpdateDateTime: string; Extra_I: string; Extra_II: string; Extra_III: string; Extra_IV: string; Extra_V: string | null; Extra_VI: string | null; Extra_VII: string | null; Extra_VIII: string | null; Extra_IX: string | null; Extra_X: string | null; Valor: string | null;}
// Use the dataconst records: RipsREFsIncapacidad[] = data;