http://www.w3.org/ns/activitystreams#items
Identifies the items contained in a collection. The items might be ordered or unordered.
DOMAIN | PROPERTY | RANGE |
---|---|---|
as:Collection , Blank node (see implementation) | as:items | owl:Thing (inferred) |
@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:items a owl:ObjectProperty ;
rdfs:label "items"@en ;
rdfs:comment "Identifies the items contained in a collection. The items might be ordered or unordered."@en ;
rdfs:domain as:Collection ;
rdfs:range [ a owl:Class ;
owl:unionOf ( [ a owl:Class ;
owl:unionOf ( as:Object as:Link ) ] as:OrderedItems ) ] .