schema:validFrom leaf node


URI

http://schema.org/validFrom

Label

validFrom

Description

The date when the item becomes valid.

Usage

DOMAINPROPERTYRANGE
schema:MonetaryAmount schema:validFrom 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:validFrom a rdf:Property ;
    rdfs:label "validFrom" ;
    schema:domainIncludes schema:MonetaryAmount ;
    schema:rangeIncludes xsd:date ;
    rdfs:comment "The date when the item becomes valid." .