http://purl.org/vocab/frbr/core#summarization
A work/expression summarized in another one.
This property describe the summarization of an original work that is sufficient in degree to warrant their being considered as new works, rather than simply different expressions of the same work. If there exists a relation of this kind among two different expressions, they always refer to different works.
DOMAIN | PROPERTY | RANGE |
---|---|---|
Blank node (see implementation) , Blank node (see implementation) | core:summarization | owl:Thing (inferred) |
@prefix core: <http://purl.org/vocab/frbr/core#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
core:summarization a owl:ObjectProperty ;
rdfs:label "has summarization"@en ;
rdfs:comment """A work/expression summarized in another one.
This property describe the summarization of an original work that is sufficient in degree to warrant their being considered as new works, rather than simply different expressions of the same work. If there exists a relation of this kind among two different expressions, they always refer to different works."""@en ;
rdfs:domain [ a owl:Class ;
owl:unionOf ( core:Expression core:Work ) ] ;
rdfs:range [ a owl:Class ;
owl:unionOf ( core:Expression core:Work ) ] ;
rdfs:subPropertyOf core:relatedEndeavour ;
owl:inverseOf core:summarizationOf .