:hasPublicationYear leaf node


URI

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

Label

has publication year

Description

The year in which a resource is published.

Usage

DOMAINPROPERTYRANGE
owl:Thing (inferred) :hasPublicationYear xsd:gYear

Implementation

@prefix : <http://purl.org/spar/fabio/> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@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#> .

:hasPublicationYear a owl:DatatypeProperty,
        owl:FunctionalProperty ;
    rdfs:label "has publication year"@en ;
    rdfs:comment "The year in which a resource is published."@en ;
    rdfs:range xsd:gYear ;
    rdfs:subPropertyOf dcterms:issued .