| bibo | <http://purl.org/ontology/bibo/> |
| cito | <http://purl.org/spar/cito/cito:> |
| cpannotationschema | <http://www.ontologydesignpatterns.org/schemas/cpannotationschema.owl#> |
| dc | <http://purl.org/dc/elements/1.1/> |
| discourse-relationships | <http://purl.org/swan/2.0/discourse-relationships/> |
| foaf | <http://xmlns.com/foaf/0.1/> |
| mod | <https://w3id.org/mod#> |
| ns | <http://www.w3.org/2003/06/sw-vocab-status/ns#> |
| owl | <http://www.w3.org/2002/07/owl#> |
| rdf | <http://www.w3.org/1999/02/22-rdf-syntax-ns#> |
| rdfs | <http://www.w3.org/2000/01/rdf-schema#> |
| schema | <http://schema.org/> |
| schema1 | <https://schema.org/> |
| sit | <http://www.ontologydesignpatterns.org/cp/owl/situation.owl#> |
| skos | <http://www.w3.org/2004/02/skos/core#> |
| terms | <http://purl.org/dc/terms/> |
| vann | <http://purl.org/vocab/vann/> |
| vocab | <https://w3id.org/widoco/vocab#> |
| xml | <http://www.w3.org/XML/1998/namespace> |
| xsd | <http://www.w3.org/2001/XMLSchema#> |
The Citation Typing Ontology (CiTO) makes it possible for authors (or others) to mark citation links and to capture their citation intent (e.g., cito:extends, cito:usesMethodIn, cito:supports) when someone cites a particular publication.
In particular, CiTO allows one to create metadata describing citations that are distinct from metadata describing the cited works themselves, and permits the motives of an author when referring to another document to be captured.
CiTO contains just two main object properties, cito:cites and its inverse cito:isCitedBy, each of which has forty-one sub-properties, plus four additional generic object properties – i.e. cito:shareAuthorWith, cito:sharesAuthorInstitutionWith, cito:sharesFundingAgencyWith and cito:likes – that may be used even outside a citation.
As defined in Functions of Citations Ontology, all these properties (and, consequently, their inverses) may be classified as rhetorical and/or factual, with the rhetorical properties being grouped in three sets depending on their connotation: positive, informative (or neutral) or negative.
Note that all the domain and range constraints from the object properties are not defined, so that this ontology could be easily integrated with other models, e.g., FaBiO.
CiTO makes available a mechanism that permits the citation itself to be reified, so that it can become the subject or object of other RDF statements.
In particular, the reifying class is cito:Citation, and its accompanying object properties, i.e., cito:hasCitingEntity, cito:hasCitationCharacterization and cito:hasCitedEntity, can be employed to reify direct citation statements made using the CiTO citation object property cito:cites or one of its sub-properties.
In the following subsections, we introduce some examples to showcase how to use CiTO.
The prefixes that are used in all the examples provided below are defined as follows:
@prefix : <http://www.sparontologies.net/example/> .
@prefix c4o: <http://purl.org/spar/c4o/> .
@prefix cito: <http://purl.org/spar/cito> .
@prefix cnt: <http://www.w3.org/2011/content#> .
@prefix oa: <http://www.w3.org/ns/oa#> .
@prefix per: <http://data.semanticweb.org/person/> .
CiTO allows one to link two papers – or, more generally, two generic resources – where one (i.e., the citing paper) cites another one (i.e., the cited paper) according to a particular citation function (e.g., cito:extends, cito:usesMethodIn, cito:supports).
CiTO makes available two different approaches for creating such links.
In the direct approach, we can use any of the CiTO properties as predicate of statements for defining citations.
In the reified approach, we can define the citation as a proper individual of the class cito:Citation, in order to use it as subject/object of other statements.
# Direct form for a citation
:paper-a cito:extends :paper-b .
# Reified form for a citation sharing the same
# citation function of the above one
:citation a cito:Citation ;
cito:hasCitingEntity :paper-a ;
cito:hasCitationCharacterization cito:extends ;
cito:hasCitedEntity :paper-b .
Despite the extensive list of CiTO properties, there could be situations in which the purpose of making a citation cannot be adequately expressed using these CiTO properties. It is now possible to use the Open Annotation Data Model to define the reason for, or the nature of, the citation.
In the Open Annotation Data Model Ontology, an annotation is described as a member of the class oa:Annotation, which has a body containing the annotation itself defined by oa:hasBody, and an annotation target (the thing to which the annotation relates) defined by oa:hasTarget.
In order to express a more precise justification of a citation, the target of the annotation should be an individual of the class cito:Citation, while the body, i.e. the textual content of the annotation itself, is described using the W3C Content Vocabulary as an individual of the class cnt:ContentAsText, which the property cnt:chars relates to the text string actually providing the annotation.
In addition, an OA annotation can be further characterized by the motivation for making such annotation, defined by oa:motivatedBy.
In this case, the appropriate motivation is oa:commenting, an instance of the class oa:Motivation.
The whole example has been extracted from the blog post 'Extending CiTO to enable use of the Open Annotation Data Model to describe citations'.
:annotation a oa:Annotation;
oa:motivatedBy oa:commenting ;
oa:hasBody :comment ;
oa:hasTarget :citation .
:comment a cnt:ContentAsText ;
cnt:chars \"I\'m citing that paper because it
initiated this whole new field of research.\" .
:citation a cito:Citation;
cito:hasCitingEntity :paper-a ;
cito:hasCitationCharacterization cito:cites ;
cito:hasCitedEntity :paper-b .
Several citations to the same article could exist in the same text, and such citations could express different functions depending on the author\'s view.
Usually, in a scientific paper, each of these citations is actually described by means of an in-text reference pointers, i.e., a textual device (e.g., "[6]") denoting a single bibliographic reference (referring to the cited paper) that is embedded in the text of a document within the context of a particular sentence.
One of the SPAR Ontologies, i.e., C4O, defines the entities for describing in-text reference pointers (individuals of the class c4o:InTextReferencePointer) and to link them to the related bibliographic references included in the paper.
The Open Annotation Data Model Ontology can be used to annotate each in-text reference pointer of a paper with the particular citation it conveys.
In particular, we can create an annotation (i.e., an individual of the class oa:Annotation) with a body (object property oa:hasBody) containing a specific citation among the citing paper and the cited paper, and with the in-text reference pointer as target (object property oa:hasTarget) of the annotation.
In addition, it is also possible to specify (through the object property oa:annotatedBy) the agent who created such annotation – who can be the author of the paper containing the in-text reference pointer, a reader or a software agent.
:annotation a oa:Annotation ;
oa:hasBody :citation ;
oa:hasTarget :in-text-ref-pointer ;
oa:annotatedBy per:silvio-peroni .
:citation a cito:Citation;
cito:hasCitingEntity :paper-a ;
cito:hasCitationEvent cito:extends ;
cito:hasCitedEntity :paper-b .
:in-text-ref-pointer a c4o:InTextReferencePointer ;
c4o:hasContent '[6]' .
CiTO can be used for answering several questions related to citations, their intent and their overall context.
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 : <http://www.sparontologies.net/example/>
PREFIX c4o: <http://purl.org/spar/c4o/>
PREFIX cito: <http://purl.org/spar/cito>
PREFIX cnt: <http://www.w3.org/2011/content#>
PREFIX oa: <http://www.w3.org/ns/oa#>
PREFIX per: <http://data.semanticweb.org/person/>
Which papers directly extend other papers?
SELECT ?citingPaper ?citedPaper
WHERE {
?citingPaper cito:extends ?citedPaper .
}
What are the reified citations originated by a specific paper, and what are their citation functions?
SELECT ?citation ?citedPaper ?characterization
WHERE {
?citation a cito:Citation ;
cito:hasCitingEntity :paper-a ;
cito:hasCitedEntity ?citedPaper ;
cito:hasCitationCharacterization ?characterization .
}
What is the text of the motivational comment associated with a citation?
SELECT ?citation ?commentText
WHERE {
?annotation a oa:Annotation ;
oa:motivatedBy oa:commenting ;
oa:hasTarget ?citation ;
oa:hasBody ?comment .
?comment a cnt:ContentAsText ;
cnt:chars ?commentText .
}
Which in-text reference pointers have been annotated by a specific agent?
SELECT ?pointer ?textValue
WHERE {
?annotation a oa:Annotation ;
oa:annotatedBy per:silvio-peroni ;
oa:hasTarget ?pointer .
?pointer a c4o:InTextReferencePointer ;
c4o:hasContent ?textValue .
}
Which citations are linked to an in-text reference pointer, and what are the papers involved?
SELECT ?pointer ?citation ?citingPaper ?citedPaper
WHERE {
?annotation a oa:Annotation ;
oa:hasTarget ?pointer ;
oa:hasBody ?citation .
?pointer a c4o:InTextReferencePointer .
?citation a cito:Citation ;
cito:hasCitingEntity ?citingPaper ;
cito:hasCitedEntity ?citedPaper .
}
IRI: http://purl.org/spar/cito/AffilationSelfCitation
# The following cito:AffiliationSelfCitation resource
:thisCitation a cito:AffiliationSelfCitation ;
cito:hasCitingEntity :paperA ;
cito:hasCitationCharacterization cito:extends ;
cito:hasCitedEntity :paperB .
# can be alternatively described as follows
:paperA cito:extends :paperB .
:paperA cito:sharesAuthorInstitutionWith :paperB .
IRI: http://purl.org/spar/cito/AuthorNetworkSelfCitation
:thisCitation a cito:AuthorNetworkSelfCitation ;
cito:hasCitingEntity :paperA ;
cito:hasCitationCharacterization cito:extends ;
cito:hasCoAuthorshipCitationLevel '2'^^xsd:positiveInteger ;
cito:hasCitedEntity :paperB .
IRI: http://purl.org/spar/cito/AuthorSelfCitation
# The following cito:AuthorSelfCitation resource
:thisCitation a cito:AuthorSelfCitation ;
cito:hasCitingEntity :paperA ;
cito:hasCitationCharacterization cito:extends ;
cito:hasCitedEntity :paperB .
# can be alternatively described as follows
:paperA cito:extends :paperB .
:paperA cito:sharesAuthorWith :paperB .
IRI: http://purl.org/spar/cito/Citation
# The following RDF statement
:paperA cito:extends :paperB .
# can be alternatively described as follows
:thisCitation a cito:Citation ;
cito:hasCitingEntity :paperA ;
cito:hasCitationCharacterization cito:extends ;
cito:hasCitedEntity :paperB .
IRI: http://purl.org/spar/cito/DistantCitation
:thisCitation a cito:DistantCitation ;
cito:hasCitingEntity :paperA ;
cito:hasCitationCharacterization cito:extends ;
cito:hasCitedEntity :paperB .
IRI: http://purl.org/spar/cito/FunderSelfCitation
# The following cito:FunderSelfCitation resource
:thisCitation a cito:FunderSelfCitation ;
cito:hasCitingEntity :paperA ;
cito:hasCitationCharacterization cito:extends ;
cito:hasCitedEntity :paperB .
# can be alternatively described as follows
:paperA cito:extends :paperB .
:paperA cito:sharesFundingAgencyWith :paperB .
IRI: http://purl.org/spar/cito/JournalCartelCitation
:thisCitation a cito:JournalCartelCitation ;
cito:hasCitingEntity :paperA ;
cito:hasCitationCharacterization cito:extends ;
cito:hasCitedEntity :paperB .
IRI: http://purl.org/spar/cito/JournalSelfCitation
# The following cito:AffiliationSelfCitation resource
:thisCitation a cito:AffiliationSelfCitation ;
cito:hasCitingEntity :paperA ;
cito:hasCitationCharacterization cito:extends ;
cito:hasCitedEntity :paperB .
# can be alternatively described as follows
:paperA cito:extends :paperB .
:paperA cito:sharesAuthorInstitutionWith :paperB .
IRI: http://purl.org/spar/cito/SelfCitation
:thisCitation a cito:SelfCitation ;
cito:hasCitingEntity :paperA ;
cito:hasCitationCharacterization cito:extends ;
cito:hasCitedEntity :paperB .
IRI: http://purl.org/spar/cito/agreesWith
# We share Galileo's opinion: the Earth moves [X].
:paperA a fabio:JournalArticle ;
cito:agreesWith :paperB .
IRI: http://schema.org/citation
:paperA a fabio:JournalArticle ;
schema:citation :paperB .
IRI: http://purl.org/spar/cito/cites
:paperA a fabio:JournalArticle ;
cito:cites :paperB .
IRI: http://purl.org/spar/cito/citesAsAuthority
# Newton asserted that we are like dwarfs standing on the shoulders of giants [X].
:paperA a fabio:JournalArticle ;
cito:citesAsAuthority :paperB .
IRI: http://purl.org/spar/cito/citesAsDataSource
# Italy has more than ten thousand kilometers of shoreline: see [X].
:paperA a fabio:JournalArticle ;
cito:citesAsDataSource :paperB .
IRI: http://purl.org/spar/cito/citesAsEvidence
# We found an unquestionable demonstration of our hypothesis in [X].
:paperA a fabio:JournalArticle ;
cito:citesAsEvidence :paperB .
IRI: http://purl.org/spar/cito/citesAsMetadataDocument
# Basic bibliographic entity and project metadata relating to this article recorded in a structured machine-readable form is available as an additional file [X] accompanying this paper.
:paperA a fabio:JournalArticle ;
cito:citesAsEvidence :paperB .
IRI: http://purl.org/spar/cito/citesAsPotentialSolution
# This risk could be avoided using the approach shown in [X].
:paperA a fabio:JournalArticle ;
cito:citesAsPotentialSolution :paperB .
IRI: http://purl.org/spar/cito/citesAsRecommendedReading
# To our knowledge [X] is the best source of exercises about UML, making it a valuable proposal for beginners.
:paperA a fabio:JournalArticle ;
cito:citesAsRecommendedReading :paperB .
IRI: http://purl.org/spar/cito/citesAsRelated
# An analysis similar to what we proposed here is presented in [X].
:paperA a fabio:JournalArticle ;
cito:citesAsRelated :paperB .
IRI: http://purl.org/spar/cito/citesAsSourceDocument
# Several sections of this work are based on our literature review of the topic published as journal article [X].
:paperA a fabio:JournalArticle ;
cito:citesAsSourceDocument :paperB .
IRI: http://purl.org/spar/cito/citesForInformation
# The grammar of Pascal was introduced in [X].
:paperA a fabio:JournalArticle ;
cito:citesForInformation :paperB .
IRI: http://purl.org/spar/cito/compiles
# This book gathers interviews with academic researchers of several disciplines [X].
:paperA a fabio:JournalArticle ;
cito:compiles :paperB .
IRI: http://purl.org/spar/cito/confirms
# Our findings are similar to those published in [X].
:paperA a fabio:JournalArticle ;
cito:confirms :paperB .
IRI: http://purl.org/spar/cito/containsAssertionFrom
# We think that to stand on the top of giants [X] is a valuable principle to follow for our own research.
:paperA a fabio:JournalArticle ;
cito:containsAssertionFrom :paperB .
IRI: http://purl.org/spar/cito/corrects
## The result published in [X] is partially wrong, the correct result is 42.
:paperA a fabio:JournalArticle ;
cito:corrects :paperB .
IRI: http://purl.org/spar/cito/credits
# Galileo was the first to observe Jupiter's satellites [X].
:paperA a fabio:JournalArticle ;
cito:credits :paperB .
IRI: http://purl.org/spar/cito/critiques
# The ideas presented in [X] are badly substantantiated.
:paperA a fabio:JournalArticle ;
cito:critiques :paperB .
IRI: http://purl.org/spar/cito/derides
# The ideas published in [X] are incredibly stupid.
:paperA a fabio:JournalArticle ;
cito:derides :paperB .
IRI: http://purl.org/spar/cito/describes
# Galileo's book [X] is a dialog among three scientists about Copernicus' eliocentric theory.
:paperA a fabio:JournalArticle ;
cito:describes :paperB .
IRI: http://purl.org/spar/cito/disagreesWith
# We do not share Galileo's opinion [X]: the Earth does not move.
:paperA a fabio:JournalArticle ;
cito:disagreesWith :paperB .
IRI: http://purl.org/spar/cito/discusses
# We now examine if Galileo is right when he writes [X] that the Earth moves.
:paperA a fabio:JournalArticle ;
cito:discusses :paperB .
IRI: http://purl.org/spar/cito/disputes
# We doubt that Galileo is right when he writes [X] that the Earth moves.
:paperA a fabio:JournalArticle ;
cito:disputes :paperB .
IRI: http://purl.org/spar/cito/documents
# Herein we report in detail the complete set of ontological rules defined in the Overlapping Ontology [X].
:paperA a fabio:JournalArticle ;
cito:documents :paperB .
IRI: http://purl.org/spar/cito/extends
# We add to Galileo's findings concerning the Earth [X] that also the Moon moves.
:paperA a fabio:JournalArticle ;
cito:extends :paperB .
IRI: http://purl.org/spar/cito/givesBackgroundTo
:paperA a fabio:JournalArticle ;
cito:givesBackgroundTo :paperB .
IRI: http://purl.org/spar/cito/givesSupportTo
:paperA a fabio:JournalArticle ;
cito:givesSupportTo :paperB .
IRI: http://purl.org/spar/cito/hasCitationCharacterization
:my-citation a cito:Citation ;
cito:hasCitationCharacterization cito:extends ;
IRI: http://purl.org/spar/cito/hasCitedEntity
:my-citation a cito:Citation ;
cito:hasCitedEntity :paperB .
IRI: http://purl.org/spar/cito/hasCitingEntity
:my-citation a cito:Citation ;
cito:hasCitingEntity :paperA .
IRI: http://purl.org/spar/cito/hasReplyFrom
:paperA a fabio:JournalArticle ;
cito:hasReplyFrom :paperB .
IRI: http://purl.org/spar/cito/includesExcerptFrom
:paperA a fabio:JournalArticle ;
cito:includesExcerptFrom :paperB .
IRI: http://purl.org/spar/cito/includesQuotationFrom
# As Newton wrote in [X]: 'We are like dwarfs standing on the shoulders of giants'
:paperA a fabio:JournalArticle ;
cito:includesQuotationFrom :paperB .
IRI: http://purl.org/spar/cito/isAgreedWithBy
:paperA a fabio:JournalArticle ;
cito:isAgreedWithBy :paperB .
IRI: http://purl.org/spar/cito/isCitedAsAuthorityBy
:paperA a fabio:JournalArticle ;
cito:isCitedAsAuthorityBy :paperB .
IRI: http://purl.org/spar/cito/isCitedAsDataSourceBy
:paperA a fabio:JournalArticle ;
cito:isCitedAsDataSourceBy :paperB .
IRI: http://purl.org/spar/cito/isCitedAsEvidenceBy
:paperA a fabio:JournalArticle ;
cito:isCitedAsEvidenceBy :paperB .
IRI: http://purl.org/spar/cito/isCitedAsMetadataDocumentBy
:paperA a fabio:JournalArticle ;
cito:isCitedAsMetadataDocumentBy :paperB .
IRI: http://purl.org/spar/cito/isCitedAsPontentialSolutionBy
:paperA a fabio:JournalArticle ;
cito:isCitedAsPontentialSolutionBy :paperB .
IRI: http://purl.org/spar/cito/isCitedAsRecommendedReadingBy
:paperA a fabio:JournalArticle ;
cito:isCitedAsRecommendedReadingBy :paperB .
IRI: http://purl.org/spar/cito/isCitedAsRelatedBy
:paperA a fabio:JournalArticle ;
cito:isCitedAsRelatedBy :paperB .
IRI: http://purl.org/spar/cito/isCitedAsSourceDocumentBy
:paperA a fabio:JournalArticle ;
cito:isCitedAsSourceDocumentBy :paperB .
IRI: http://purl.org/spar/cito/isCitedBy
:paperA a fabio:JournalArticle ;
cito:isCitedBy :paperB .
IRI: http://purl.org/spar/cito/isCitedForInformationBy
:paperA a fabio:JournalArticle ;
cito:isCitedForInformationBy :paperB .
IRI: http://purl.org/spar/cito/isCompiledBy
:paperA a fabio:JournalArticle ;
cito:isCompiledBy :paperB .
IRI: http://purl.org/spar/cito/isConfirmedBy
:paperA a fabio:JournalArticle ;
cito:isConfirmedBy :paperB .
IRI: http://purl.org/spar/cito/isCorrectedBy
:paperA a fabio:JournalArticle ;
cito:isCorrectedBy :paperB .
IRI: http://purl.org/spar/cito/isCreditedBy
:paperA a fabio:JournalArticle ;
cito:isCreditedBy :paperB .
IRI: http://purl.org/spar/cito/isCritiquedBy
:paperA a fabio:JournalArticle ;
cito:isCritiquedBy :paperB .
IRI: http://purl.org/spar/cito/isDeridedBy
:paperA a fabio:JournalArticle ;
cito:isDeridedBy :paperB .
IRI: http://purl.org/spar/cito/isDescribedBy
:paperA a fabio:JournalArticle ;
cito:isDescribedBy :paperB .
IRI: http://purl.org/spar/cito/isDisagreedWithBy
:paperA a fabio:JournalArticle ;
cito:isDisagreedWithBy :paperB .
IRI: http://purl.org/spar/cito/isDiscussedBy
:paperA a fabio:JournalArticle ;
cito:isDiscussedBy :paperB .
IRI: http://purl.org/spar/cito/isDisputedBy
:paperA a fabio:JournalArticle ;
cito:isDisputedBy :paperB .
IRI: http://purl.org/spar/cito/isDocumentedBy
:paperA a fabio:JournalArticle ;
cito:isDocumentedBy :paperB .
IRI: http://purl.org/spar/cito/isExtendedBy
:paperA a fabio:JournalArticle ;
cito:isExtendedBy :paperB .
IRI: http://purl.org/spar/cito/isLinkedToBy
:paperA a fabio:JournalArticle ;
cito:isLinkedToBy :paperB .
IRI: http://purl.org/spar/cito/isParodiedBy
:paperA a fabio:JournalArticle ;
cito:isParodiedBy :paperB .
IRI: http://purl.org/spar/cito/isPlagiarizedBy
:paperA a fabio:JournalArticle ;
cito:isPlagiarizedBy :paperB .
IRI: http://purl.org/spar/cito/isQualifiedBy
:paperA a fabio:JournalArticle ;
cito:isQualifiedBy :paperB .
IRI: http://purl.org/spar/cito/isRefutedBy
:paperA a fabio:JournalArticle ;
cito:isRefutedBy :paperB .
IRI: http://purl.org/spar/cito/isRetractedBy
:paperA a fabio:JournalArticle ;
cito:isRetractedBy :paperB .
IRI: http://purl.org/spar/cito/isReviewedBy
:paperA a fabio:JournalArticle ;
cito:isReviewedBy :paperB .
IRI: http://purl.org/spar/cito/isRidiculedBy
:paperA a fabio:JournalArticle ;
cito:isRidiculedBy :paperB .
IRI: http://purl.org/spar/cito/isSpeculatedOnBy
:paperA a fabio:JournalArticle ;
cito:isSpeculatedOnBy :paperB .
IRI: http://purl.org/spar/cito/isSupportedBy
:paperA a fabio:JournalArticle ;
cito:isSupportedBy :paperB .
IRI: http://purl.org/spar/cito/isUpdatedBy
:paperA a fabio:JournalArticle ;
cito:isUpdatedBy :paperB .
IRI: http://purl.org/spar/cito/likes
:paperA a fabio:JournalArticle ;
cito:likes :paperB .
IRI: http://purl.org/spar/cito/linksTo
:paperA a fabio:JournalArticle ;
cito:linksTo :paperB .
IRI: http://purl.org/spar/cito/obtainsBackgroundFrom
:paperA a fabio:JournalArticle ;
cito:obtainsBackgroundFrom :paperB .
IRI: http://purl.org/spar/cito/obtainsSupportFrom
:paperA a fabio:JournalArticle ;
cito:obtainsSupportFrom :paperB .
IRI: http://purl.org/spar/cito/parodies
:paperA a fabio:JournalArticle ;
cito:parodies :paperB .
IRI: http://purl.org/spar/cito/plagiarizes
:paperA a fabio:JournalArticle ;
cito:plagiarizes :paperB .
IRI: http://purl.org/spar/cito/providesAssertionFor
:paperA a fabio:JournalArticle ;
cito:providesAssertionFor :paperB .
IRI: http://purl.org/spar/cito/providesConclusionsFor
:paperA a fabio:JournalArticle ;
cito:providesConclusionsFor :paperB .
IRI: http://purl.org/spar/cito/providesDataFor
:paperA a fabio:JournalArticle ;
cito:providesDataFor :paperB .
IRI: http://purl.org/spar/cito/providesExcerptFor
:paperA a fabio:JournalArticle ;
cito:providesExcerptFor :paperB .
IRI: http://purl.org/spar/cito/providesMethodFor
:paperA a fabio:JournalArticle ;
cito:providesMethodFor :paperB .
IRI: http://purl.org/spar/cito/providesQuotationFor
:paperA a fabio:JournalArticle ;
cito:providesQuotationFor :paperB .
IRI: http://purl.org/spar/cito/qualifies
:paperA a fabio:JournalArticle ;
cito:qualifies :paperB .
IRI: http://purl.org/spar/cito/refutes
:paperA a fabio:JournalArticle ;
cito:refutes :paperB .
IRI: http://purl.org/spar/cito/repliesTo
:paperA a fabio:JournalArticle ;
cito:repliesTo :paperB .
IRI: http://purl.org/spar/cito/retracts
:paperA a fabio:JournalArticle ;
cito:retracts :paperB .
IRI: http://purl.org/spar/cito/reviews
:paperA a fabio:JournalArticle ;
cito:reviews :paperB .
IRI: http://purl.org/spar/cito/ridicules
:paperA a fabio:JournalArticle ;
cito:ridicules :paperB .
IRI: http://purl.org/spar/cito/speculatesOn
:paperA a fabio:JournalArticle ;
cito:speculatesOn :paperB .
IRI: http://purl.org/spar/cito/supports
:paperA a fabio:JournalArticle ;
cito:supports :paperB .
IRI: http://purl.org/spar/cito/updates
:paperA a fabio:JournalArticle ;
cito:updates :paperB .
IRI: http://purl.org/spar/cito/usesConclusionsFrom
:paperA a fabio:JournalArticle ;
cito:usesConclusionsFrom :paperB .
IRI: http://purl.org/spar/cito/usesDataFrom
:paperA a fabio:JournalArticle ;
cito:usesDataFrom :paperB .
IRI: http://purl.org/spar/cito/usesMethodIn
:paperA a fabio:JournalArticle ;
cito:usesMethodIn :paperB .
IRI: http://purl.org/spar/cito/hasCitationCreationDate
:paperA a fabio:JournalArticle ;
cito:hasCitationCreationDate '2025-06-16'^^xsd:date .
IRI: http://purl.org/spar/cito/hasCitationTimeSpan
:paperA a fabio:JournalArticle ;
cito:hasCitationTimeSpan 'P1Y'^^xsd:duration .
IRI: http://purl.org/spar/cito/hasCoAuthorshipCitationLevel
:paperA a fabio:JournalArticle ;
cito:hasCoAuthorshipCitationLevel '2'^^xsd:positiveInteger .
has characteristics: functional
The authors would like to thank Silvio Peroni for developing LODE, a Live OWL Documentation Environment, which is used for representing the Cross Referencing Section of this document and Daniel Garijo for developing Widoco, the program used to create the template used in this documentation.