Skip to content

Sex

Gender classification codes used in RIPS reporting (Male, Female, Intersex/Undetermined).

Records: 3 | Last Updated: May 21, 2025

FieldTypeFormat
extra_IIIstring-
nombrestring-
extra_IIstring-
fechaHoraActualizacionstringdate-time
idnumber-
estadoEntidadboolean-
[
{
"extra_III": "M",
"nombre": "Hombre",
"extra_II": "01",
"fechaHoraActualizacion": "2025-05-21T17:27:39.85",
"id": 82717628,
"estadoEntidad": true
}
]
// Fetch from CDN
const 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 data
const records: RipsREFsSexo[] = data;