This textual structure is designed to capture descriptive information about the manager not typically the focus of the sentence. This includes post-nominal letters that are sometimes included after a manager’s name, but are not the focus of the sentence, which are standardized in this textual structure in a similar manner to how qualifications/professional license are captured.
Specification
Property | Type | Comments |
---|---|---|
PERSON_NAME | PERSON_NAME | Name split up |
AGE | Integer | Age in years |
POST_NOMINAL_LETTERS | (i.e., qualification "letters", that are not the focus of the sentence) [see example below] | All nominal letters appearing after a name |
Examples
{
"ORIGINAL_TEXT":"Mr. John Doe",
"PERSON_NAME":{"ORIGINAL_TEXT":"Mr. John Doe","TITLE":"MR","FIRST_NAME":"JOHN","LAST_NAME":"DOE"},
}
{
"ORIGINAL_TEXT":"Mrs. Jane Doe, age 56",
"PERSON_NAME":{"ORIGINAL_TEXT":"Mr. Jane Doe","TITLE":"MRS","FIRST_NAME":"JANE","LAST_NAME":"DOE"},
"AGE":{"ORIGINAL_TEXT":"age 56", "AGE":56}
}
{
"ORIGINAL_TEXT":"Mr. John Doe, PhD, (age 64)",
"PERSON_NAME":{"ORIGINAL_TEXT":"Mr. John Doe","TITLE":"MR","FIRST_NAME":"JOHN","LAST_NAME":"DOE"},
"POST_NOMINAL_LETTERS":[{"ORIGINAL_TEXT":"PhD","TYPE":"QUALIFICATION",
"LEVEL":"POST_GRADUATE/DOCTORATE"}],
"AGE":{"ORIGINAL_TEXT":"(age 64)", "AGE":64 }
}