core:translation leaf node


URI

http://purl.org/vocab/frbr/core#translation

Label

has translation

Description

An expression translated in another one.

It allows to refer to a literal translation, in which the intent is to render the intellectual content of the previous expression as accurately as possible.

Inherits from

Usage

DOMAINPROPERTYRANGE
core:Expression core:translation core:Expression

Implementation

@prefix core: <http://purl.org/vocab/frbr/core#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .

core:translation a owl:ObjectProperty ;
    rdfs:label "has translation"@en ;
    rdfs:comment """An expression translated in another one.

It allows to refer to a literal translation, in which the intent is to render the intellectual content of the previous expression as accurately as possible."""@en ;
    rdfs:domain core:Expression ;
    rdfs:range core:Expression ;
    rdfs:subPropertyOf core:relatedEndeavour ;
    owl:inverseOf core:translationOf .