http://www.w3.org/ns/activitystreams#OrderedItems
A ontology:List variant for Objects and Links
Instances of as:OrderedItems 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:OrderedItems a owl:Class ;
rdfs:label "OrderedItems"@en ;
rdfs:comment "A ontology:List variant for Objects and Links"@en ;
rdfs:subClassOf [ a owl:Class ;
owl:intersectionOf ( rdf:List [ a owl:Restriction ;
owl:allValuesFrom [ a owl:Class ;
owl:unionOf ( as:Object as:Link ) ] ;
owl:onProperty rdf:first ] [ a owl:Restriction ;
owl:allValuesFrom as:OrderedItems ;
owl:onProperty rdf:rest ] ) ] .