Corpus of Western Armenian — Authors Data Store
The Authors Data Store is a file-based repository that stores Author objects in a single file named authors.properties.
Depending on your application, you may choose to use the data in the Authors Data Store, or simply ignore it. For example, if you need the name of the author and their year of birth and death, you can consult the data store.
The file is UTF-8 encoded and resembles a Java properties file with one key-value pair per line.
Each line has the format <author key> = <value>, where <value> is a JSON Object representing an Author object.
The following is a snippet of the authors.properties file:
#Last modified by 'Serouj' at Jun 6, 2024 4:18:46 PM.
#Thu Jun 06 16:18:46 AMT 2024
siamanto={"usernameLastModifiedBy"\:"Serouj","notes"\:"Atom Yarchanian (Armenian\: Ատոմ Եարճանեան), better known by his pen name Siamanto (Սիամանթօ; 15 August 1878 \\u2013 August 1915), was an influential Armenian writer, poet and national figure from the late 19th century and early 20th century. He was killed by the Ottoman authorities during the Armenian genocide.","lastModifiedTime"\:1712264566890,"creationTime"\:1696922879300,"name"\:"Սիամանթօ (Ատոմ Եարճանեան)","usernameCreatedBy"\:"Serouj","yearOfDeath"\:1915,"yearOfBirth"\:1878}
mushegh.ishkhan={"notes"\:"Մուշեղ Իշխան (Ճենտերեճեան, 1913, Սիվրիհիսար, Օսմանեան Կայսրութիւն - 12 Յունիս 1990, Պէյրութ, Լիբանան), Լիբանանահայ բանաստեղծ, արձակագիր, գրաքննադատ, հրապարակախօս\: Հայ, հետագային Նշան Փալանճեան, ճեմարանի հայագիտական նիւթերու երկարամեայ սիրուած ուսուցիչ։ «Ազդակ» օրաթերթի խմբագրապետ, եւ «Բագին» գրական պարբերաթերթի խմբագիրներէն մէկը։","creationTime"\:1700331893243,"name"\:"Մուշեղ Իշխան","usernameCreatedBy"\:"Serouj","url"\:"https\://hyw.wikipedia.org/wiki/Մուշեղ_Իշխան","yearOfDeath"\:1990,"yearOfBirth"\:1913}
vache.proudian={"notes"\:"Վաչէ Բրուտեան (ծնած է Հալէպ, 1953-ին)։ Հրապարակագիր, խմբագիր\: Ան մաս կազմած է ՀՅԴ Մամլոյ Դիւանին։","creationTime"\:1700446916205,"name"\:"Վաչէ Բրուտեան","usernameCreatedBy"\:"Serouj","url"\:"https\://hyw.wikipedia.org/wiki/Վաչէ_Բրուտեան","yearOfBirth"\:1953}
minas.teoleolian={"usernameLastModifiedBy"\:"Serouj","notes"\:"Մինաս Թէօլէօլեան (24 Նոյեմբեր 1913, Պարտիզակ (Քոճայելի), Օսմանեան Կայսրութիւն - 18 Ապրիլ 1997, Պոսթըն, Մասսաչուսէթս, Ամերիկայի Միացեալ Նահանգներ), հայ ուսուցիչ, արձակագիր, հրապարակագիր ու խմբագիր։ Իբրեւ նուիրուած կրթական մշակ եւ կուսակցական գործիչ, ապրած է աստանդական կեանք մը Սուրիա, Լիբանան, Եգիպտոս եւ ԱՄՆ։ Հայրն է գրականագէտ, սփիւռքագէտ Փրոֆ. Խաչիկ Թէօլէօլեան-ին\:","lastModifiedTime"\:1699455529883,"creationTime"\:1699455489105,"name"\:"Մինաս Թէօլէօլեան","usernameCreatedBy"\:"Serouj","url"\:"https\://hyw.wikipedia.org/wiki/Մինաս_Թէօլէօլեան","yearOfDeath"\:1997,"yearOfBirth"\:1913}
...
The first two lines are auto-generated by the version control system and can be ignored.
Subsequent lines have the author's unique identifier, an equals sign, followed by the JSON Object representing a serialization of the Author Object.
Author Object Properties
The Author Object is serialized as a JSON Object with the following attributes:
| Attribute Key | Type | Description |
|---|---|---|
| name | String | (Required) The name of the author in Armenian. |
| url | String | (Optional) The author's homepage or a website describing the author, for example a Wikipedia page. |
| yearOfBirth | Integer | (Optional) The year of the author's birth. |
| yearOfDeath | Integer | (Optional) The year of the author's death. |
| notes | String | (Optional) Any notes, such as a short biography of the author. |