Skip to main content

AdArchive Application Profile

note

Dataset Status: Published

Purpose​

To document how AdArchive data is modelled for compatibility with the wider LINCS data model. This document provides patterns used in the mapping of AdArchive 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 AdArchive 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:

note

Due to differences between FRBRoo and LRMoo and the expectation of the adoption of LRMoo when available, data is currently modelled using F2_Expression. This maintains the use of no classes planned for depreciation, while also providing a data model of minimal complexity as required by the data.

Main Classes​

Entity Type

Class

Declaration Snippet (TTL)

Titlecrm:E33_E41_Linguistic_Appellation
<title> a crm:E33_E41_Linguistic_Appellation ;
crm:P2_has_type <title_type> .
Imagecrm:E36_Visual_Item
<IIIF_image> a crm:E36_Visual_Item .
Periodicalfrbroo:F2_Expression
<AdArchive_Serial> a frbroo:F2_Expression ;
crm:P2_has_type wikidata:Q1002697 .
Issuefrbroo:F2_Expression
<Issue> a frbroo:F2_Expression ;
crm:P2_has_type wikidata:Q28869365 .
Advertisementcrm:F2_Expression
<advertisement> a crm:F2_Expression ;
crm:P2_has_type wikidata:Q39911916 .
Contentscrm:F2_Expression
<contents> a crm:F2_Expression ;
crm:P2_has_type <content_type> .
Creationcrm:E65_Creation
<creation> a crm:E65_Creation ;
crm:P2_has_type <creation_type> .
Creatorcrm:E39_Actor, subclass E21_Person or E74_Group used where possible
<AdArchive_Creator> a crm:E39_Actor ;
crm:P2_has_type <creator_type> .
Publication Frequencycrm:E29_Design_or_Procedure
<issuing_rule> a crm:E29_Design_or_Procedure ;
crm:P2_has_type wikidata:Q104480093 .
Advertised Pricecrm:E97_Monetary_Amount
<price> a crm:E97_Monetary_Amount ;
crm:P2_has_type<price_type> .
Addresscrm:E33_E41_Linguistic_Appellation
<address> a crm:E33_E41_Linguistic_Appellation ;
crm:P2_has_type wikidata:Q319608 .
Phone Numbercrm:E41_Appellation
<phone_number> a crm:E41_Appellation ;
crm:P2_has_type wikidata:Q214995 .
Organizationcrm:E74_Group
<organization> a crm:E74_Group ;
crm:P2_has_type <AdArchive_org_type> .
Organization Formationcrm:E66_Formation
<organization_formation> a crm:E66_Formation .
Placecrm:E53_Place
<AdArchive_Place> a crm:E53_Place .
Coordinatesrdfs:literal
rdfs:literal

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​

Titles​

Application profile

Definition: This pattern declares that a publication (such as a periodical, issue, article, etc.) is identified by a title.

Type of Value: literal value (text)

Expected Value: literal value (text) from the dataset

Format/Requirements for the Value: rdfs:literal

Example Values:

  • β€œSex Issue”
  • β€œWomen’s Traditional Arts : The Politics of Aesthetics”
  • β€œOn Women and Violence”

Authorities Used:

AdArchive Data Following this Pattern: Heresies is a publication; the newsletter being advertised; a specific issue of Heresies; a specific newsletter being advertised

Generalized Pattern in TTL:

<publication> a frbroo:F2_Expression ;  
rdfs:label "<publication>" ;
crm:P2_has_type <publication_type> ;
crm:P1_is_identified_by <title> .

<title> a crm:E33_E41_Linguistic_Appellation ;
rdfs:label "Title of <title>" ;
crm:P2_has_type <title_type> ;
crm:P190_has_symbolic_content "<title>" .

<publication_type> a crm:E55_Type ;
rdfs:label "<publication_type>" .

<title_type> a crm:E55_Type ;
rdfs:label "<title_type>" .

Sample Data in TTL:

@prefix bf: <http://id.loc.gov/ontologies/bibframe/> .
@prefix crm: <http://www.cidoc-crm.org/cidoc-crm/> .
@prefix frbroo: <http://iflastandards.info/ns/fr/frbr/frbroo/> .
@prefix lincs: <http://id.lincsproject.ca/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> ..
@prefix wikidata: <http://www.wikidata.org/entity/> .

lincs:7w12DoyR2ZV a frbroo:F2_Expression ;
rdfs:label "Heresies: A Feminist Publication on Art and Politics - Issue 4: Women's Traditional Arts : The Politics of Aesthetics"@en ;
crm:P1_is_identified_by lincs:VSo6WPn5pul ;
crm:P2_has_type wikidata:Q28869365 .

lincs:VSo6WPn5pul a crm:E33_E41_Linguistic_Appellation ;
rdfs:label "Title of Women's Traditional Arts : The Politics of Aesthetics"@en ;
crm:P190_has_symbolic_content "Women's Traditional Arts : The Politics of Aesthetics"@en ;
crm:P2_has_type bf:Title .

wikidata:Q28869365 a crm:E55_Type ;
rdfs:label "issue"@en .

bf:Title a crm:E55_Type ;
rdfs:label "title"@en .

Visual Representation​

Application profile

Definition: This pattern declares that an advertisement is represented by an image.

Type of Value: Uniform Resource Identifier (URI); literal value (text)

Expected Value: URI from dataset; literal values from dataset

Format/Requirements for the Value: URI (preferably dereferenceable); rdfs:literal

Example Values:

Authorities Used:

AdArchive Data Following this Pattern: There is an IIIF image that shows an advertisement

Generalized Pattern in TTL:

<AdArchive_ad> a frbroo:F2_Expression ; 
rdfs:label "<Issue> <AdArchive_ad> advertisement" ;
crm:P2_has_type wikidata:Q39911916 .

wikidata:Q39911916 a crm:E55_Type ;
rdfs:label "advertisement" .

<IIIF_image> a crm:E36_Visual_Item , crmdig:D1_Digital_Object ;
rdfs:label "<IIIF_image>" ;
crm:P138_represents <AdArchive_ad> .

Sample Data in TTL:

@prefix crm: <http://www.cidoc-crm.org/cidoc-crm/> .
@prefix crmdig: <http://www.ics.forth.gr/isl/CRMdig/> .
@prefix frbroo: <http://iflastandards.info/ns/fr/frbr/frbroo/> .
@prefix lincs: <http://id.lincsproject.ca/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix wikidata: <http://www.wikidata.org/entity/> .

lincs:LRK8dZhmUxZ a frbroo:F2_Expression ;
rdfs:label "Heresies 4 Diana Press Publications advertisement"@en ;
crm:P2_has_type wikidata:Q39911916 .

wikidata:Q39911916 a crm:E55_Type ;
rdfs:label "advertisement" .

<https://iiif.archivelab.org/iiif/heresies_04$127/1308,1791,1067,1362/full/0/default.jpg> a crm:E36_Visual_Item , crmdig:D1_Digital_Object ;
rdfs:label "Heresies 4 Diana Press Publications advertisement - visual representation"@en ;
crm:P138_represents lincs:LRK8dZhmUxZ .

Publications​

Creation​

Creation events can be differentiated by the Types associated with them, as well as the Types of the things that they created:

  1. Creation of periodicals: event:ProductionEvent, event:PublishingEvent, lincs:B1Gmq0t3eQR
  2. Creation of issues: event:ProductionEvent, event:PublishingEvent, lincs:rfMS6Lq326W
  3. Creation of advertisements: event:ProductionEvent, aat:300213176
  4. Creation of contents:
    1. Written contents - articles, intellectual content: event:ProductionEvent, aat:300054698
    2. Written contents - reviews: event:ProductionEvent, aat:300054698, aat:300054688 (optional)
    3. Written creative contents - poems, fiction: event:ProductionEvent, aat:300054698, aat:300404387 (optional)
    4. Artistic contents - art: event:ProductionEvent, aat:300404387, aat:300379398
Creation of Periodicals​

Application profile

Definition: This pattern declares that a periodical was created.

Type of Value: Uniform Resource Identifier (URI)

Expected Value: URI from an existing linked data authority or minted by LINCS

Format/Requirements for the Value: URI (preferably dereferenceable)

Example Values:

Authorities Used:

AdArchive Data Following this Pattern: Heresies is a publication; the newsletter being advertised

Generalized Pattern in TTL:

<AdArchive_Serial> a frbroo:F2_Expression ; 
rdfs:label "<AdArchive_Serial>" ;
crm:P94i_was_created_by <serial_creation> .

<serial_creation> a crm:E65_Creation ;
rdfs:label "Creation of <AdArchive_Serial>" ;
crm:P14_carried_out_by <AdArchive_Creator> ;
crm:P2_has_type event:ProductionEvent , event:PublishingEvent , lincs:rfMS6Lq326W .

<AdArchive_Creator> a crm:E39_Actor ;
rdfs:label "<AdArchive_Creator>" .

event:ProductionEvent a crm:E55_Type ;
rdfs:label "production event" .

event:PublishingEvent a crm:E55_Type ;
rdfs:label "publishing event" .

lincs:rfMS6Lq326W a crm:E55_Type ;
rdfs:label "Publication of a series of works, eg. a periodical" .

Edge Case Example & Abstraction

The AdArchive dataset states that Women & Literature had a publisher and was edited by Janet Todd. This variation of the above pattern utilizes roles.

lccw:11220336 a frbroo:F2_Expression ;
crm:P94i_was_created_by lincs:JossHq4NCv0
crmpc:P01i_is_domain_of crmpc:PC14_carried_out_by
crmpc:P02_has_range lincs:dzBh4eOT0m6
crmpc:P14.1_in_the_role_of wikidata:Q2085381
crmpc:P01i_is_domain_of crmpc:PC14_carried_out_by
crmpc:P02_has_range wikidata:Q275574
crmpc:P14.1_in_the_role_of wikidata:Q1607826
Frequency of Publication​

Application profile

Definition: This pattern declares that a periodical was published according to a given schedule of frequency.

Type of Value: Uniform Resource Identifier (URI); literal value (integer)

Expected Value: URI from an existing linked data authority; literal value (integer) from AdArchive dataset

Format/Requirements for the Value: URI (preferably dereferenceable); rdfs:literal

Example Values:

Authorities Used:

Generalized Pattern in TTL:

<AdArchive_Serial> a frbroo:F2_Expression ; 
rdfs:label "<AdArchive_Serial>" ;
crm:P94i_was_created_by <serial_creation> .

<serial_publication> a crm:E65_Creation ;
rdfs:label "Creation of <AdArchive_Serial>" ;
crm:P33_used_specific_technique <issuing_rule> .

<issuing_rule> a crm:E29_Design_or_Procedure ;
rdfs:label "Publish <publication_frequency>" ;
crm:P2_has_type wikidata:Q104480093 ;
crm:P43_has_dimension <publication_frequency> .

<publication_frequency> a crm:E54_Dimension ;
rdfs:label "<publication_frequency>" ;
crm:P90_has_value "<publication_frequency>" ;
crm:P91_has_unit <unit> .

<unit> a crm:E58_Measurement_Unit ;
rdfs:label "<unit>" .

wikidata:Q104480093 a crm:E55_Type ;
rdfs:label "frequency" .
Creation of Issues​

Application profile

Definition: This pattern declares that an issue was created.

Type of Value: Uniform Resource Identifier (URI)

Expected Value: URI from an existing linked data authority or minted by LINCS

Format/Requirements for the Value: URI (preferably dereferenceable)

Example Values:

Authorities Used:

AdArchive Data Following this Pattern: A specific issue is an issue of Heresies.

Generalized Pattern in TTL:

<Heresies_Issue> a frbroo:F2_Expression ;  
rdfs:label "<Heresies_Issue>" ;
crm:P94i_was_created_by <Heresies_Issue_Creation> .

<Heresies_Issue_Creation> a crm:E65_Creation ;
rdfs:label "Creation of <Heresies_Issue>" ;
crm:P14_carried_out_by wikidata:Q20857976 ;
crm:P2_has_type event:ProductionEvent , event:PublishingEvent , lincs:B1Gmq0t3eQR .

wikidata:Q20857976 a crm:E74_Group ;
rdfs:label "Heresies Collective" .

event:ProductionEvent a crm:E55_Type ;
rdfs:label "production event" .

event:PublishingEvent a crm:E55_Type ;
rdfs:label "publishing event" .

lincs:B1Gmq0t3eQR a crm:E55_Type ;
rdfs:label "Publication of a part of a series, eg. an issue of a periodical" .
Creation of Advertisements​

Application profile

Pattern/Structure ValuesDefinitionThis pattern declares that an advertisement was created.
Abstraction

frbroo:F2_Expression
β†’ crm:P94i_was_created_by β†’ crm:E65_Creation
β†’ crm:P2_has_type β†’ crm

event:ProductionEvent, aat:300213176

β†’ crm:P14_carried_out_by β†’ crm:E39_Actor

Content ValuesType of ValueUniform Resource Identifier (URI)
Expected ValueURI minted by LINCS
Format/Requirements for the ValueURI (preferably dereferenceable)
Example Values

<http://id.lincsproject.ca/3QNAyS85IdG>;


<http://id.lincsproject.ca/bspJWTWGH6a>;


<http://id.lincsproject.ca/R7r9QpL5ZWd>

Case ExamplesTypical Example & Abstraction

The AdArchive dataset states that the Heresies 4 Diana Press Publications advertisement was created by Diana Press.

<lincs:LRK8dZhmUxZ>
β†’ crm:P94i_was_created_by β†’ <lincs:qr7w6D9Rinl>
β†’ crm:P2_has_type β†’ <event:ProductionEvent> , <aat:300213176>
β†’ crm:P14_carried_out_by β†’ <viaf:298361182>

Edge Case Example & AbstractionN/A
Resource Links

The Getty Research Institute. (2017, March 7). Art & Architecture Thesaurus Online.

https://www.getty.edu/research/tools/vocabularies/aat/

Library of Congress. (2021, July 26). Library of Congress Names .

https://id.loc.gov/authorities/names.html

Library of Congress. (2018, December 19). Library of Congress Providers.

https://id.loc.gov/entities/providers.html

The Wikimedia Foundation. (2021). Wikidata.

https://www.wikidata.org/

Discussion Elements Pertaining to the PatternN/A
AdArchive Data Following this PatternThere is an advertisement that was created by an actor

Generalized Pattern in TTL:

<AdArchive_ad> a frbroo:F2_Expression ; 
rdfs:label "<Issue> <AdArchive_ad> advertisement" ;
crm:P94i_was_created_by <advertisement_creation> .

<advertisement_creation> a crm:E65_Creation ;
rdfs:label "Creation of <AdArchive_ad>" ;
crm:P2_has_type event:ProductionEvent , aat:300213176 .
crm:P14_carried_out_by <AdArchive_creator> .

event:ProductionEvent a crm:E55_Type ;
rdfs:label "production event" .

aat:300213176 a crm:E55_Type ;
rdfs:label "print advertising" .

<AdArchive_creator> a crm:E39_Actor ;
rdfs:label "<AdArchive_creator>" .
Creation of Issue & Advertisement Contents​

Application profile

Pattern/Structure ValuesDefinition

This pattern declares that contents of advertisements or issues were created.

Abstraction

frbroo:F2_Expression β†’ crm:P94i_was_created_by β†’ crm:E65_Creation
β†’ crm:P14_carried_out_by β†’ crm:E39_Actor
β†’ crm:P2_has_type β†’ crm:E55_Type

Content ValuesType of ValueUniform Resource Identifier (URI)
Expected ValueURI from an existing linked data authority or minted by LINCS
Format/Requirements for the ValueURI (preferably dereferenceable)
Example Values

<http://id.lincsproject.ca/cjdkt1aqAVA>; <http://id.lincsproject.ca/dSMXApmvZou>; <http://id.lincsproject.ca/dSf8w5YwZYw>

Case ExamplesTypical Example & Abstraction

The AdArchive dataset states that the article β€œThe Theater of Pirandello” was created by Antonio Gramsci.

<lincs:WMoawe4XJV3> β†’ crm:P94i_was_created_by β†’ <lincs:uTwmkKQMQbq>
β†’ crm:P14_carried_out_by β†’ <wikidata:Q83003>
β†’ crm:P2_has_type β†’ <event:ProductionEvent>

Edge Case Example & Abstraction

The AdArchive dataset states that there is an issue of Conditions that was created by the group β€œConditions (Organization)” in Autumn of 1977.

<lincs:o2OgP8u2kFq> β†’ crm:P94i_was_created_by β†’ <lincs:PgedOUIDU5c>
β†’ crm:P14_carried_out_by β†’ <lincs:yio7e1bVqXC>
β†’ crm:P4_has_time_span β†’ crm:E52_Time-Span
β†’ crm:P82_at_some_time_within β†’ β€œAutumn 1977”
β†’ crm:P82a_begin_of_the_begin β†’ β€œ1977-01-01”
β†’ crm:P82b_end_of_the_end β†’ β€œ1977-12-31”

Resource Links

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#

The Getty Research Institute. (2017, March 7). Art & Architecture Thesaurus Online.

https://www.getty.edu/research/tools/vocabularies/aat/

Library of Congress. (2021, July 26). Library of Congress Names .

https://id.loc.gov/authorities/names.html

Online Computer Library Centre, Inc. (2021). VIAF: The Virtual International Authority File. http://viaf.org

The Wikimedia Foundation. (2021). Wikidata.

https://www.wikidata.org/

Discussion Elements Pertaining to the Pattern

<content_type> can be: written contents (articles, intellectual content: event:ProductionEvent, aat:300054698); written contents (reviews: event:ProductionEvent, aat:300054698, aat:300054688 [optional]); written creative contents (poems, fiction: event:ProductionEvent, aat:300054698, aat:300404387 [optional]); artistic contents (art: event:ProductionEvent, aat:300404387, aat:300379398).

AdArchive Data Following this PatternA specific newsletter being advertised

Generalized Pattern in TTL:

<Issue_or_ad_contents> a frbroo:F2_Expression ;
rdfs:label "<Issue_or_ad_contents>" ;
crm:P94i_was_created_by <Issue_or_ad_contents_creation> .

<Issue_or_ad_contents_creation> a crm:E65_Creation ;
rdfs:label "Creation of <Issue_or_ad_contents>" ;
crm:P14_carried_out_by <AdArchive_Creator> ;
crm:P2_has_type <content_type> .

<AdArchive_Creator> a crm:E39_Actor ;
rdfs:label "<AdArchive_Creator>" .

<content_type> a crm:E55_Type ;
rdfs:label "<content_type>" .

Groups, Part-Whole Relationships​

Issues of Periodicals​

Application profile

Pattern/Structure ValuesDefinition

This pattern declares that serial works include individual parts such as issues.

Abstraction

frbroo:F2_Expression β†’ crm:P148_has_component β†’ frbroo:F2_Expression


frbroo:F2_Expression β†’ crm:P148i_is_component_of β†’ frbroo:F2_Expression

Content ValuesType of ValueUniform Resource Identifier (URI)
Expected ValueURI from an existing linked data authority or minted by LINCS
Format/Requirements for the ValueURI (preferably dereferenceable)
Example Values

<http://www.wikidata.org/entity/Q1713208>; <http://worldcat.org/entity/work/id/57511158>; <http://id.lincsproject.ca/uLRDq6wshdc>

Case ExamplesTypical Example & Abstraction

The AdArchive dataset states that the periodical Jump Cut, which is included in an advertisement in Heresies Issue 4, has a member called Jump Cut 16, which is an issue of Jump Cut. Inversely, Jump Cut 16 is a member of Jump Cut.

<wikidata:Q1713208> β†’ crm:P148_has_component β†’ <lincs:roM1UGkvZSS>


<lincs:roM1UGkvZSS> β†’ crm:P148i_is_component_of β†’ <wikidata:Q1713208>

Edge Case Example & AbstractionN/A
Resource Links

Library of Congress. (2021, July 26). Library of Congress Catalog Works.

https://id.loc.gov/resources/works.html

Online Computer Library Centre, Inc. (2021). WorldCat. https://www.worldcat.org

The Wikimedia Foundation. (2021). Wikidata.

https://www.wikidata.org/

Discussion Elements Pertaining to the PatternN/A
AdArchive Data Following this PatternA specific issue is an issue of Heresies

Generalized Pattern in TTL:

<Periodical> a frbroo:F2_Expression ; 
rdfs:label "<Periodical>" ;
crm:P148_has_component <Periodical_Issue> .

<Periodical_Issue> a frbroo:F2_Expression ;
rdfs:label "<Periodical_Issue>" ;
crm:P148i_is_component_of <Periodical> .
Components of Issues: Advertisements & Contents​

Application profile

Pattern/Structure ValuesDefinition

This pattern declares that individual issues include individual parts such as advertisements and other contents.

Abstraction

frbroo:F2_Expression β†’ crm:P148_has_component β†’ frbroo:F2_Expression


frbroo:F2_Expression β†’ crmP148i_is_component_of β†’ frbroo:F2_Expression

Content ValuesType of ValueUniform Resource Identifier (URI)
Expected ValueURI from an existing linked data authority or minted by LINCS
Format/Requirements for the ValueURI (preferably dereferenceable)
Example Values

<http://worldcat.org/entity/work/id/38992393>; <http://id.lincsproject.ca/7w12DoyR2ZV>; <http://id.lincsproject.ca/20p34MlXl5U>;

Case ExamplesTypical Example & Abstraction

The AdArchive dataset states that the Women’s Traditional Arts issue of Heresies has the Gaysweek advertisement as a component and inversely the Gaysweek advertisement is a component of the Women’s Traditional Arts issue.

<worldcat:38992393> β†’ crm:P148_has_component β†’ <lincs:7PlqZeTZksO>


<flincs:7PlqZeTZksO> β†’ crmP148i_is_component_of β†’ <worldcat:38992393>

Edge Case Example & AbstractionN/A
Resource Links

Online Computer Library Centre, Inc. (2021). WorldCat. https://www.worldcat.org

Library of Congress. (2021, July 26). Library of Congress Catalog Works.

https://id.loc.gov/resources/works.html

The Wikimedia Foundation. (2021). Wikidata.

https://www.wikidata.org/

Discussion Elements Pertaining to the PatternN/A
AdArchive Data Following this PatternThe advertisement and other contents are published in an issue

Generalized Pattern in TTL:

<Periodical_Issue> a frbroo:F2_Expression ; 
rdfs:label "<Periodical_Issue>" ;
crm:P148_has_component <Ads_and_Contents> .

<Ads_and_Contents> a frbroo:F2_Expression ;
rdfs:label "<Ads_and_Contents>" ;
crm:P148i_is_component_of <Periodical_Issue> .
Components of Advertisements​

Application profile

Pattern/Structure ValuesDefinition

This pattern declares that advertisements include individual parts such as text content elements.

Abstraction

frbroo:F2_Expression β†’ crm:P165_incorporates β†’ crm:E73_Information_Object
β†’ crm:P2_has_type β†’ crm:E55_Type
β†’ crm:P190_has_symbolic_content β†’ rdfs:literal

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

URI from an existing linked data authority or minted by LINCS; literal value from the AdArchive dataset

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

β€œThe Radical History Review, issued three time a year, publishes the best marxist and non-marxist radical scholarship in jargon-free English, scrutinizes conventional history, encourages controversy over current historical questions, interviews leading radical historians, suggests new ways of teaching history and stimulates theoretical discussion and political analysis.”; β€œOutside of the cultural field, features on Women & Infanticide, the Criminalization of Immigrant Women, Makeup as Mask, Anorexia Nervosa, Unionized Women vs. Surveillance Systems, Censorship & Women, Strippers Unionizing, and Media Access for Women have appeared in the past two years.”; β€œNews you won’t find anywhere else.”

Case ExamplesTypical Example & Abstraction

The AdArchive dataset states that the Heresies 11 The Radical History Review advertisement incorporates advertising copy with the symbolic content β€œThe Radical History Review, issued three time a year, publishes the best marxist and non-marxist radical scholarship in jargon-free English, scrutinizes conventional history, encourages controversy over current historical questions, interviews leading radical historians, suggests new ways of teaching history and stimulates theoretical discussion and political analysis.”

<lincs:qMT4fWySbOE> β†’ crm:P165_incorporates β†’ lincs:i6VetuJDtL9
β†’ crm:P2_has_type β†’ <worldcat:797842>
β†’ crm:P190_has_symbolic_content β†’

β€œThe Radical History Review, issued three time a year, publishes the best marxist and non-marxist radical scholarship in jargon-free English, scrutinizes conventional history, encourages controversy over current historical questions, interviews leading radical historians, suggests new ways of teaching history and stimulates theoretical discussion and political analysis.”

Edge Case Example & AbstractionN/A
Resource Links

IIIF Consortium. (n.d.). International Image Interoperability Framework. https://iiif.io

Online Computer Library Centre, Inc. (2021). WorldCat. https://www.worldcat.org

The Wikimedia Foundation. (2021). Wikidata.

https://www.wikidata.org/

Discussion Elements Pertaining to the PatternN/A
AdArchive Data Following this PatternThings being incorporated in an advertisement

Generalized Pattern in TTL:

<AdArchive_ad> a frbroo:F2_Expression ;
rdfs:label "<Heresies_Issue> <AdArchive_ad>" ;
crm:P165_incorporates <AdArchive_ad_part> .

<AdArchive_ad_part> a crm:E33_Linguistic_Object;
rdfs:label "Advertising copy about <AdArchive_ad_part>" ;
crm:P2_has_type <ad_part_type> ;
crm:P190_has_symbolic_content "<AdArchive_ad_part>" .

<ad_part_type> a crm:E55_Type ;
rdfs:label "<ad_part_type>" .

Contents of Works​

Subject of Advertisement​

Application profile

Pattern/Structure ValuesDefinition

This pattern declares that advertisements are about (advertise) things such as an organization, newsletter, journal, issue, price, etc.

Abstraction

crm:E89_Propositional_Object β†’ crm:P129_is_about β†’ crm:E1_CRM_Entity

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

URI from an existing linked data authority or minted by LINCS; literal value (text) from the AdArchive dataset

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

<http://www.wikidata.org/entity/Q5026000>; <https://id.loc.gov/resources/works/7563478>; <http://id.loc.gov/entities/providers/e3ccdff52e60985045bab51ab9f7ec2f>; <http://id.loc.gov/resources/instances/19699885>; <http://worldcat.org/entity/work/id/2863510477>; β€œwomen’s culture”

Case ExamplesTypical Example & Abstraction

The AdArchive dataset states that an advertisement in Heresies 6 is about the journal Feminist Studies.

<lincs:41MHIWvLt31> β†’ crm:P129_is_about β†’ <wikidata:Q1404511>

Edge Case Example & AbstractionN/A
Resource Links

Library of Congress. (2019, June 20). Library of Congress Catalog Instances.

https://id.loc.gov/resources/instances.html

Library of Congress. (2021, July 26). Library of Congress Catalog Works.

https://id.loc.gov/resources/works.html

Library of Congress. (2021, July 26). Library of Congress Names.

https://id.loc.gov/authorities/names.html

Library of Congress. (2018, December 19). Library of Congress Providers.

https://id.loc.gov/entities/providers.html

Online Computer Library Centre, Inc. (2021). VIAF: The Virtual International Authority File. http://viaf.org

Online Computer Library Centre, Inc. (2021). WorldCat. https://www.worldcat.org

The Wikimedia Foundation. (2021). Wikidata.

https://www.wikidata.org/

Discussion Elements Pertaining to the PatternN/A
AdArchive Data Following this Pattern

The advertisement advertises an organization; the advertisement advertises a newsletter; the advertisement advertises a specific newsletter; the advertisement advertises a price

Generalized Pattern in TTL:

<AdArchive_ad> a frbroo:F2_Expression ; 
rdfs:label "<Issue> <AdArchive_ad> advertisement" ;
crm:P129_is_about <Ad_Aboutness> .

<Ad_Aboutness> a crm:E1_CRM_Entity;
rdfs:label "<Ad_Aboutness>" .
Advertised Price​

Application profile

Pattern/Structure ValuesDefinition

This pattern declares that an advertisement thing has a price, which is also advertised in the advertisement.

Abstraction

crm:E13_Attribute_Assignment
β†’ crm:P2_has_type β†’ crm:E55_Type
β†’ crm:P140_assigned_attribute_to β†’ frbroo:F2_Expression
β†’ crm:P141_assigned β†’ crm:E97_Monetary_Amount
β†’ crm:P2_has_type β†’ crm:E55_Type
β†’ crm:P90_has_value β†’ rdfs:literal
β†’ crm:P180_has_currency β†’ crm:E98_Currency

Content ValuesType of ValueUniform Resource Identifier (URI); literal values (text, integer)
Expected Value

URI from an existing linked data authority or minted by LINCS; Literal values (text, integer) from the AdArchive dataset

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

<https://schema.org/ListPrice>; <http://www.wikidata.org/entity/Q1072012>; <https://id.loc.gov/resources/works/11313169>; <http://id.loc.gov/resources/instances/19699885>; <http://worldcat.org/entity/work/id/41603340>; <http://id.lincsproject.ca/ACJVaMvS8xQ>; β€œ10”; β€œ45.00”; β€œ8.50”; β€œ31.81”

Case ExamplesTypical Example & Abstraction

The AdArchive dataset states that the journal Jump Cut has a domestic subscription list price of 4 US dollars.

<lincs:TL9dEszedlb> a crm:E13_Attribute_Assignment
β†’ crm:P2_has_type β†’

<schema:ListPrice> , <wikidata:Q43006303> , <lcsh:sh2008109889>


β†’ crm:P140_assigned_attribute_to β†’ <wikidata:Q1713208>
β†’ crm:P141_assigned β†’ <lincs:uRSD9bGRmAu>
β†’ crm:P2_has_type β†’ <wikidata:Q160151>
β†’ crm:P90_has_value β†’ β€œ4.00”
crm:P180_has_currency β†’ <wikidata:Q4917>

Edge Case Example & AbstractionN/A
Resource Links

Google, Yahoo!, Microsoft, & Yandex. (2021, July 7). Schema.org . https://schema.org

Library of Congress. (2019, June 20). Library of Congress Catalog Instances.

https://id.loc.gov/resources/instances.html

Library of Congress. (2021, July 26). Library of Congress Catalog Works.

https://id.loc.gov/resources/works.html

Library of Congress. (2021, August 2). Library of Congress Subject Headings.

https://id.loc.gov/authorities/subjects.html

Online Computer Library Centre, Inc. (2021). WorldCat. https://www.worldcat.org

The Wikimedia Foundation. (2021). Wikidata.

https://www.wikidata.org/

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
AdArchive Data Following this PatternThe price being advertised

Generalized Pattern in TTL:

<Measurement_Event> a crm:E13_Attribute_Assignment ; 
rdfs:label "Pricing for <publication>" ;
crm:P2_has_type <value_type> ;
crm:P140_assigned_attribute_to <AdArchive_ad> ;
crm:P141_assigned <price> .

<value_type> a crm:E55_Type ;
rdfs:label "<value_type>" .

<publication> a frbroo:F2_Expression ;
rdfs:label "<publication>" .

<price> a crm:E97_Monetary_Amount ;
rdfs:label "<price>" ;
crm:P90_has_value "<price>" ;
crm:P2_has_type <price_type> ;
crm:P180_has_currency <currency> .

<price_type> a crm:E55_Type ;
rdfs:label "<price_type>" .

<currency> a crm:E98_Currency ;
rdfs:label "<currency>" .

People and Organizations​

Contact Points​

Address​

Application profile

Pattern/Structure ValuesDefinition

This pattern declares that an organization could be contacted at an address.

Abstraction

crm:E74_Group β†’ crm:P74_has_current_or_former_residence β†’ crm:E53_Place
β†’ crm:P1_is_identified_by β†’ crm:E33_E41_Linguistic_Appellation
β†’ crm:P190_has_symbolic_content β†’ rdfs:literal
β†’ crm:P2_has_type β†’ crm

wikidata:Q319608

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

β€œWCA, 731 - 44th Avenue, San Francisco, CA 94121”; β€œEditorial Office Feminist: Japan, 6-5-8 Todoroki, Setagaya-ku, Tokyo, Japan 158”; β€œFairview Park, Elmsford, New York 10523, USA”

Case ExamplesTypical Example & Abstraction

The AdArchive dataset states that the Women’s Caucus for Art resides at a place identified by the address β€œWCA, 731 - 44th Avenue, San Francisco, CA 94121.”

<wikidata:Q8030842> β†’ crm:P74_has_current_or_former_residence β†’ crm:E53_Place
β†’ crm:P1_is_identified_by β†’ crm:E33_E41_LinguisticAppellation
β†’ crm:P190_has_symbolic_content β†’ β€œWCA, 731 - 44th Avenue, San Francisco, CA 94121”
β†’ crm:P2_has_type β†’ <wikidata:Q319608>

Edge Case Example & Abstraction

The address also serves as a contact point for the actor.

<wikidata:Q8030842> β†’ crm:P76_has_contact_point β†’


crm:E33_E41_Linguistic_Appellation
β†’ crm:P190_has_symbolic_content β†’ β€œWCA, 731 - 44th Avenue, San Francisco, CA 94121”

Resource Links

The Wikimedia Foundation. (2021). Wikidata.

https://www.wikidata.org/

Online Computer Library Centre, Inc. (2021). VIAF: The Virtual International Authority File. http://viaf.org

Discussion Elements Pertaining to the PatternN/A
AdArchive Data Following this PatternThe organization being advertised has an address

Generalized Pattern in TTL:

<AdArchive_Organization> a crm:E74_Group ;
rdfs:label "<AdArchive_Organization>" ;
crm:P74_has_current_or_former_residence <AdArchive_Place> ;
crm:P76_has_contact_point <address> .

<AdArchive_Place> a crm:E53_Place ;
rdfs:label "<AdArchive_Organization> location" ;
crm:P1_is_identified_by <address> .

<address> a crm:E33_E41_Linguistic_Appellation ;
rdfs:label "Mailing address for <AdArchive_Organization>" ;
crm:P2_has_type wikidata:Q319608 ;
crm:P190_has_symbolic_content "<address>" .

wikidata:Q319608 a crm:E55_Type ;
rdfs:label "address" .
Phone Number​

Application profile

Pattern/Structure ValuesDefinition

This pattern declares that an organization could be contacted at a phone number.

Abstraction

crm:E74_Group β†’ crm:P74_has_current_or_former_residence β†’ crm:E53_Place
β†’ crm:P1_is_identified_by β†’ crm:E41_Appellation
β†’ crm:P2_has_type β†’ crm

wikidata:Q214995

β†’ crm:P190_has_symbolic_content β†’ rdfs:literal

Content ValuesType of Valueliteral value (text)
Expected ValueLiteral value from the AdArchive dataset
Format/Requirements for the Valuerdfs:literal
Example Valuesβ€œ415-221-5125”; β€œ416-967-9309”; β€œ617-661-3567”
Case ExamplesTypical Example & Abstraction

The AdArchive dataset states that the location of the Women’s Caucus for Art is identified by the phone number 415-221-5125.

<wikidata:Q8030842> β†’ crm:P74_has_current_or_former_residence β†’ crm:E53_Place
β†’ crm:P1_is_identified_by
β†’ crm:E41_Appellation
β†’ crm:P2_has_type β†’ <wikidata:Q214995>
β†’ crm:P190_has_symbolic_content β†’ β€œ415-221-5125”

Edge Case Example & Abstraction

The phone number also serves as a contact point for the actor.

<wikidata:Q8030842> β†’ crm:P76_has_contact_point β†’


crm:E41_Appellation
β†’ crm:P2_has_type β†’ <wikidata:Q214995>
β†’ crm:P190_has_symbolic_content β†’ β€œ415-221-5125”

Resource Links

The Wikimedia Foundation. (2021). Wikidata.

https://www.wikidata.org/

Online Computer Library Centre, Inc. (2021). VIAF: The Virtual International Authority File. http://viaf.org

Discussion Elements Pertaining to the PatternN/A
AdArchive Data Following this PatternThe organization being advertised has a phone number

Generalized Pattern in TTL:

<AdArchive_Organization> a crm:E74_Group ;
rdfs:label "<AdArchive_Organization" ;
crm:P74_has_current_or_former_residence <AdArchive_Place> ;
crm:P76_has_contact_point <Telephone_Number> .

<AdArchive_Place> a crm:E53_Place ;
rdfs:label "<AdArchive_Organization> location" ;
crm:P1_is_identified_by <Telephone_Number> .

<Telephone_Number> a crm:E41_Appellation ;
rdfs:label "<AdArchive_Organization> telephone number" ;
crm:P2_has_type wikidata:Q214995 ;
crm:P190_has_symbolic_content "<Telephone_Number>" .

wikidata:Q214995 a crm:E55_Type ;
rdfs:label "telephone number" .

Groups (Organizations)​

Formation​

Application profile

Pattern/Structure ValuesDefinitionThis pattern declares that an organization was formed on a date.
Abstraction

crm:E74_Group β†’ crm:P95i_was_formed_by β†’ crm:E66_Formation
β†’ crm:P4_has_time-span β†’ crm:E52_Time-Span
β†’ crm:P82_at_some_time_wtihin β†’ 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 AdArchive dataset; date-time value from the AdArchive dataset

Format/Requirements for the Valuerdfs:literal; xsd:dateTime
Example Valuesβ€œ1972”’; β€œ1972-01-01T00:00:00”; "1972-01-01"
Case ExamplesTypical Example & Abstraction

The AdArchive dataset states that the Women’s Caucus for Art is a group that was formed in 1987.

<wikidata:Q8030842> β†’ crm:P95i_was_formed_by β†’ crm:E66_Formation
β†’ crm:P4_has_time-span β†’ crm:E52_Time-Span
β†’ crm:P82_at_some_time_within β†’ β€œ1972”
β†’ crm:P82a_begin_of_the_begin β†’ β€œ1972T00:00:00”^^xsd:dateTime
β†’ crm:P82b_end_of_the_end β†’ β€œ1972-12-31T23:59:59”^^xsd:dateTime

Edge Case Example & AbstractionN/A
Resource Links

The Wikimedia Foundation. (2021). Wikidata.

https://www.wikidata.org/

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
AdArchive Data Following this PatternThe organization being advertised was formed in a specific year

Generalized Pattern in TTL:

<AdArchive_Organization> a crm:E74_Group ;
rdfs:label "<AdArchive_Organization>" ;
crm:P95i_was_formed_by <AdArchive_group_formation> .

<AdArchive_group_formation> a crm:E66_Formation ;
rdfs:label "Formation of <AdArchive_Organization>" ;
crm:P4_has_time-span <AdArchive_group_startdate> .

<AdArchive_group_startdate> a crm:E52_Time-Span ;
rdfs:label "<AdArchive_group_startdate>" ;
crm:P82_at_some_time_within "<AdArchive_group_startdate>" ;
crm:P82a_begin_of_the_begin
"<AdArchive_group_startdate>"^^xsd:dateTime ;
crm:P82b_end_of_the_end
"<AdArchive_group_startdate>"^^xsd:dateTime .

Places​

Geographies (Coordinates)​

Application profile

Pattern/Structure ValuesDefinition

This pattern declares that a place is identified by a geographic reference such as coordinates.

Abstraction

crm:E53_Place β†’ crm:P168_place_is_defined_by β†’ rdfs:literal

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

β€œ37.774750, -122.505020”; β€œ40.582110, -73.986980”; β€œ41.928880, -87.649500”

Case ExamplesTypical Example & Abstraction

The AdArchive dataset states that the Women’s Caucus for Art resides at a place which is located at the coordinates β€œ37.774750, -122.505020.”

<lincs:y0cAxtVpahj> β†’ crm:P168_place_is_defined_by β†’ β€œ37.774750, -122.505020”

Edge Case Example & AbstractionN/A
Resource LinksN/A
Discussion Elements Pertaining to the PatternN/A
AdArchive Data Following this Pattern

The organization being advertised is located at specific coordinates

Generalized Pattern in TTL:

<AdArchive_Place> a crm:E53_Place ; 
rdfs:label "Geographic location with coordinates

<AdArchive_Place>" ;
crm:P168_place_is_defined_by "<AdArchive_Place>" .