This textual structure captures the qualifications that a manager has received, including degree subject, level, university, and graduation dates.
Specification
Property | Type |
---|---|
DEGREE | DEGREE |
EDUCATION_INSTITUTION | EDUCATION_INSTITUTION |
GRADUATION_DATE | DATE |
Examples: Individual Qualifications
{
"ORIGINAL":"graduated from the University of Michigan in 1987 with a BBA",
"DEGREE":{"ORIGINAL":"BBA","DEGREE_LEVEL":"UNDERGRADUATE/BACHELORS","SUBJECTS":["BUSINESS"]},
"EDUCATION_INSTITUTION":{"ORIGINAL":"University of Michigan","UNIVERSITY":"UNIVERSITY OF MICHIGAN"},
"GRADUATION_DATE":{"ORIGINAL":"1987","YEAR": 1987}
}
{
"ORIGINAL":"received a BEng in 1990 with a from the University of Illinois",
"DEGREE":{"ORIGINAL":"BEng","DEGREE_LEVEL":"UNDERGRADUATE/BACHELORS","SUBJECTS":["ENGINEERING"]},
"EDUCATION_INSTITUTION":{"ORIGINAL":"University of Illinois","UNIVERSITY":"UNIVERSITY OF ILLINOIS"},
"GRADUATION_DATE":{"ORIGINAL":"1990","YEAR": 1990}
}
{
"ORIGINAL":"earned a Bachelor of Business Administration from the University of Stanford in 1996",
"DEGREE":{"ORIGINAL":"Bachelor of Business Administration",
"DEGREE_LEVEL":"UNDERGRADUATE/BACHELORS","SUBJECTS":["BUSINESS"]},
"EDUCATION_INSTITUTION":{"ORIGINAL":"University of Stanford","UNIVERSITY":"Stanford University"},
"GRADUATION_DATE":{"ORIGINAL":"1996","YEAR": 1996}
}
Examples: Overall Usage in Sentences
{
"ORIGINAL_SENTENCE":"Mr. Doe earned a Bachelor of Science in engineering from the University of
Michigan in 1980 and a Master of Business Administration from the Stanford Graduate
School of Business in 1985.",
"BACKGROUND":{"PERSON_NAME":{"ORIGINAL":"Mr. Doe","NAME_TITLE":"MR","LAST_NAME":"DOE"},
"QUALIFICATIONS":[
{
"EDUCATION_INSTITUTION":{"ORIGINAL":"University of Michigan","UNIVERSITY":"UNIVERSITY OF MICHIGAN"},
"DEGREE":{"ORIGINAL":"Bachelor of Science in engineering",
"LEVEL":"UNDERGRADUATE/BACHELORS","SUBJECTS":["ENGINEERING"]},
"GRADUATION_DATE":{"ORIGINAL":"1980","YEAR": 1980}
},
{
"EDUCATION_INSTITUTION":{"ORIGINAL":"Stanford Graduate School of Business",
"UNIVERSITY":"STANFORD UNIVERSITY","DEPARTMENT":"Graduate School of Business"},
"DEGREE":{"ORIGINAL":"Master of Business Administration",
"LEVEL":"GRADUATE/MASTERS","SUBJECTS":["BUSINESS"]},
"GRADUATION_DATE":{"ORIGINAL":"1985","YEAR": 1985}
}
]
}