<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
   xmlns:bibo="http://purl.org/ontology/bibo/"
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:dcterms="http://purl.org/dc/terms/"
   xmlns:foaf="http://xmlns.com/foaf/0.1/"
   xmlns:owl="http://www.w3.org/2002/07/owl#"
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
   xmlns:schema="https://schema.org/"
   xmlns:skos1="http://www.w3.org/2008/05/skos#"
   xmlns:swrl="http://www.w3.org/2003/11/swrl#"
   xmlns:vann="http://purl.org/vocab/vann/"
   xmlns:vs="http://www.w3.org/2003/06/sw-vocab-status/ns#"
>
  <rdf:Description rdf:about="http://purl.org/spar/c4o">
    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Ontology"/>
    <rdfs:label xml:lang="en">Citation Counting and Context Characterization Ontology (C4O)</rdfs:label>
    <dc:creator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">David Shotton (https://orcid.org/0000-0001-5506-523X)</dc:creator>
    <dc:creator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Silvio Peroni (https://orcid.org/0000-0003-0530-4305)</dc:creator>
    <dc:collaborator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Sebastian Barzaghi (https://orcid.org/0000-0002-0799-1527)</dc:collaborator>
    <dc:date>2026-08-14</dc:date>
    <dc:description xml:lang="en">
The **_Citation Counting and Context Characterization Ontology (C4O)_** allows the characterization of bibliographic citations in terms of their number and their context.

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 situation where a document - i.e., the paper 'Intertextual semantics: a semantics for information design' - cites another - i.e., 'Towards a semantics for XML markup'). Those entities include:
* 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);
* 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 architecture of C4O.](c4o.png)

C4O has been developed to allow the description of the above entities. 
This ontology extends [BiRO](http://purl.org/spar/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 (`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 (`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 (`c4o:hasGlobalCountValue`), as determined from a particular bibliographic information source (`c4o:hasGlobalCountSource`) on a particular date (`c4o:hasGlobalCountDate`).

In addition, C4O provides the ontological structures which allow one to record the number of in-text citations (`c4o:hasInTextCitationFrequency`) i.e., the number of in-text reference pointers to a single reference in the reference list of the citing article.

![A detail on modelling in-text reference pointers using BiRO.](c4o-pointer.png)

Moreover, C4O enables ontological descriptions of the 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.

## Examples of use

In the following subsections, we introduce some examples to showcase how to use C4O. 

The prefixes that are used in all the examples provided below are defined as follows:

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

### Describing citation contexts

In a particular sentence of the paper entitled 'Intertextual semantics: A semantics for information design' there is a citation to the paper 'Towards a semantics for XML markup' made through a in-text reference pointer to a specific bibliographic reference.

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.

    &lt;http://dx.doi.org/10.1002/asi.21134&gt;
        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. &amp; 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 &lt;http://dx.doi.org/10.1145/585058.585081&gt; .

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

    &lt;http://dx.doi.org/10.1145/585058.585081&gt;
        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 .

### Keeping track of global citation count 

C4O allows one to record the number of citations a cited entity has received globally (`c4o:hasGlobalCitationCount`), as determined by a bibliographic information resource (`c4o:hasGlobalCountSource`) such as Google Scholar, Scopus or Web of Knowledge on a particular date (`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' and referring to the paper 'Towards a semantics for XML markup' - is used within the citing article and how much the cited article is globally cited according to Google Scholar.

    &lt;http://dx.doi.org/10.1002/asi.21134&gt;
        frbr:part :renear02 .

    :renear02 a biro:BibliographicReference ;
        dcterms:bibliographicCitation
            'Renear, A., Dubin, D. &amp; 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 &lt;http://dx.doi.org/10.1145/585058.585081&gt; ;
        c4o:hasInTextCitationFrequency  "1"^^xsd:nonNegativeInteger .

    &lt;http://dx.doi.org/10.1145/585058.585081&gt;
        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 &lt;http://scholar.google.com&gt; .

## Competency Questions

BiRO can be used for answering several questions related to bibliographic records and references.
In the following subsections, some of them are introduced together with their respective SPARQL queries. 

The prefixes that are used in all the SPARQL queries provided below are defined as follows:

    PREFIX biro: &lt;http://purl.org/spar/biro/&gt;
    PREFIX co: &lt;http://purl.org/co/&gt;
    PREFIX dcterms: &lt;http://purl.org/dc/terms/&gt;
    PREFIX frbr: &lt;http://purl.org/vocab/frbr/core#&gt;&gt;
    PREFIX foaf: &lt;http://xmlns.com/foaf/0.1/&gt;
    PREFIX literal: &lt;http://www.essepuntato.it/2010/06/literalreification/&gt;

### CQ1

Which bibliographic references and citation contexts are associated with an in-text reference pointer?

    SELECT ?inTextPointer ?reference ?context ?contextContent
    WHERE {
        ?inTextPointer a c4o:InTextReferencePointer  ;
            c4o:denotes  ?reference ;
            c4o:hasContext  ?context .
        OPTIONAL { ?context c4o:hasContent ?contextContent . }
    }

### CQ2

Which textual passages in a cited document are relevant to a citing context?

    SELECT ?citingContext ?citingContent ?citedPassage ?citedContent
    WHERE {
        ?citedPassage c4o:isRelevantTo  ?citingContext .
        OPTIONAL { ?citingContext c4o:hasContent ?citingContent . }
        OPTIONAL { ?citedPassage c4o:hasContent ?citedContent . }
    }

### CQ3

What is the in-text citation frequency of a bibliographic reference within a citing document?

    SELECT ?reference ?frequency ?citedWork
    WHERE {
        ?reference a biro:BibliographicReference ;
            c4o:hasInTextCitationFrequency  ?frequency .
        OPTIONAL { ?reference biro:references ?citedWork . }
    }

### CQ4

What is the global citation count of a document, including the source and measurement date?

    SELECT ?document ?citationCount ?countValue ?source ?date
    WHERE {
        ?document c4o:hasGlobalCitationFrequency ?citationCount .
        ?citationCount a c4o:GlobalCitationCount ;
            c4o:hasGlobalCountValue  ?countValue ;
            c4o:hasGlobalCountSource ?source ;
            c4o:hasGlobalCountDate ?date .
    }

### CQ5

What information sources are used to track global citation counts, along with their homepages?

    SELECT ?source ?homepage
    WHERE {
        ?source a c4o:BibliographicInformationSource  .
        OPTIONAL { ?source foaf:homepage ?homepage . }
    }

</dc:description>
    <dc:title xml:lang="en">The Citation Counting and Context Characterization Ontology (C4O)</dc:title>
    <owl:imports rdf:resource="http://purl.org/spar/biro"/>
    <owl:backwardCompatibleWith rdf:resource="http://purl.org/spar/c4o/2018-06-22"/>
    <owl:priorVersion rdf:resource="http://purl.org/spar/c4o/2018-06-22"/>
    <owl:versionIRI rdf:resource="http://purl.org/spar/c4o/2026-08-14"/>
    <dcterms:bibliographicCitation>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)</dcterms:bibliographicCitation>
    <dcterms:created>2013-05-11</dcterms:created>
    <dcterms:issued>2018-06-22</dcterms:issued>
    <dcterms:modified>2026-08-14</dcterms:modified>
    <bibo:doi>https://doi.org/10.25504/FAIRsharing.beb855</bibo:doi>
    <vann:preferredNamespacePrefix xml:lang="en">c4o</vann:preferredNamespacePrefix>
    <vann:preferredNamespaceUri xml:lang="en">http://purl.org/spar/c4o</vann:preferredNamespaceUri>
    <rdfs:seeAlso rdf:resource="http://www.sparontologies.net/ontologies/c4o"/>
    <dcterms:license rdf:resource="http://creativecommons.org/licenses/by/4.0/"/>
    <dcterms:publisher rdf:resource="https://ror.org/00wb4mk85"/>
    <dcterms:source rdf:resource="https://github.com/sparontologies/c4o/docs/cq.md"/>
    <foaf:logo rdf:resource="https://github.com/SPAROntologies/c4o/blob/master/spar.png"/>
    <schema:codeRepository rdf:resource="https://github.com/SPAROntologies/c4o"/>
    <schema:includedInDataCatalog rdf:resource="https://fairsharing.org/"/>
    <bibo:status rdf:resource="http://purl.org/ontology/bibo/status/published"/>
    <owl:versionInfo xml:lang="en">1.3.1</owl:versionInfo>
    <schema:keywords xml:lang="en">semantic publishing</schema:keywords>
    <schema:keywords xml:lang="en">scholarly publishing</schema:keywords>
    <schema:keywords xml:lang="en">bibliographic references</schema:keywords>
    <schema:keywords xml:lang="en">scientometrics</schema:keywords>
    <schema:keywords xml:lang="en">bibliometrics</schema:keywords>
    <schema:image rdf:resource="https://github.com/SPAROntologies/c4o/blob/master/docs/current/c4o.png"/>
  </rdf:Description>
  <rdf:Description rdf:about="http://purl.org/spar/c4o/denotes">
    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
    <rdfs:label xml:lang="en">denotes</rdfs:label>
    <rdfs:comment xml:lang="en">The relation between an in-text reference pointer and the bibliographic reference it points to.</rdfs:comment>
    <rdfs:domain rdf:resource="http://purl.org/spar/c4o/InTextReferencePointer"/>
    <rdfs:range rdf:resource="http://purl.org/spar/biro/BibliographicReference"/>
    <rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
    <owl:inverseOf rdf:resource="http://purl.org/spar/c4o/isDenotedBy"/>
    <vann:example>
    :my-bibliographic-reference a biro:BibliographicReference ;
        dcterms:bibliographicCitation
            'Renear, A., Dubin, D. &amp; 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 :my-article .

    :my-in-text-reference-pointer a c4o:InTextReferencePointer ;
        c4o:denotes :my-bibliographic-reference .
    </vann:example>
    <rdfs:isDefinedBy rdf:resource="http://purl.org/spar/c4o/"/>
    <vs:term_status rdf:resource="http://purl.org/linked-data/registry#statusStable"/>
  </rdf:Description>
  <rdf:Description rdf:about="http://purl.org/spar/c4o/hasGlobalCitationFrequency">
    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
    <rdfs:label xml:lang="en">has global citation frequency</rdfs:label>
    <rdfs:comment xml:lang="en">The relation between a publication entity and its global citation count, according to a particular information source on a particular date.</rdfs:comment>
    <rdfs:domain rdf:resource="http://purl.org/vocab/frbr/core#Endeavour"/>
    <rdfs:range rdf:resource="http://purl.org/spar/c4o/GlobalCitationCount"/>
    <rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
    <vann:example>
    :my-article
        c4o:hasGlobalCitationFrequency :my-global-citation-count .

    :my-global-citation-count a c4o:GlobalCitationCount ;
        c4o:hasGlobalCountValue  '5'^^xsd:nonNegativeInteger .
    </vann:example>
    <rdfs:isDefinedBy rdf:resource="http://purl.org/spar/c4o/"/>
    <vs:term_status rdf:resource="http://purl.org/linked-data/registry#statusStable"/>
  </rdf:Description>
  <rdf:Description rdf:about="http://purl.org/spar/c4o/hasContext">
    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
    <rdfs:label xml:lang="en">has context</rdfs:label>
    <skos1:note xml:lang="en">Any FRBR expression that constitutes the range of this property can have at most one particular literal textual content specified through the property `c4o:hasContent`.</skos1:note>
    <rdfs:comment xml:lang="en">The textual context (e.g. a sentence or a paragraph) of a particular in-text reference pointer, providing the rhetorical motivation for the existence of that citation.</rdfs:comment>
    <rdfs:domain rdf:resource="http://purl.org/spar/c4o/InTextReferencePointer"/>
    <rdfs:range rdf:nodeID="nbe907eaac5a34be089dc81e641c920f8b3"/>
    <rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
    <vann:example>
    :my-article
        frbr:part :in-text-reference-pointer , :my-bibliographic-reference .

    :in-text-reference-pointer a c4o:InTextReferencePointer  ;
        c4o:denotes :my-bibliographic-reference ;
        c4o:hasContext  :my-citation-sentence .

    :my-citation-sentence a doco:Sentence ;
        c4o:hasContent
            'Renear, Dubin, and Sperberg-McQueen (2002, pp. 121-122)
            proposed a formal semantic approach for structured documents.' .
    </vann:example>
    <rdfs:isDefinedBy rdf:resource="http://purl.org/spar/c4o/"/>
    <vs:term_status rdf:resource="http://purl.org/linked-data/registry#statusStable"/>
  </rdf:Description>
  <rdf:Description rdf:about="http://purl.org/spar/c4o/isDenotedBy">
    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
    <rdfs:label xml:lang="en">is denoted by</rdfs:label>
    <rdfs:comment xml:lang="en">A property used to assert the connection between a bibliographic reference and the in-text reference pointer that points to it.</rdfs:comment>
    <rdfs:domain rdf:resource="http://purl.org/spar/biro/BibliographicReference"/>
    <rdfs:range rdf:resource="http://purl.org/spar/c4o/InTextReferencePointer"/>
    <rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
    <vann:example>
    :my-bibliographic-reference a biro:BibliographicReference ;
        dcterms:bibliographicCitation
            'Renear, A., Dubin, D. &amp; 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.' ;
        c4o:isDenotedBy :my-in-text-reference-pointer ;
        biro:references :my-article .

    :my-in-text-reference-pointer a c4o:InTextReferencePointer .
    </vann:example>
    <rdfs:isDefinedBy rdf:resource="http://purl.org/spar/c4o/"/>
    <vs:term_status rdf:resource="http://purl.org/linked-data/registry#statusStable"/>
  </rdf:Description>
  <rdf:Description rdf:about="http://purl.org/spar/c4o/hasGlobalCountValue">
    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
    <rdfs:label xml:lang="en">has global count value</rdfs:label>
    <rdfs:comment xml:lang="en">An integer defining the value of the global citation count of a cited entity recorded from a named bibliographic information source on a particular date.</rdfs:comment>
    <rdfs:domain rdf:resource="http://purl.org/spar/c4o/GlobalCitationCount"/>
    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"/>
    <vann:example>
    :my-article
        c4o:hasGlobalCitationFrequency :my-global-citation-count .

    :my-global-citation-count a c4o:GlobalCitationCount ;
        c4o:hasGlobalCountValue  '5'^^xsd:nonNegativeInteger .
    </vann:example>
    <rdfs:isDefinedBy rdf:resource="http://purl.org/spar/c4o/"/>
    <vs:term_status rdf:resource="http://purl.org/linked-data/registry#statusStable"/>
  </rdf:Description>
  <rdf:Description rdf:about="http://purl.org/spar/c4o/InTextReferencePointerListItem">
    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
    <rdfs:label xml:lang="en">in-text reference pointer list item</rdfs:label>
    <skos1:note xml:lang="en">
An in-text reference pointer list item can contain only a single in-text reference pointer.

Note that, as specified through the `hasKey` assertion, such a list cannot contain more than one item containing the same in-text reference pointer entity.
</skos1:note>
    <rdfs:comment xml:lang="en">A list item that must be used in the context of an in-text reference pointer list.</rdfs:comment>
    <rdfs:subClassOf rdf:nodeID="nbe907eaac5a34be089dc81e641c920f8b1"/>
    <rdfs:subClassOf rdf:resource="http://purl.org/co/ListItem"/>
    <vann:example>
    :my-in-text-ref-pointer-list-item
        co:itemContent :my-in-text-ref-pointer .
    </vann:example>
    <rdfs:isDefinedBy rdf:resource="http://purl.org/spar/c4o/"/>
    <vs:term_status rdf:resource="http://purl.org/linked-data/registry#statusStable"/>
  </rdf:Description>
  <rdf:Description rdf:about="http://purl.org/spar/c4o/SingleLocationPointerList">
    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
    <rdfs:label xml:lang="en">single location pointer list</rdfs:label>
    <skos1:note xml:lang="en">A single location pointer list pertains to two or more references occurring at a single location in the text of the citing work - e.g. '[3,4,9]' or '[7-12]'.</skos1:note>
    <rdfs:comment xml:lang="en">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.</rdfs:comment>
    <rdfs:subClassOf rdf:nodeID="nbe907eaac5a34be089dc81e641c920f8b7"/>
    <rdfs:subClassOf rdf:nodeID="nbe907eaac5a34be089dc81e641c920f8b8"/>
    <rdfs:subClassOf rdf:resource="http://purl.org/spar/c4o/InTextReferencePointerList"/>
    <rdfs:subClassOf rdf:resource="http://purl.org/vocab/frbr/core#Expression"/>
    <owl:disjointWith rdf:resource="http://purl.org/spar/c4o/SingleReferencePointerList"/>
    <vann:example>
    :my-single-loc-pointer-list
        c4o:pertainsTo :my-bibliographic-reference, :my-other-bibliographic-reference ;
        c4o:hasContext :my-sentence .
    </vann:example>
    <rdfs:isDefinedBy rdf:resource="http://purl.org/spar/c4o/"/>
    <vs:term_status rdf:resource="http://purl.org/linked-data/registry#statusStable"/>
  </rdf:Description>
  <rdf:Description rdf:nodeID="nbe907eaac5a34be089dc81e641c920f8b2">
    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/>
    <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
    <owl:onProperty rdf:resource="http://purl.org/spar/c4o/pertainsTo"/>
  </rdf:Description>
  <rdf:Description rdf:about="http://purl.org/spar/c4o/InTextReferencePointerList">
    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
    <rdfs:label xml:lang="en">in-text reference pointer list</rdfs:label>
    <skos1:note xml:lang="en">An in-text reference pointer list can only contain in-text reference pointer list items, and it always pertains to one or more bibliographic references.</skos1:note>
    <rdfs:comment xml:lang="en">A list containing only in-text reference pointers denoting the specific bibliographic references to which the list pertains.</rdfs:comment>
    <rdfs:subClassOf rdf:nodeID="nbe907eaac5a34be089dc81e641c920f8b9"/>
    <rdfs:subClassOf rdf:nodeID="nbe907eaac5a34be089dc81e641c920f8b10"/>
    <rdfs:subClassOf rdf:resource="http://purl.org/co/List"/>
    <vann:example>
    :my-in-text-ref-pointer-list
        c4o:pertainsTo :my-bibliographic-reference ;
        co:item :my-in-text-ref-pointer-list-item .
    </vann:example>
    <rdfs:isDefinedBy rdf:resource="http://purl.org/spar/c4o/"/>
    <vs:term_status rdf:resource="http://purl.org/linked-data/registry#statusStable"/>
  </rdf:Description>
  <rdf:Description rdf:about="urn:swrl#r">
    <rdf:type rdf:resource="http://www.w3.org/2003/11/swrl#Variable"/>
  </rdf:Description>
  <rdf:Description rdf:nodeID="nbe907eaac5a34be089dc81e641c920f8b18">
    <rdf:type rdf:resource="http://www.w3.org/2003/11/swrl#AtomList"/>
    <rdf:first rdf:nodeID="nbe907eaac5a34be089dc81e641c920f8b19"/>
    <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
  </rdf:Description>
  <rdf:Description rdf:about="http://purl.org/spar/c4o/isRelevantTo">
    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
    <rdfs:label xml:lang="en">is relevant to</rdfs:label>
    <rdfs:comment xml:lang="en">A relationship between two FRBR expressions, according to which one is declared to be of rhetorical relevance to another, for instance the textual context of a particular in-text reference pointer in one document is relevant to a section of text within the published document that is referenced by the bibliographic reference denoted by the in-text reference pointer, and vice versa that the converse relevance also exists.</rdfs:comment>
    <rdfs:domain rdf:resource="http://purl.org/vocab/frbr/core#Expression"/>
    <rdfs:range rdf:resource="http://purl.org/vocab/frbr/core#Expression"/>
    <rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
    <vann:example>
    :my-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 :my-citation-sentence .

    :my-citation-sentence a doco:Sentence ;
        c4o:hasContent
            'Renear, Dubin, and Sperberg-McQueen (2002, pp. 121-122)
            proposed a formal semantic approach for structured documents.' .
    </vann:example>
    <rdfs:isDefinedBy rdf:resource="http://purl.org/spar/c4o/"/>
    <vs:term_status rdf:resource="http://purl.org/linked-data/registry#statusStable"/>
  </rdf:Description>
  <rdf:Description rdf:about="http://purl.org/spar/c4o/pertainsTo">
    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
    <rdfs:label xml:lang="en">pertains to</rdfs:label>
    <rdfs:comment xml:lang="en">The relation between an in-text reference pointer list and the bibliographic reference or references denoted by the in-text reference pointers within that list.</rdfs:comment>
    <rdfs:domain rdf:resource="http://purl.org/spar/c4o/InTextReferencePointerList"/>
    <rdfs:range rdf:resource="http://purl.org/spar/biro/BibliographicReference"/>
    <rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
    <vann:example>
    :my-in-text-ref-pointer-list
        c4o:pertainsTo :my-bibliographic-reference .
    </vann:example>
    <rdfs:isDefinedBy rdf:resource="http://purl.org/spar/c4o/"/>
    <vs:term_status rdf:resource="http://purl.org/linked-data/registry#statusStable"/>
  </rdf:Description>
  <rdf:Description rdf:about="http://purl.org/spar/c4o/BibliographicInformationSource">
    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
    <rdfs:label xml:lang="en">bibliographic information source</rdfs:label>
    <rdfs:comment xml:lang="en">A source of information about bibliographic citations, such as Google Scholar, Web of Science or Scopus.</rdfs:comment>
    <owl:disjointWith rdf:resource="http://purl.org/spar/c4o/GlobalCitationCount"/>
    <owl:disjointWith rdf:resource="http://purl.org/spar/c4o/InTextReferencePointer"/>
    <owl:disjointWith rdf:resource="http://purl.org/spar/c4o/SingleLocationPointerList"/>
    <vann:example>
    :my-article
        c4o:hasGlobalCitationFrequency :my-global-citation-count .

    :my-global-citation-count a c4o:GlobalCitationCount ;
        c4o:hasGlobalCountValue  '5'^^xsd:nonNegativeInteger ;
        c4o:hasGlobalCountSource :my-bibliographic-info-source .

    :my-bibliographic-info-source a c4o:BibliographicInformationSource  ;
        foaf:homepage &lt;http://scholar.google.com&gt; .
    </vann:example>
    <rdfs:isDefinedBy rdf:resource="http://purl.org/spar/c4o/"/>
    <vs:term_status rdf:resource="http://purl.org/linked-data/registry#statusStable"/>
  </rdf:Description>
  <rdf:Description rdf:nodeID="nbe907eaac5a34be089dc81e641c920f8b13">
    <rdf:type rdf:resource="http://www.w3.org/2003/11/swrl#Imp"/>
    <swrl:body rdf:nodeID="nbe907eaac5a34be089dc81e641c920f8b14"/>
    <swrl:head rdf:nodeID="nbe907eaac5a34be089dc81e641c920f8b20"/>
  </rdf:Description>
  <rdf:Description rdf:about="http://www.w3.org/2002/07/owl#versionInfo">
    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AnnotationProperty"/>
  </rdf:Description>
  <rdf:Description rdf:nodeID="nbe907eaac5a34be089dc81e641c920f8b20">
    <rdf:type rdf:resource="http://www.w3.org/2003/11/swrl#AtomList"/>
    <rdf:first rdf:nodeID="nbe907eaac5a34be089dc81e641c920f8b21"/>
    <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
  </rdf:Description>
  <rdf:Description rdf:nodeID="nbe907eaac5a34be089dc81e641c920f8b1">
    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/>
    <owl:allValuesFrom rdf:resource="http://purl.org/spar/c4o/InTextReferencePointer"/>
    <owl:onProperty rdf:resource="http://purl.org/co/itemContent"/>
  </rdf:Description>
  <rdf:Description rdf:nodeID="nbe907eaac5a34be089dc81e641c920f8b3">
    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
    <owl:intersectionOf rdf:nodeID="nbe907eaac5a34be089dc81e641c920f8b5"/>
  </rdf:Description>
  <rdf:Description rdf:nodeID="nbe907eaac5a34be089dc81e641c920f8b17">
    <rdf:type rdf:resource="http://www.w3.org/2003/11/swrl#IndividualPropertyAtom"/>
    <swrl:argument1 rdf:resource="urn:swrl#l"/>
    <swrl:argument2 rdf:resource="urn:swrl#p"/>
    <swrl:propertyPredicate rdf:resource="http://purl.org/co/element"/>
  </rdf:Description>
  <rdf:Description rdf:nodeID="nbe907eaac5a34be089dc81e641c920f8b6">
    <rdf:first rdf:nodeID="nbe907eaac5a34be089dc81e641c920f8b4"/>
    <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
  </rdf:Description>
  <rdf:Description rdf:about="http://purl.org/spar/c4o/InTextReferencePointer">
    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
    <rdfs:label xml:lang="en">in-text reference pointer</rdfs:label>
    <rdfs:comment xml:lang="en">A textual device denoting a single bibliographic reference that is embedded in the text of a document within the context of a particular sentence.</rdfs:comment>
    <skos1:note xml:lang="en">
The in-text reference pointer is a textual element, usually embedded at the end of a phrase or sentence within the text of a document, that denotes a specific bibliographic reference present in the reference list of that document. 
For example, if the item in the reference list is: 

    4.  Ko AI, Reis MG, Ribeiro Dourado CM, Johnson WD Jr, Riley LW (1999). Urban epidemic of severe leptospirosis in Brazil. Salvador Leptospirosis Study Group. Lancet 354: 820-825.

The in-text reference pointer to this paper in a journal article may be manifested in a number of ways:	

* Numerically, for example by using the numeral 4 in superscript or between square brackets, thus: '[4]'.
* Or by use of the author names (or the first author's name plus et al.) and the publication year in parentheses, thus: '(Ko et al., 1999)'. 
* Or, less commonly, by the use of a code, e.g. by specifying the first surname letter of the first three author of the cited work followed by the last two digits of the year of publication, this string of characters being enclosed within square brackets, thus: '[KRR99]'.

If reference pointers are aggregated, e.g. '[4, 5, 6-9]', they may be described by means of the class `c4o:SingleLocationPointerList`.
</skos1:note>
    <rdfs:subClassOf rdf:nodeID="nbe907eaac5a34be089dc81e641c920f8b11"/>
    <rdfs:subClassOf rdf:nodeID="nbe907eaac5a34be089dc81e641c920f8b12"/>
    <rdfs:subClassOf rdf:resource="http://purl.org/vocab/frbr/core#Expression"/>
    <owl:disjointWith rdf:resource="http://purl.org/spar/c4o/SingleLocationPointerList"/>
    <vann:example>
    :my-article
        frbr:part :my-in-text-ref-pointer , :my-bibliographic-reference .

    :my-in-text-ref-pointer a c4o:InTextReferencePointer  ;
        c4o:denotes :my-bibliographic-reference ;
        c4o:hasContext :my-citation-sentence .
    </vann:example>
    <rdfs:isDefinedBy rdf:resource="http://purl.org/spar/c4o/"/>
    <vs:term_status rdf:resource="http://purl.org/linked-data/registry#statusStable"/>
  </rdf:Description>
  <rdf:Description rdf:about="http://purl.org/co/List">
    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
    <rdfs:label xml:lang="en">list</rdfs:label>
    <rdfs:comment xml:lang="en">An ordered array of items, that can be present in multiple copies.</rdfs:comment>
    <rdfs:isDefinedBy rdf:resource="http://purl.org/co/"/>
  </rdf:Description>
  <rdf:Description rdf:about="http://purl.org/spar/c4o/SingleReferencePointerList">
    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
    <rdfs:label xml:lang="en">single reference pointer list</rdfs:label>
    <skos1:note xml:lang="en">
A single reference pointer list pertains only to one bibliographic reference, being a list of all the in-text reference pointers to that single reference to be found in the citing work.

Note that this semantic constraint is handled by the combined use of a particular restriction of this class, i.e. that the list pertains to exactly one `owl:Thing`, and that the following SWRL rule applies:

    c4o:InTextReferencePointerList(?l), 
    c4o:denotes (?p, ?r), 
    swan:item(?l, ?i), 
    swan:itemContent(?i, ?p) -&gt; 
    c4o:pertainsTo (?l, ?r)
</skos1:note>
    <rdfs:comment xml:lang="en">An in-text reference pointer list that pertains to exactly one bibliographic reference.</rdfs:comment>
    <rdfs:subClassOf rdf:nodeID="nbe907eaac5a34be089dc81e641c920f8b2"/>
    <rdfs:subClassOf rdf:resource="http://purl.org/spar/c4o/InTextReferencePointerList"/>
    <vann:example>
    :my-single-ref-pointer-list-item
        c4o:pertainsTo :my-bibliographic-reference .
    </vann:example>
    <rdfs:isDefinedBy rdf:resource="http://purl.org/spar/c4o/"/>
    <vs:term_status rdf:resource="http://purl.org/linked-data/registry#statusStable"/>
  </rdf:Description>
  <rdf:Description rdf:about="http://purl.org/spar/c4o/hasGlobalCountDate">
    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
    <rdfs:label xml:lang="en">has global count date</rdfs:label>
    <rdfs:comment xml:lang="en">The date on which the global citation count of the cited entity was recorded from a named bibliographic information source.</rdfs:comment>
    <rdfs:domain rdf:resource="http://purl.org/spar/c4o/GlobalCitationCount"/>
    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#date"/>
    <vann:example>
    :my-article
        c4o:hasGlobalCitationFrequency :my-global-citation-count .

    :my-global-citation-count a c4o:GlobalCitationCount ;
        c4o:hasGlobalCountValue  '5'^^xsd:nonNegativeInteger ;
        c4o:hasGlobalCountDate '2014-03-17'^^xsd:date .
    </vann:example>
    <rdfs:isDefinedBy rdf:resource="http://purl.org/spar/c4o/"/>
    <vs:term_status rdf:resource="http://purl.org/linked-data/registry#statusStable"/>
  </rdf:Description>
  <rdf:Description rdf:about="http://purl.org/dc/elements/1.1/description">
    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AnnotationProperty"/>
  </rdf:Description>
  <rdf:Description rdf:about="http://purl.org/spar/c4o/GlobalCitationCount">
    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
    <rdfs:label xml:lang="en">global citation count</rdfs:label>
    <rdfs:comment xml:lang="en">The number of times a work has been cited globally, as determined from a particular bibliographic information source on a particular date.</rdfs:comment>
    <owl:disjointWith rdf:resource="http://purl.org/spar/c4o/InTextReferencePointer"/>
    <owl:disjointWith rdf:resource="http://purl.org/spar/c4o/SingleLocationPointerList"/>
    <vann:example>
    :my-global-citation-count a c4o:GlobalCitationCount ;
        c4o:hasGlobalCountValue  '5'^^xsd:nonNegativeInteger .
    </vann:example>
    <rdfs:isDefinedBy rdf:resource="http://purl.org/spar/c4o/"/>
    <vs:term_status rdf:resource="http://purl.org/linked-data/registry#statusStable"/>
  </rdf:Description>
  <rdf:Description rdf:nodeID="nbe907eaac5a34be089dc81e641c920f8b12">
    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/>
    <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
    <owl:onProperty rdf:resource="http://purl.org/spar/c4o/hasContext"/>
  </rdf:Description>
  <rdf:Description rdf:about="http://www.w3.org/2002/07/owl#Thing">
    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
  </rdf:Description>
  <rdf:Description rdf:nodeID="nbe907eaac5a34be089dc81e641c920f8b11">
    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/>
    <owl:onClass rdf:resource="http://purl.org/spar/biro/BibliographicReference"/>
    <owl:onProperty rdf:resource="http://purl.org/spar/c4o/denotes"/>
    <owl:qualifiedCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:qualifiedCardinality>
  </rdf:Description>
  <rdf:Description rdf:about="http://purl.org/spar/c4o/hasGlobalCountSource">
    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
    <rdfs:label xml:lang="en">has global count source</rdfs:label>
    <rdfs:comment xml:lang="en">The relation between a global citation count and the bibliographic information source providing the global citation count information for a particular publication on a particular date.</rdfs:comment>
    <rdfs:domain rdf:resource="http://purl.org/spar/c4o/GlobalCitationCount"/>
    <rdfs:range rdf:resource="http://purl.org/spar/c4o/BibliographicInformationSource"/>
    <rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
    <vann:example>
    :my-article
        c4o:hasGlobalCitationFrequency :my-global-citation-count .

    :my-global-citation-count a c4o:GlobalCitationCount ;
        c4o:hasGlobalCountValue  '5'^^xsd:nonNegativeInteger ;
        c4o:hasGlobalCountSource :my-bibliographic-info-source .

    :my-bibliographic-info-source a c4o:BibliographicInformationSource  ;
        foaf:homepage &lt;http://scholar.google.com&gt; .
    </vann:example>
    <rdfs:isDefinedBy rdf:resource="http://purl.org/spar/c4o/"/>
    <vs:term_status rdf:resource="http://purl.org/linked-data/registry#statusStable"/>
  </rdf:Description>
  <rdf:Description rdf:about="http://www.w3.org/2001/XMLSchema#date">
    <rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Datatype"/>
  </rdf:Description>
  <rdf:Description rdf:about="http://purl.org/co/ListItem">
    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
    <rdfs:label xml:lang="en">list item</rdfs:label>
    <rdfs:comment xml:lang="en">An element belonging to a list.</rdfs:comment>
    <rdfs:isDefinedBy rdf:resource="http://purl.org/co/"/>
  </rdf:Description>
  <rdf:Description rdf:nodeID="nbe907eaac5a34be089dc81e641c920f8b15">
    <rdf:type rdf:resource="http://www.w3.org/2003/11/swrl#ClassAtom"/>
    <swrl:argument1 rdf:resource="urn:swrl#l"/>
    <swrl:classPredicate rdf:resource="http://purl.org/spar/c4o/InTextReferencePointerList"/>
  </rdf:Description>
  <rdf:Description rdf:about="http://purl.org/co/itemContent">
    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
    <rdfs:label xml:lang="en">has item content</rdfs:label>
    <rdfs:comment xml:lang="en">The link to the actual resource to which the item refers.</rdfs:comment>
    <rdfs:isDefinedBy rdf:resource="http://purl.org/co/"/>
  </rdf:Description>
  <rdf:Description rdf:nodeID="nbe907eaac5a34be089dc81e641c920f8b8">
    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/>
    <owl:minCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">2</owl:minCardinality>
    <owl:onProperty rdf:resource="http://purl.org/spar/c4o/pertainsTo"/>
  </rdf:Description>
  <rdf:Description rdf:nodeID="nbe907eaac5a34be089dc81e641c920f8b14">
    <rdf:type rdf:resource="http://www.w3.org/2003/11/swrl#AtomList"/>
    <rdf:first rdf:nodeID="nbe907eaac5a34be089dc81e641c920f8b15"/>
    <rdf:rest rdf:nodeID="nbe907eaac5a34be089dc81e641c920f8b16"/>
  </rdf:Description>
  <rdf:Description rdf:about="urn:swrl#l">
    <rdf:type rdf:resource="http://www.w3.org/2003/11/swrl#Variable"/>
  </rdf:Description>
  <rdf:Description rdf:nodeID="nbe907eaac5a34be089dc81e641c920f8b10">
    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/>
    <owl:allValuesFrom rdf:resource="http://purl.org/spar/c4o/InTextReferencePointerListItem"/>
    <owl:onProperty rdf:resource="http://purl.org/co/item"/>
  </rdf:Description>
  <rdf:Description rdf:about="http://purl.org/dc/elements/1.1/title">
    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AnnotationProperty"/>
  </rdf:Description>
  <rdf:Description rdf:about="http://purl.org/spar/c4o/hasInTextCitationFrequency">
    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
    <rdfs:label xml:lang="en">has in text citation frequency</rdfs:label>
    <rdfs:comment xml:lang="en">The number of separate in-text reference pointers existing within the text of a citing document that all denote the same single bibliographic reference to a cited document (i.e how many distinct textual contexts exist within the citing document from which a citation is made to a particular document). </rdfs:comment>
    <rdfs:domain rdf:resource="http://purl.org/spar/biro/BibliographicReference"/>
    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"/>
    <vann:example>
    :my-article
        frbr:part :my-bibliographic-reference .

    :my-bibliographic-reference a biro:BibliographicReference ;
        c4o:hasInTextCitationFrequency  '1'^^xsd:nonNegativeInteger .
    </vann:example>
    <rdfs:isDefinedBy rdf:resource="http://purl.org/spar/c4o/"/>
    <vs:term_status rdf:resource="http://purl.org/linked-data/registry#statusStable"/>
  </rdf:Description>
  <rdf:Description rdf:about="http://purl.org/co/element">
    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
    <rdfs:label xml:lang="en">has element</rdfs:label>
    <rdfs:comment xml:lang="en">The link to the members of a collection.</rdfs:comment>
    <rdfs:isDefinedBy rdf:resource="http://purl.org/co/"/>
  </rdf:Description>
  <rdf:Description rdf:nodeID="nbe907eaac5a34be089dc81e641c920f8b9">
    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/>
    <owl:onProperty rdf:resource="http://purl.org/spar/c4o/pertainsTo"/>
    <owl:someValuesFrom rdf:resource="http://purl.org/spar/biro/BibliographicReference"/>
  </rdf:Description>
  <rdf:Description rdf:nodeID="nbe907eaac5a34be089dc81e641c920f8b4">
    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/>
    <owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
    <owl:onProperty rdf:resource="http://purl.org/spar/c4o/hasContent"/>
  </rdf:Description>
  <rdf:Description rdf:about="http://purl.org/spar/c4o/hasContent">
    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
    <rdfs:label xml:lang="en">has content</rdfs:label>
    <rdfs:comment xml:lang="en">The textual content of a particular FRBR expression.</rdfs:comment>
    <rdfs:domain rdf:resource="http://purl.org/vocab/frbr/core#Expression"/>
    <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
    <rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topDataProperty"/>
    <vann:example>
    :my-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.' .
    </vann:example>
    <rdfs:isDefinedBy rdf:resource="http://purl.org/spar/c4o/"/>
    <vs:term_status rdf:resource="http://purl.org/linked-data/registry#statusStable"/>
  </rdf:Description>
  <rdf:Description rdf:about="http://purl.org/spar/biro/BibliographicReference">
    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
    <rdfs:label xml:lang="en">bibliographic reference</rdfs:label>
    <rdfs:comment xml:lang="en">An expression of a bibliographic record in a specific format, that references a particular textual or data publication (or a work in preparation for publication). Each bibliographic reference is a list of items containing entities that describe aspects of the referenced work - for example authors, title, journal, publication year - selected from the bibliographic record.</rdfs:comment>
    <rdfs:isDefinedBy rdf:resource="http://purl.org/spar/biro/"/>
  </rdf:Description>
  <rdf:Description rdf:about="http://purl.org/vocab/frbr/core#Endeavour">
    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
    <rdfs:label xml:lang="en">endeavour</rdfs:label>
    <rdfs:comment xml:lang="en">The different aspects of user interests in the products of intellectual or artistic artifact.</rdfs:comment>
    <rdfs:isDefinedBy rdf:resource="http://purl.org/vocab/frbr/core#"/>
  </rdf:Description>
  <rdf:Description rdf:about="http://purl.org/vocab/vann/preferredNamespaceURI">
    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AnnotationProperty"/>
  </rdf:Description>
  <rdf:Description rdf:nodeID="nbe907eaac5a34be089dc81e641c920f8b21">
    <rdf:type rdf:resource="http://www.w3.org/2003/11/swrl#IndividualPropertyAtom"/>
    <swrl:argument1 rdf:resource="urn:swrl#l"/>
    <swrl:argument2 rdf:resource="urn:swrl#r"/>
    <swrl:propertyPredicate rdf:resource="http://purl.org/spar/c4o/pertainsTo"/>
  </rdf:Description>
  <rdf:Description rdf:nodeID="nbe907eaac5a34be089dc81e641c920f8b5">
    <rdf:first rdf:resource="http://purl.org/vocab/frbr/core#Expression"/>
    <rdf:rest rdf:nodeID="nbe907eaac5a34be089dc81e641c920f8b6"/>
  </rdf:Description>
  <rdf:Description rdf:nodeID="nbe907eaac5a34be089dc81e641c920f8b19">
    <rdf:type rdf:resource="http://www.w3.org/2003/11/swrl#IndividualPropertyAtom"/>
    <swrl:argument1 rdf:resource="urn:swrl#p"/>
    <swrl:argument2 rdf:resource="urn:swrl#r"/>
    <swrl:propertyPredicate rdf:resource="http://purl.org/spar/c4o/denotes"/>
  </rdf:Description>
  <rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#label">
    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AnnotationProperty"/>
  </rdf:Description>
  <rdf:Description rdf:about="http://purl.org/co/item">
    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
    <rdfs:label xml:lang="en">has item</rdfs:label>
    <rdfs:comment xml:lang="en">The link to every item of a bag.</rdfs:comment>
    <rdfs:isDefinedBy rdf:resource="http://purl.org/co/"/>
  </rdf:Description>
  <rdf:Description rdf:about="urn:swrl#p">
    <rdf:type rdf:resource="http://www.w3.org/2003/11/swrl#Variable"/>
  </rdf:Description>
  <rdf:Description rdf:about="http://purl.org/vocab/frbr/core#Expression">
    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
    <rdfs:label xml:lang="en">expression</rdfs:label>
    <rdfs:comment xml:lang="en">
The intellectual or artistic realization of a work in the form of alpha-numeric, musical, or choreographic notation, sound, image, object, movement, etc., or any combination of such forms.

An expression is the specific intellectual or artistic form that a work takes each time it is 'realized'. 
Expression encompasses, for example, the specific words, sentences, paragraphs, etc. that result from the realization of a work in the form of a text, or the particular sounds, phrasing, etc. resulting from the realization of a musical work.
        </rdfs:comment>
    <rdfs:isDefinedBy rdf:resource="http://purl.org/vocab/frbr/core#"/>
  </rdf:Description>
  <rdf:Description rdf:about="http://www.w3.org/2002/07/owl#topObjectProperty">
    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
  </rdf:Description>
  <rdf:Description rdf:nodeID="nbe907eaac5a34be089dc81e641c920f8b7">
    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Restriction"/>
    <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
    <owl:onProperty rdf:resource="http://purl.org/spar/c4o/hasContext"/>
  </rdf:Description>
  <rdf:Description rdf:nodeID="nbe907eaac5a34be089dc81e641c920f8b16">
    <rdf:type rdf:resource="http://www.w3.org/2003/11/swrl#AtomList"/>
    <rdf:first rdf:nodeID="nbe907eaac5a34be089dc81e641c920f8b17"/>
    <rdf:rest rdf:nodeID="nbe907eaac5a34be089dc81e641c920f8b18"/>
  </rdf:Description>
  <rdf:Description rdf:about="http://purl.org/dc/elements/1.1/rights">
    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AnnotationProperty"/>
  </rdf:Description>
  <rdf:Description rdf:about="http://purl.org/dc/elements/1.1/creator">
    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AnnotationProperty"/>
  </rdf:Description>
  <rdf:Description rdf:about="http://purl.org/dc/elements/1.1/date">
    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AnnotationProperty"/>
  </rdf:Description>
  <rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#comment">
    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AnnotationProperty"/>
  </rdf:Description>
  <rdf:Description rdf:about="http://www.w3.org/2002/07/owl#topDataProperty">
    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
  </rdf:Description>
</rdf:RDF>
