dcterms:valid leaf node


URI

http://purl.org/dc/terms/valid

Label

has validity date

Description

Date (often a range) of validity of a resource.

Inherits from

Usage

DOMAINPROPERTYRANGE
owl:Thing (inferred) dcterms:valid xsd:dateTime

Implementation

@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#> .

dcterms:valid a owl:DatatypeProperty ;
    rdfs:label "has validity date"@en ;
    rdfs:comment "Date (often a range) of validity of a resource."@en ;
    rdfs:range xsd:dateTime ;
    rdfs:subPropertyOf dcterms:date .