:citesAsRecommendedReading leaf node


URI

http://purl.org/spar/cito/citesAsRecommendedReading

Label

cites as recommended reading

Description

The citing entity cites the cited entity as an item of recommended reading. This property can be used, for example, to describe references in a lecture reading list, where the cited references are relevant to the general topic of the lecture, but might not be individually cited within the text of the lecture. Similarly, it could be used to describe items in a 'Suggested further reading' list at the end of a book chapter.

Usage

DOMAINPROPERTYRANGE
owl:Thing (inferred) :citesAsRecommendedReading owl:Thing (inferred)

Implementation

@prefix : <http://purl.org/spar/cito/> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .

:citesAsRecommendedReading a owl:ObjectProperty ;
    rdfs:label "cites as recommended reading"@en ;
    dc:description "Example: To our knowledge, [X] is the best source of exercises about UML, making it a valuable proposal for beginners."@en ;
    rdfs:comment "The citing entity cites the cited entity as an item of recommended reading.  This property can be used, for example, to describe references in a lecture reading list, where the cited references are relevant to the general topic of the lecture, but might not be individually cited within the text of the lecture.  Similarly, it could be used to describe items in a 'Suggested further reading' list at the end of a book chapter."@en ;
    rdfs:subPropertyOf :cites .