http://schema.org/validThrough
The date after when the item is not valid. For example the end of an offer, salary period, or a period of opening hours.
DOMAIN | PROPERTY | RANGE |
---|---|---|
schema:MonetaryAmount | schema:validThrough | xsd:date |
@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." .