Sexo
Gender classification codes used in RIPS reporting (Male, Female, Intersex/Undetermined).
Records: 3 | Last Updated: May 21, 2025
Schema
Section titled “Schema”| Field | Type | Format |
|---|---|---|
ID | number | - |
Codigo | string | - |
Nombre | string | - |
Descripcion | string | - |
Habilitado | boolean | - |
CreationDateTime | string | date-time |
LastUpdateDateTime | string | date-time |
Extra_I | string | - |
Extra_II | string | - |
Extra_III | string | - |
Extra_IV | string/null | - |
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": 82717628, "Codigo": "H", "Nombre": "Hombre", "Descripcion": "Masculino", "Habilitado": true, "CreationDateTime": "2016-11-21T11:04:07.763-05:00", "LastUpdateDateTime": "2025-05-21T17:27:39.85-05:00", "Extra_I": "1", "Extra_II": "01", "Extra_III": "M", "Extra_IV": null, "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_Sexo.json') .then(res => res.json());
// TypeScript interface (generated from schema)interface RipsREFsSexo { ID: number; Codigo: string; Nombre: string; Descripcion: string; Habilitado: boolean; CreationDateTime: string; LastUpdateDateTime: string; Extra_I: string; Extra_II: string; Extra_III: string; Extra_IV: string | null; 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: RipsREFsSexo[] = data;