Skip to main content

MoEML Personography Application Profile

note

Dataset Status: Converting

Purpose​

To document how Map of Early Modern London personography data is modelled for compatibility with the wider LINCS data model. This document provides patterns used in the mapping of Map of Early Modern London personography data which correspond to the categories outlined in the LINCS Application Profile Main Document.

This document introduces class and property concepts as used in this specific context (LINCS and the Map of Early Modern London personography dataset), and are not complete definitions. Consult CIDOC CRM v. 7.1.1 documentation for full class and property descriptions.

Acronyms​

Ontology Acronyms:

Vocabulary and Authority Acronyms:

Main Classes​

Entity TypeClassDeclaration Snippet (TTL)
Personcrm:E21_Person
<person> a crm:E21_Person .
Namescrm:E33_E41_Linguistic_Appellation
<name> a crm:E33_E41_Linguistic_Appellation ;
crm:P2_has_type aat:300417193 .
Typecrm:E55_Type
<https://mapoflondon.uvic.ca/mdtEncyclopediaPersonographyHistorical>
a crm:E55_Type .
Web Pagecrm:E73_Information_Object
<webpage> a crm:E73_Information_Object ;
crm:P2_has_type wikidata:Q36774 .
Web SItecrm:E73_Information_Object
<website> a crm:E73_Information_Object ;
crm:P2_has_type wikidata:Q35127 .
Noterdfs:literal
rdfs:literal
Birth Eventcrm:E67_Birth
<Birth_Event> a crm:E67_Birth .
Death Eventcrm:E69_Death
<Death_Event> a crm:E69_Death .

Overview Diagram​

Below is an image of the application profile overview diagram. Follow this link for a zoomable, more readable version. The segments below align with the document sections.

Application profile

Nodes​

Basic Patterns​

Identifiers​

Names & Titles​

Application profile

Pattern/Structure ValuesDefinitionThis pattern declares that a person is identified by a name.
Abstraction

crm:E21_Person β†’ crm:P1_is_identified_by β†’ crm:E33_E41_Linguistic_Appellation
β†’ crm:P2_has_type β†’ crm:E55_Type[cwrc:<type>]
β†’ crm:P190_has_symbolic_content β†’ rdfs:Literal

Content ValuesType of ValueUniform Resource Identifier (URI); literal value (text)
Expected Value

URI minted by LINCS; Literal value (text) from the MoEML Personography dataset

Format/Requirements for the ValueURI (preferably dereferenceable); rdfs:literal
Example Values

β€œSir Nicholas Bacon”, <http://id.lincsproject.ca/biography#PreferredName>; β€œNicholas”, <http://id.lincsproject.ca/cwrc#Forename>; β€œBacon”, <http://id.lincsproject.ca/cwrc#Surname>;

Case ExamplesTypical Example & Abstraction

The Map of Early Modern London Personography dataset states that Sir Nicholas Bacon has the display name β€œSir Nicholas Bacon.” This is a preferred name.

<moeml:BACO1> β†’ crm:P1_is_identified_by β†’ crm:E33_E41_Linguistic_Appellation
β†’ crm:P2_has_type β†’ <biography:PreferredName>
β†’ crm:P190_has_symbolic_content β†’


β€œSir Nicholas Bacon”

Edge Case Example & AbstractionN/A
Resource Links

MoEML. (2022, May 5). Map of Early Modern London. https://mapoflondon.uvic.ca/

Brown, S., Cummings, J., Drudge-Wilson, J., Faulkner, C., Lemak, A., Martin, K., Mo, A., Penancier, J., Simpson, J., Singh, G., Stacey, D., & Warren, R. (2020, July 14). The CWRC Ontology Specification 0.99.86. The Canadian Writing Research Collaboratory.

https://sparql.cwrc.ca/ontologies/cwrc.html#

Discussion Elements Pertaining to the PatternN/A
MoEML Elements Following this Pattern

MoEML foaf:name; MoEM foafL:familyName; MoEML foaf:firstName; MoEML foaf:title

Pattern in TTL:

<MoEML:Person> a crm:E21_Person ; 
rdfs:label "<MoEML:Person>" ;
crm:P1_is_identified_by <name>.

<name> a crm:E33_E41_Linguistic_Appellation ;
rdfs:label "<name>" ;
crm:P2_has_type cwrc:<type> ;
crm:P190_has_symbolic_content "<name>" .

cwrc:<type> a crm:E55_Type ;
rdfs:label "<type>" .
Name Formation​

Application profile

Pattern/Structure ValuesDefinitionThis pattern describes the relationships between names.
Abstraction

crm:E21_Person β†’ crm:P1_is_identified_by β†’ crm:E33_E41_Linguistic_Appellation
β†’ crm:P106_is_composed_of β†’ crm:E33_E41_Linguistic_Appellation


crm:E21_Person β†’ crm:P1_is_identified_by β†’ crm:E33_E41_Linguistic_Appellation
β†’ crm:P106i_forms_part_of β†’ crm:E33_E41_Linguistic_Appellation

Content ValuesType of ValueUniform Resource Identifier (URI); literal value (text)
Expected Value

URI minted by LINCS; Literal value (text) from the MoEML Personography dataset

Format/Requirements for the ValueURI (preferably dereferenceable); rdfs:literal
Example Valuesβ€œSir Nicholas Bacon”; β€œNicholas”; β€œBacon”
Case ExamplesTypical Example & Abstraction

The Map of Early Modern London Personography dataset states that Sir Nicholas Bacon has the display name of β€œSir Nicholas Bacon”, which is itself made up of β€œNicholas” and β€œBacon.”

<moeml:BACO1> β†’ crm:P1_is_identified_by β†’ <lincs:foaf_name/Sir_Nicholas_Bacon>
β†’ crm:P106_is_composed_of β†’ <lincs:foaf_firstName/Nicholas>


<moeml:BACO1> β†’ crm:P1_is_identified_by β†’ <lincs:foaf_firstName/Nicholas>
β†’ crm:P106i_forms_part_of β†’ <lincs:foaf_name/Sir_Nicholas_Bacon>

Edge Case Example & AbstractionN/A
Resource Links

MoEML. (2022, May 5). Map of Early Modern London. https://mapoflondon.uvic.ca/

Discussion Elements Pertaining to the PatternN/A
MoEML Elements Following this PatternMoEML foaf:name; MoEML foaf:familyName; MoEML foaf:firstName

Pattern in TTL:

<MoEML:Person> a crm:E21_Person ; 
rdfs:label "<MoEML:Person>" ;
crm:P1_is_identified_by <name> , <firstName> , <familyName>.

<name> a crm:E33_E41_Linguistic_Appellation ;
crm:P106_is_composed_of <firstName> , <familyName> .

<firstName> a crm:E33_E41_Linguistic_Appellation ;
crm:P106i_forms_part_of <name> .

<familyName> a crm:E33_E41_Linguistic_Appellation ;
crm:P106i_forms_part_of <name> .

Types​

Application profile

Pattern/Structure ValuesDefinitionThis pattern declares that a person is a MoEML Historical Person.
Abstraction

crm:E21_Person β†’ crm:P2_has_type β†’ crm:E55_Type

Content ValuesType of ValueUniform Resource Identifier (URI); literal value (text)
Expected Value

URI from the MoEML Personography dataset; Literal value (text) from the MoEML Personography dataset

Format/Requirements for the ValueURI (preferably dereferenceable); rdfs:literal
Example Values

<https://mapoflondon.uvic.ca/mdtEncyclopediaPersonographyHistorical>

Case ExamplesTypical Example & Abstraction

The Map of Early Modern London Personography dataset declares that Sir Nicholas Bacon is a historical person.

<moeml:BACO1> β†’ crm:P2_has_type β†’ <moeml:mdtEncyclopediaPersonographyHistorical>

Edge Case Example & AbstractionN/A
Resource Links

MoEML. (2022, May 5). Map of Early Modern London. https://mapoflondon.uvic.ca/

Discussion Elements Pertaining to the PatternN/A
MoEML Elements Following this PatternMoEML rdf:type

Pattern in TTL:

<MoEML:Person> a crm:E21_Person ; 
rdfs:label "<name>" ;
crm:P2_has_type moeml:mdtEncyclopediaPersonographyHistorical .

moeml:mdtEncyclopediaPersonographyHistorical a crm:E55_Type ;
rdfs:label "MoEML Project Historical Person" .

Describing or Referencing a Person​

Subject of a Web Page​

Application profile

Pattern/Structure ValuesDefinition

This pattern declares that a person is the main subject of a web page.

Abstraction

crm:E21_Person β†’ crm:P129i_is_subject_of β†’ crm:E73_Information_Object
β†’ crm:P2_has_type β†’ crm

wikidata:Q36774

Content ValuesType of ValueUniform Resource Identifier (URI)
Expected ValueURI from the MoEML Personography dataset
Format/Requirements for the ValueURI (preferably dereferenceable)
Example Values

<https://en.wikipedia.org/wiki/Nicholas_Bacon_(Lord_Keeper)>; <https://en.wikipedia.org/wiki/William_Fleetwood_(judge)>; <https://en.wikipedia.org/wiki/Sir_Henry_Hobart,_1st_Baronet>

Case ExamplesTypical Example & Abstraction

The Map of Early Modern London Personography dataset states that Sir Nicholas Bacon is the subject of a webpage.

<moeml:BACO1> β†’ crm:P129i_is_subject_of β†’ crm:E73_Information_Object
β†’ crm:P2_has_type β†’ <wikidata:Q36774>

Edge Case Example & AbstractionN/A
Resource Links

The Wikimedia Foundation. (2021). Wikidata. https://www.wikidata.org/

Discussion Elements Pertaining to the PatternN/A
MoEML Elements Following this PatternMoEML dc:source

Pattern in TTL:

<MoEML:Person> a crm:E21_Person ; 
rdfs:label "<MoEML:Person>" ;
crm:P129i_is_subject_of <page>.

<page> a crm:E73_Information_Object ;
rdfs:label "<page>" ;
crm:P2_has_type wikidata:Q36774 .

wikidata:Q36774 a crm:E55_Type ;
rdfs:label "web page" .
Mentioned or Referenced by a Web Page or Website​

Application profile

Pattern/Structure ValuesDefinition

This pattern declares that a person is referred to by a web page or website.

Abstraction

crm:E21_Person β†’ crm:P67i_is_referred_to_by β†’ crm:E73_Information_Object
β†’ crm:P2_has_type β†’ crm:E55_Type

Content ValuesType of ValueUniform Resource Identifier (URI)
Expected ValueURI from the MoEML Personography dataset
Format/Requirements for the ValueURI (preferably dereferenceable)
Example Values

<https://masl.library.utoronto.ca/person/762>; <https://mapoflondon.uvic.ca/>; <https://doi.org/10.1093/ref:odnb/13391>

Case ExamplesTypical Example & Abstraction

The Map of Early Modern London Personography dataset states that John Stokker is referred to by a webpage.

<moeml:STOK10> β†’ crm:P67i_is_referred_to_by β†’ crm:E73_Information_Object
β†’ crm:P2_has_type β†’ <wikidata:Q36774>

Edge Case Example & AbstractionN/A
Resource Links

The Wikimedia Foundation. (2021). Wikidata. https://www.wikidata.org/

Discussion Elements Pertaining to the PatternTypes: web page (wikidata:Q36774) and website (wikidata:Q35127)
MoEML Elements Following this PatternMoEML foaf:page

Pattern in TTL:

<MoEML:Person> a crm:E21_Person ; 
rdfs:label "<name>" ;
crm:P67i_is_referred_to_by <page>.

<page> a crm:E73_Information_Object ;
rdfs:label "<page>" ;
crm:P2_has_type wikidata:"<type>" .

wikidata:"<type>" a crm:E55_Type ;
rdfs:label "<type>" .
Note​

Application profile

Pattern/Structure ValuesDefinitionThis pattern declares that a person has a note.
Abstraction

crm:E21_Person β†’ crm:P3_has_note β†’ rdfs:Literal

Content ValuesType of Valueliteral value (text)
Expected ValueLiteral value (text) from the MoEML Personography dataset
Format/Requirements for the Valuerdfs:literal
Example Values

"Sheriff of London\n 1477-1478.\n Member of the Drapers’ Company. Not to be confused\n with John Stokker." ; "Sheriff of London\n 1337-1338.\n Member of the Bladers’ Company."; "Wife of Andrew Pikeman. Buried at St.\n Botolph, Billingsgate."

Case ExamplesTypical Example & Abstraction

The Map of Early Modern London Personography dataset states that John Stokker has the following note: β€œSheriff of London\n 1477-1478.\n Member of the Drapers’ Company. Not to be confused\n with John Stokker."

<moeml:STOK10> β†’ crm:P3_has_note β†’

β€œSheriff of London\n 1477-1478.\n Member of the Drapers’ Company. Not to be confused\n with John Stokker."

Edge Case Example & AbstractionN/A
Resource Links

MoEML. (2022, May 5). Map of Early Modern London. https://mapoflondon.uvic.ca/

Discussion Elements Pertaining to the PatternN/A
MoEML Elements Following this PatternMoEML bio:olb

Pattern in TTL:

<MoEML:Person> a crm:E21_Person ; 
rdfs:label "<MoEML:Person>" ;
crm:P3_has_note "<note>".

Persons​

Birth​

Application profile

Pattern/Structure ValuesDefinitionThis pattern declares that a person was born.
Abstractioncrm:E21_Person β†’ crm:P98i_was_born β†’ crm:E67_Birth
Content ValuesType of ValueUniform Resource Identifier (URI)
Expected ValueURI minted by LINCS
Format/Requirements for the ValueURI (preferably dereferenceable)
Example Values

<http://temp.lincsproject.ca/persons/birth/JOAN5>; <http://temp.lincsproject.ca/persons/birth/ALEX4>; <http://temp.lincsproject.ca/persons/birth/FERD2>

Case ExamplesTypical Example & Abstraction

The Map of Early Modern London Personography dataset declares that Sir Nicholas Bacon was born.

<moeml:BACO1> β†’ crm:P98i_was_born β†’ <lincs:birth/BACO13>

Edge Case Example & AbstractionN/A
Resource LinksN/A
Discussion Elements Pertaining to the PatternN/A
MoEML Elements Following this PatternMoEML bio:Birth

Pattern in TTL:

<MoEML:Person> a crm:E21_Person ; 
rdfs:label "<name>" ;
crm:P98i_was_born <Birth_Event> .

<Birth_Event> a crm:E67_Birth ;
rdfs:label "Birth event of <name>" .
Birth Date​

Application profile

Pattern/Structure ValuesDefinitionThis pattern declares that a person was born on a date.
Abstraction

crm:E67_Birth
β†’ crm:P4_has_time_span β†’ crm:E52_Time_Span
β†’ crm:P82_at_some_time_within β†’ rdfs:Literal
β†’ crm:P82a_begin_of_the_begin β†’ xsd:dateTime
β†’ crm:P82b_end_of_the_end β†’ xsd:dateTime

Content ValuesType of Valueliteral value (text); date-time value
Expected Value

Literal value (text) from the MoEML Personography dataset; date-time value from the MoEML Personography dataset

Format/Requirements for the Valuerdfs:literal; xsd:dateTime
Example Valuesβ€œ1513-08-14”, β€œ0899”; β€œ1545”
Case ExamplesTypical Example & Abstraction

The Map of Early Modern London Personography dataset declares that Sir Nicholas Bacon was born in 1510.

<moeml:BACO1> β†’ crm:P98i_was_born β†’ crm:E67_Birth
β†’ crm:P4_has_time_span β†’ crm:E52_Time_Span
β†’ crm:P82_at_some_time_within β†’ β€œ1510”
β†’ crm:P82a_begin_of_the_begin β†’ β€œ1510-01-01”
β†’ crm:P82b_end_of_the_end β†’ β€œ1510-12-31”

Edge Case Example & Abstraction

bio:precedingEvent: Only P82, P82a

The Map of Early Modern London Personography dataset declares that Edward the Confessor was born after 1003.

<moeml:EDWA7> β†’ crm:P98i_was_born β†’ crm:E67_Birth
β†’ crm:P4_has_time_span β†’ crm:E52_Time_Span
β†’ crm:P82_at_some_time_within β†’ β€œAfter 1510”
β†’ crm:P82a_begin_of_the_begin β†’ β€œ1510-12-31”


bio:followingEvent: Only P82, P82b

The Map of Early Modern London Personography dataset declares that Christine Barantyn was born before 1415.

<moeml:BARA2> β†’ crm:P98i_was_born β†’ crm:E67_Birth
β†’ crm:P4_has_time_span β†’ crm:E52_Time_Span
β†’ crm:P82_at_some_time_within β†’ β€œBefore 1415”
β†’ crm:P82b_end_of_the_end β†’ β€œ1415-01-01”

Resource Links

W3C. (2012, April 5). W3C XML Schema Definition Language (XSD) 1.1 Part 1: Structures .

https://www.w3.org/TR/xmlschema11-1/

Discussion Elements Pertaining to the PatternN/A
MoEML Elements Following this PatternMoEML bio:Birth

Pattern in TTL:

<Birth_Event> a crm:E67_Birth ; 
rdfs:label "Birth event of <name>" ;
crm:P4_has_time-span <Birth_Date> .

<Birth_Date> a crm:E52_Time-Span ;
rdfs:label "Date of birth of <name>" ;
crm:P82_at_some_time_within "<Birth_Date>" ;
crm:P82a_begin_of_the_begin "<Birth_Date>"^^xsd:dateTime ;
crm:P82b_end_of_the_end "<Birth_Date>"^^xsd:dateTime .

Death​

Application profile

Pattern/Structure ValuesDefinitionThis pattern declares that a person died.
Abstractioncrm:E21_Person → crm:P100i_died_in→ crm:E69_Death
Content ValuesType of ValueUniform Resource Identifier (URI)
Expected ValueURI minted by LINCS
Format/Requirements for the ValueURI (preferably dereferenceable)
Example Values

<http://temp.lincsproject.ca/persons/death/WALS1>; <http://temp.lincsproject.ca/persons/death/WEST17>; <http://temp.lincsproject.ca/persons/death/DALL3>

Case ExamplesTypical Example & Abstraction

The Map of Early Modern London Personography dataset declares that Christine Barantyn died.

<moeml:BARA2> β†’ crm:P100i_died_in β†’ <moeml:death/BARA2>

Edge Case Example & Abstraction

bio:precedingEvent: Only P82, P82a

The Map of Early Modern London Personography dataset declares that Γ†lfwine of Elmham died after 1023.

<https://mapoflondon.uvic.ca/AELF1> β†’ crm:P100i_died_in β†’ crm:E69_Death
β†’ crm:P4_has_time_span β†’ crm:E52_Time_Span
β†’ crm:P82_at_some_time_within β†’ β€œAfter 1023”
β†’ crm:P82a_begin_of_the_begin β†’ β€œ1023-12-31”

Resource LinksN/A
Discussion Elements Pertaining to the PatternN/A
MoEML Elements Following this PatternMoEML bio:Death

Pattern in TTL:

<MoEML:Person> a crm:E21_Person ; 
rdfs:label "<MoEML:Person>" ;
crm:P100i_died_in <Death_Event> .

<Death_Event> a crm:E69_Death ;
rdfs:label "Death event of <name>" .
Death Date​

Application profile

Pattern/Structure ValuesDefinitionThis pattern declares that a person died on a date.
Abstraction

crm:E21_Person → crm:P100i_died_in→ crm:E69_Death
β†’ crm:P4_has_time_span β†’ crm:E52_Time_Span
β†’ crm:P82_at_some_time_within β†’ rdfs:Literal
β†’ crm:P82a_begin_of_the_begin β†’ xsd:dateTime
β†’ crm:P82b_end_of_the_end β†’ xsd:dateTime

Content ValuesType of Valueliteral value (text); date-time value
Expected Value

Literal value (text) from the MoEML Personography dataset; date-time value from the MoEML Personography dataset

Format/Requirements for the ValueRdfs:literal; xsd:dateTime
Example Valuesβ€œ1427”, β€œ1571-10-27”; β€œ1390”
Case ExamplesTypical Example & Abstraction

The Map of Early Modern London Personography dataset declares that Christine Barantyn died in 1427.

<https://mapoflondon.uvic.ca/BARA2> β†’ crm:P100i_died_in β†’ crm:E69_Death
β†’ crm:P4_has_time_span β†’ crm:E52_Time_Span
β†’ crm:P82_at_some_time_within β†’ β€œ1427”
β†’ crm:P82a_begin_of_the_begin β†’ β€œ1427-01-01”
β†’ crm:P82b_end_of_the_end β†’ β€œ1427-12-31”

Edge Case Example & Abstraction

bio:precedingEvent: Only P82, P82a

The Map of Early Modern London Personography dataset declares that Γ†lfwine of Elmham died after 1023.

<https://mapoflondon.uvic.ca/AELF1> β†’ crm:P100i_died_in β†’ crm:E69_Death
β†’ crm:P4_has_time_span β†’ crm:E52_Time_Span
β†’ crm:P82_at_some_time_within β†’ β€œAfter 1023”
β†’ crm:P82a_begin_of_the_begin β†’ β€œ1023-12-31”

Resource Links

W3C. (2012, April 5). W3C XML Schema Definition Language (XSD) 1.1 Part 1: Structures .

https://www.w3.org/TR/xmlschema11-1/

Discussion Elements Pertaining to the PatternN/A
MoEML Elements Following this PatternMoEML bio:Death

Pattern in TTL:

<Death_Event> a crm:E69_Death ; 
rdfs:label "Death event of <name>" ;
crm:P4_has_time_span <Death_Date> .

<Death_Date> a crm:E52_Time-Span ;
rdfs:label "Date of death of <name>" ;
crm:P82_at_some_time_within "<Death_Date>" ;
crm:P82a_begin_of_the_begin "<Death_Date>"^^<xsd:dateTime ;
crm:P82b_end_of_the_end "<Death_Date>"^^<xsd:dateTime .