Citation Counting and Context Characterization Ontology (C4O)

URL
http://purl.org/spar/c4o (alternative at w3id.org)
DOI
10.25504/FAIRsharing.beb855
Documentation
http://purl.org/spar/c4o.html
Source
http://purl.org/spar/c4o.xml (RDF/XML)
http://purl.org/spar/c4o.ttl (Turtle)
http://purl.org/spar/c4o.nt (N-triples)
http://purl.org/spar/c4o.json (JSON-LD)
Repository
https://github.com/sparontologies/c4o
Reference
Di Iorio, A., Nuzzolese, A. G., Peroni, S., Shotton, D., Vitali, F. (2014). Describing bibliographic references in RDF. In Garcia Castro, A., Lange, C., Lord, P., Stevens, R. (Eds.), Proceedings of 4th Workshop on Semantic Publishing (SePublica 2014), CEUR Workshop Proceedings 1155. Aachen, Germany: CEUR-WS.org. http://ceur-ws.org/Vol-1155/paper-05.pdf (Open Access)

Besides defining reference lists and bibliographic references in a machine-readable form, it is also useful to describe how these references are used in the citing paper. In particular, we would need entities that describe all the items introduced in the following figure (where the paper "Intertextual semantics: a semantics for information design" cites "Towards a semantics for XML markup"), i.e.: <img class="img-responsive center-block col-sm-8 pull-right" src="/static/img/spar/c4o-components.png" alt="All the components that characterise a citation act." /> * in-text reference pointers within the citing paper; * links to the bibliographic references denoted by in-text reference pointers; * how much a particular document is locally cited by the citing document – i.e., the total number of in-text reference pointers within the citing paper denoting the same bibliographic reference; how much an article is globally cited (according to particular bibliographic citation service, e.g., [Google Scholar](http://scholar.google.com)); * the contexts involved in a citation – i.e., the part of the citing article containing a particular in-text reference pointer and the part of the cited article that is relevant to such citation. The *Citation Counting and Context Characterization Ontology* (*C4O*) has been developed to allow the description of the above entities. This ontology extends [BiRO](/ontologies/biro) in order to enable the characterisation of bibliographic citations in terms of their presence in an article by means of the following classes: * class ``c4o:InTextReferencePointer`` - an in-text reference pointer is a textual device denoting (property ``c4o:denotes``) a single bibliographic reference that is embedded in the text of a document within the context of a particular sentence; * class ``c4o:InTextReferencePointerList`` - a list containing (through the chain co:item and co:itemContent) only in-text reference pointers denoting the specific bibliographic references to which the list pertains (property c4o:pertains). Such a list cannot contain more than one item containing the same in-text reference pointer; * class ``c4o:SingleReferencePointerList`` - defined as subclass of ``c4o:InTextReferencePointerList``, it is an in-text reference pointer list that pertains to exactly one bibliographic reference; * class ``c4o:SingleLocationPointerList`` - defined as subclass of ``c4o:InTextReferencePointerList``, it is an in-text reference pointer list that pertains to all the in-text reference pointers to two or more references occurring at a single location in the text of the citing work; * class ``c4o:GlobalCitationCount`` - the number of times a work has been cited globally (property ``c4o:hasGlobalCountValue``), as determined from a particular bibliographic information source (property ``c4o:hasGlobalCountSource``) on a particular date (property ``c4o:hasGlobalCountDate``). In addition, C4O provides the ontological structures (shown in the following figure) which allow one to record the number of in-text citations (property ``c4o:hasInTextCitationFrequency``) i.e., the number of in-text reference pointers to a single reference in the reference list of the citing article. <img class="img-responsive center-block" src="/static/img/spar/c4o-diagram.png" alt="The diagram of C4O." /> Moreover, C4O enables ontological descriptions of the context where an in-text reference pointer appears in the citing document (modelled as shown in the following figure), and allows one to relate that context to relevant textual passages in the cited document. <img class="img-responsive center-block" src="/static/img/spar/c4o-in-text-reference.png" alt="The diagram of the C4O module for describing in-text-reference pointers." />

Examples of use of C4O

  1. Describing citation contexts
  2. Keeping track of global citation count

Describing citation contexts

In a particular sentence of the paper entitled "[Intertextual semantics: A semantics for information design](http://dx.doi.org/10.1002/asi.21134)" there is a citation to the paper "[Towards a semantics for XML markup](http://dx.doi.org/10.1145/585058.585081)" made through a in-text reference pointer to a specific bibliographic reference. [C4O](/ontologies/c4o) enables ontological descriptions of the citation context where an in-text reference pointer appears in the citing document, and allows one to relate that context to relevant textual passages in the cited document.

@prefix : <http://www.sparontologies.net/example/> .
@prefix biro: <http://purl.org/spar/biro/> .
@prefix c4o: <http://purl.org/spar/biro/> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix doco: <http://purl.org/spar/doco/> .
@prefix frbr: <http://purl.org/vocab/frbr/core#> .

<http://dx.doi.org/10.1002/asi.21134>
    frbr:part :in-text-renear02 , :renear02 .

:in-text-renear02 a c4o:InTextReferencePointer ;
    c4o:denotes :renear02 ;
    c4o:hasContext :citation-sentence .

:renear02 a biro:BibliographicReference ;
    dcterms:bibliographicCitation
        "Renear, A., Dubin, D. & Sperberg-McQueen, C.M. (2002).
        Towards a semantics for XML markup. In E. Mudson (Chair),
        Proceedings of the ACM Symposium on Document Engineering,
        (pp. 119-126). New York: ACM Press." ;
    biro:references <http://dx.doi.org/10.1145/585058.585081> .

:citation-sentence a doco:Sentence ;
    c4o:hasContent
        "Renear, Dubin, and Sperberg-McQueen (2002, pp. 121-122)
        proposed a formal semantic approach for structured documents." .

<http://dx.doi.org/10.1145/585058.585081>
    frbr:part :cited-sentence .

:cited-sentence a doco:Sentence ;
    c4o:hasContent
        "Markup semantics are modeled computationally by applying
        knowledge representation technologies to the problem of making
        those structures, relationships, and properties explicit." ;
	c4o:isRelevantTo :citation-sentence .

Please cite the source above with the following reference:

Peroni, Silvio (2015): Example of use of C4O #1. figshare. http://dx.doi.org/10.6084/m9.figshare.1536253


Keeping track of global citation count

[C4O](/ontologies/c4o) allows one to record the number of citations a cited entity has received globally (property ``c4o:hasGlobalCitationCount``), as determined by a bibliographic information resource (property ``c4o:hasGlobalCountSource``) such as [Google Scholar](http://scholar.google.com), [Scopus](http://www.scopus.com) or [Web of Knowledge](http://apps.isiknowledge.com) on a particular date (property ``c4o:hasGlobalCountDate``). For instance we can write a set of assertions according to C4O that describe how many times the reference - contained in the paper "[Intertextual semantics: A semantics for information design](http://dx.doi.org/10.1002/asi.21134)" and referring to the paper "[Towards a semantics for XML markup](http://dx.doi.org/10.1145/585058.585081)" - is used within the citing article and how much the cited article is globally cited according to Google Scholar.

@prefix : <http://www.sparontologies.net/example/> .
@prefix biro: <http://purl.org/spar/biro/> .
@prefix c4o: <http://purl.org/spar/biro/> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix doco: <http://purl.org/spar/doco/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix frbr: <http://purl.org/vocab/frbr/core#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

<http://dx.doi.org/10.1002/asi.21134>
    frbr:part :renear02 .

:renear02 a biro:BibliographicReference ;
    dcterms:bibliographicCitation
        "Renear, A., Dubin, D. & Sperberg-McQueen, C.M. (2002).
        Towards a semantics for XML markup. In E. Mudson (Chair),
        Proceedings of the ACM Symposium on Document Engineering,
        (pp. 119-126). New York: ACM Press." ;
    biro:references <http://dx.doi.org/10.1145/585058.585081> ;
    c4o:hasInTextCitationFrequency "1"^^xsd:nonNegativeInteger .

<http://dx.doi.org/10.1145/585058.585081>
    c4o:hasGlobalCitationFrequency :g-citation-2014-03-17 .

:g-citation-2014-03-17 a c4o:GlobalCitationCount ;
    c4o:hasGlobalCountDate "2014-03-17"^^xsd:date ;
    c4o:hasGlobalCountSource :google-scholar ;
    c4o:hasGlobalCountValue "5"^^xsd:nonNegativeInteger .

:google-scholar a c4o:BibliographicInformationSource ;
    foaf:homepage <http://scholar.google.com> .

Please cite the source above with the following reference:

Peroni, Silvio (2015): Example of use of C4O #2. figshare. http://dx.doi.org/10.6084/m9.figshare.1536254