as:published leaf node


URI

http://www.w3.org/ns/activitystreams#published

Label

published

Description

Specifies the date and time the object was published

Usage

DOMAINPROPERTYRANGE
as:Object as:published xsd:dateTime

Implementation

@prefix as: <http://www.w3.org/ns/activitystreams#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

as:published a owl:DatatypeProperty,
        owl:FunctionalProperty ;
    rdfs:label "published"@en ;
    rdfs:comment "Specifies the date and time the object was published"@en ;
    rdfs:domain as:Object ;
    rdfs:range xsd:dateTime .