schema1:dateCreated leaf node


URI

http://schema.org/dateCreated

Label

dateCreated

Description

The date on which the CreativeWork was created or the item was added to a DataFeed.

Usage

DOMAINPROPERTYRANGE
schema1:CreativeWork schema1:dateCreated 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 schema1: <http://schema.org/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

schema1:dateCreated a rdf:Property ;
    rdfs:label "dateCreated" ;
    schema1:domainIncludes schema1:CreativeWork ;
    schema1:rangeIncludes xsd:date ;
    rdfs:comment "The date on which the CreativeWork was created or the item was added to a DataFeed." .