schema:validThrough leaf node


URI

http://schema.org/validThrough

Label

validThrough

Description

The date after when the item is not valid. For example the end of an offer, salary period, or a period of opening hours.

Usage

DOMAINPROPERTYRANGE
schema:MonetaryAmount schema:validThrough xsd:date

Implementation

@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix schema: <http://schema.org/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

schema:validThrough a rdf:Property ;
    rdfs:label "validThrough" ;
    schema:domainIncludes schema:MonetaryAmount ;
    schema:rangeIncludes xsd:date ;
    rdfs:comment "The date after when the item is not valid. For example the end of an offer, salary period, or a period of opening hours." .