http://www.w3.org/ns/activitystreams#anyOf
Describes a possible inclusive answer or option for a question.
DOMAIN | PROPERTY | RANGE |
---|---|---|
as:Question , Blank node (see implementation) | as:anyOf | 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:anyOf a owl:ObjectProperty ;
rdfs:label "oneOf"@en ;
rdfs:comment "Describes a possible inclusive answer or option for a question."@en ;
rdfs:domain as:Question ;
rdfs:range [ a owl:Class ;
owl:unionOf ( as:Object as:Link ) ] .