What can we say about named entities?

Potentially, quite a lot...

<person xml:id="VM1893">
    <persName xml:lang="ru">Владимир Владимирович Маяковский</persName>
    <persName xml:lang="fr">Wladimir Maïakowski</persName>
    <birth when="1893-07-19">7 July (OS) 1893, 
        <placeName ref="#BGDT" xml:lang="en">
            <settlement>Baghdati<settlement>, <country>Georgia<country>
        </placeName>
    </birth>
    <death when="1930-04-14"/>
    <occupation>Poet and playwright</occupation>
    <note>Among the foremost representatives of early-20th century Russian Futurism.</note>
</person>

What elements should the TEI provide for such a purposes?

Traits, states, and events

As elsewhere in the TEI, we resolve this question by adding a layer of abstraction. We distinguish three classes of information:

All these elements are members of the att.datable class and thus can have time/dating attributes.

States

Some typical states for a person

Traits

Some typical traits of a person

Some typical traits of a place:

Some of these (e.g. sex) have normalised attributes, but mostly they contain free text descriptions.

Events

For persons, only two specific event elements are defined: <birth> and <death>. Anything else must be defined using the generic <event> element and its @type attribute.

<person xml:id="SS">
    <persName>Siegfried Loraine Sassoon</persName>
    <birth when="1886-09-08">
        <placeName>
            <placeName>Weirleigh Mansion</placeName>
            <settlement>Matfield</settlement>
            <region>Kent</region>
        </placeName>
    </birth>
    <death when="1967-09-01"/>
    <event type="military" when="1914-08-04">
        <desc>In service with Sussex Yeomanry on the day the United Kingdom declared war</desc>
    </event>
    <event type="marriage" when="1933-12">
        <desc>Married Hester Gatty in December 1933</desc>
    </event>
    <event type="separation" when="1945">
        <desc>Seperated from his wife in 1945</desc>
    </event>
</person>

A place as being defined by its location

The <location> element can contain

Example:

<place type="neighbourhood" xml:id="ltg000001">
    <placeName xml:lang="ar-Latn-x-ijmes">Bāb al-Jābiyya</placeName>
    <placeName xml:lang="ar">باب الجابية</placeName>
    <settlement xml:lang="ar" type="city">دمشق الشام</settlement>
    <region xml:lang="ota" type="province" notAfter="1918-10-01">ولاية سورية</region>
    <location>
        <geo>33.507628, 36.301395</geo>
    </location>
</place>

Places can self-nest

<place type="state">
    <placeName xml:lang="en">Ottoman Empire</placeName>
    <placeName xml:lang="ar">الدولة العثمانية العالية</placeName>
    <place type="province">
        <placeName notAfter="1918-10-01" xml:lang="ota">ولاية سورية</placeName>
        <place type="city">
            <placeName type="city" xml:lang="ar">دمشق الشام</placeName>
            <place type="neighbourhood">
                <placeName xml:lang="ar-Latn-x-ijmes">Bāb al-Jābiyya</placeName>
                <placeName xml:lang="ar">باب الجابية</placeName>
                <location>
                    <geo>33.507628, 36.301395</geo>
                </location>
            </place>
        </place>
    </place>
</place>

Organizational names

Organizations have names as well. These are any named collection of people regarded as a single unit. An <orgName> can point back to an <org> in the header.

<p>On <date when="1915-10-21">21 October 1915</date> Owen enlisted in the <orgName ref="#AROTC">Artists' Rifles Officers' TrainingCorps</orgName>.</p>

<org xml:id="AROTC">
    <!-- Information about the organization -->
</org>

All entities can be fictional

<place type="imaginary">
    <placeName>Atlantis</placeName>
    <location>
        <offset>fifty leagues beyond</offset>
        <placeName>Pillars of 
            <persName>Hercules</persName></placeName>
    </location>
</place>

Personal relationships

Example

<person xml:id="SLS">
    <persName>Siegfried Loraine Sassoon</persName>
</person>
<person xml:id="HG">
    <persName>Hester Gatty</persName>
</person>
<person xml:id="GS">
    <persName>George Sassoon</persName>
</person>
<!--....-->
<relationGrp type="children">
    <relation active="#SS" name="parent" passive="#GS"/>
    <!--....-->
</relationGrp>

Nyms

The elements <listNym> and <nym> are used to document the canonical form of a name or name-component.

Example

<nym xml:id="nym-F-737">
    <form xml:lang="ar">شكري</form>
    <form xml:lang="ar-Latn-EN">Shukri</form>
    <form xml:lang="ar-Latn-x-ijmes">Shukrī</form>
    <form xml:lang="tr">Şükrü</form>
</nym>
<nym xml:id="nym-F-406">
    <form xml:lang="ar">يوسف</form>
    <form xml:lang="ar-Latn-EN">Yusef</form>
    <form xml:lang="ar-Latn-FR">Youssouf</form>
    <form xml:lang="ar-Latn-x-ijmes">Yūsuf</form>
    <form xml:lang="de">Josef</form>
    <form xml:lang="en">Joseph</form>
    <form xml:lang="tr">Yusuf</form>
</nym>