Curriculum Vitae
Detailed documentation of the Curriculum Vitae data structure
To extract all data from a CV, including description, education, and work experience.
Document type code: cv
Response structure
{
"data": {
"extractedData": {
"nombre": "Ana María Torres",
"telefono": "+56 9 8765 4321",
"correo_electronico": "ana.torres@email.com",
"descripcion": "Systems Engineer with 8 years of experience in software development and technology project management.",
"educacion": [
{
"institucion": "University of Chile",
"titulo": "Systems Engineering",
"ano_ingreso": 2010,
"ano_salida": 2015,
"ubicacion": "Santiago, Chile"
},
{
"institucion": "AIEP Professional Institute",
"titulo": "Programming Technician",
"ano_ingreso": 2008,
"ano_salida": 2010,
"ubicacion": "Santiago, Chile"
}
],
"experiencia_laboral": [
{
"empresa": "TechSolutions S.A.",
"cargo": "Senior Developer",
"ano_ingreso": 2020,
"ano_salida": 2023,
"descripcion": "Team leadership, implementation of scalable architectures, and mentoring junior developers.",
"ubicacion": "Santiago, Chile"
},
{
"empresa": "Innovate Corp",
"cargo": "Full Stack Developer",
"ano_ingreso": 2017,
"ano_salida": 2020,
"descripcion": "Web application development using React, Node.js, and PostgreSQL. Participation in digital transformation projects.",
"ubicacion": "Valparaíso, Chile"
}
]
}
}
}Main fields
| Field | Type | Description |
|---|---|---|
nombre | String | Person's full name |
telefono | String | Contact phone number |
correo_electronico | String | Email address |
descripcion | String | Professional summary or personal description |
Education fields
| Field | Type | Description |
|---|---|---|
institucion | String | Educational institution name |
titulo | String | Degree or title obtained |
ano_ingreso | Number | Year of entry to the institution |
ano_salida | Number | Year of graduation from the institution |
ubicacion | String | Institution location |
Work experience fields
| Field | Type | Description |
|---|---|---|
empresa | String | Company or employer name |
cargo | String | Job title or position held |
ano_ingreso | Number | Year started in the position |
ano_salida | Number | Year ended in the position |
descripcion | String | Description of responsibilities and achievements |
ubicacion | String | Work location |
Important considerations
- Education and experience arrays are generally ordered by relevance or chronology
- Years can be in full format (YYYY) or abbreviated according to the original document
- Personal description may include skills, professional objectives, or career summary
- Useful for recruitment processes and professional profile analysis