:hasShortTitle


URI

http://purl.org/spar/fabio/hasShortTitle

Label

has short title

Description

A short version of the title of an entity, typically used to label or refer to a particular entity in an abbreviated form, for example an abbreviated journal title in a reference, or a short title of a document used as the running title in a page header.

Inherits from

Usage

DOMAINPROPERTYRANGE
frbr:Endeavour :hasShortTitle xsd:string

Implementation

@prefix : <http://purl.org/spar/fabio/> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix frbr: <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#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

:hasShortTitle a owl:DatatypeProperty ;
    rdfs:label "has short title"@en ;
    rdfs:comment "A short version of the title of an entity, typically used to label or refer to a particular entity in an abbreviated form, for example an abbreviated journal title in a reference, or a short title of a document used as the running title in a page header."@en ;
    rdfs:domain frbr:Endeavour ;
    rdfs:range xsd:string ;
    rdfs:subPropertyOf dcterms:title .