http://www.w3.org/ns/activitystreams#OrderedCollection
A variation of Collection in which items are strictly ordered
Instances of as:OrderedCollection can have the following properties:
PROPERTY | TYPE | DESCRIPTION | RANGE |
---|
@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:OrderedCollection a owl:Class ;
rdfs:label "OrderedCollection"@en ;
rdfs:comment "A variation of Collection in which items are strictly ordered"@en ;
rdfs:subClassOf [ a owl:Class ;
owl:intersectionOf ( as:Collection [ a owl:Restriction ;
owl:allValuesFrom [ a owl:Class ;
owl:intersectionOf ( as:OrderedItems [ a owl:Class ;
owl:complementOf [ a owl:Class ;
owl:unionOf ( as:Object as:Link ) ] ] ) ] ;
owl:onProperty as:items ] ) ] .