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

FieldTypeDescription
nombreStringPerson's full name
telefonoStringContact phone number
correo_electronicoStringEmail address
descripcionStringProfessional summary or personal description

Education fields

FieldTypeDescription
institucionStringEducational institution name
tituloStringDegree or title obtained
ano_ingresoNumberYear of entry to the institution
ano_salidaNumberYear of graduation from the institution
ubicacionStringInstitution location

Work experience fields

FieldTypeDescription
empresaStringCompany or employer name
cargoStringJob title or position held
ano_ingresoNumberYear started in the position
ano_salidaNumberYear ended in the position
descripcionStringDescription of responsibilities and achievements
ubicacionStringWork 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

On this page