Sex
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 |
|---|---|---|
extra_III | string | - |
nombre | string | - |
extra_II | string | - |
fechaHoraActualizacion | string | date-time |
id | number | - |
estadoEntidad | boolean | - |
Sample Data
Section titled “Sample Data”[ { "extra_III": "M", "nombre": "Hombre", "extra_II": "01", "fechaHoraActualizacion": "2025-05-21T17:27:39.85", "id": 82717628, "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_Sexo.json') .then(res => res.json());
// TypeScript interface (generated from schema)interface RipsREFsSexo { extra_III: string; nombre: string; extra_II: string; fechaHoraActualizacion: string; id: number; estadoEntidad: boolean;}
// Use the dataconst records: RipsREFsSexo[] = data;