http://www.w3.org/ns/activitystreams#partOf
Identifies the Collection to which a CollectionPage objects items belong.
DOMAIN | PROPERTY | RANGE |
---|---|---|
as:CollectionPage , Blank node (see implementation) | as:partOf | 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:partOf a owl:FunctionalProperty,
owl:ObjectProperty ;
rdfs:label "partOf"@en ;
rdfs:comment "Identifies the Collection to which a CollectionPage objects items belong."@en ;
rdfs:domain as:CollectionPage ;
rdfs:range [ a owl:Class ;
owl:unionOf ( as:Collection as:Link ) ] .