@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix schema: <https://schema.org/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
schema:dateCreated a owl:DatatypeProperty ;
rdfs:label "created date" ;
rdfs:comment "The date the work was completed." ;
rdfs:range xsd:dateTime .
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
>
<rdf:Description rdf:about="https://schema.org/dateCreated">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#dateTime"/>
<rdfs:comment>The date the work was completed.</rdfs:comment>
<rdfs:label>created date</rdfs:label>
</rdf:Description>
</rdf:RDF>
[
{
"@id": "https://schema.org/dateCreated",
"@type": [
"http://www.w3.org/2002/07/owl#DatatypeProperty"
],
"http://www.w3.org/2000/01/rdf-schema#comment": [
{
"@value": "The date the work was completed."
}
],
"http://www.w3.org/2000/01/rdf-schema#label": [
{
"@value": "created date"
}
],
"http://www.w3.org/2000/01/rdf-schema#range": [
{
"@id": "http://www.w3.org/2001/XMLSchema#dateTime"
}
]
}
]<https://schema.org/dateCreated> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
<https://schema.org/dateCreated> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2001/XMLSchema#dateTime> .
<https://schema.org/dateCreated> <http://www.w3.org/2000/01/rdf-schema#comment> "The date the work was completed." .
<https://schema.org/dateCreated> <http://www.w3.org/2000/01/rdf-schema#label> "created date" .