as:current leaf node


URI

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

Label

current

Description

In a paged Collection, indicates the page that contains the most recently updated member items.

Usage

DOMAINPROPERTYRANGE
as:Collection , Blank node (see implementation) as:current owl:Thing (inferred)

Implementation

@prefix as: <http://www.w3.org/ns/activitystreams#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .

as:current a owl:FunctionalProperty,
        owl:ObjectProperty ;
    rdfs:label "current"@en ;
    rdfs:comment "In a paged Collection, indicates the page that contains the most recently updated member items."@en ;
    rdfs:domain as:Collection ;
    rdfs:range [ a owl:Class ;
            owl:unionOf ( as:CollectionPage as:Link ) ] .