|
as:oneOf a owl:ObjectProperty ; |
|
rdfs:label "oneOf"@en ; |
|
rdfs:comment "Describes a possible exclusive answer or option for a question."@en ; |
|
rdfs:range [ |
|
a owl:Class ; |
|
owl:unionOf ( as:Object as:Link ) |
|
] ; |
|
rdfs:domain as:Question . |
|
|
|
as:anyOf a owl:ObjectProperty ; |
|
rdfs:label "oneOf"@en ; |
|
rdfs:comment "Describes a possible inclusive answer or option for a question."@en ; |
|
rdfs:range [ |
|
a owl:Class ; |
|
owl:unionOf ( as:Object as:Link ) |
|
] ; |
|
rdfs:domain as:Question . |
The "oneOf" label in line 225 seems like it should be "anyOf".
This causes confusion when using Protégé to manipulate the ontology because it uses the label instead of the URI for the object property in the GUI, which means that it appears that there are two oneOf properties, when in fact one of them is the anyOf property just labeled as oneOf.
activitystreams/vocabulary/activitystreams2.owl
Lines 215 to 231 in 5f093f2
The "oneOf" label in line 225 seems like it should be "anyOf".
This causes confusion when using Protégé to manipulate the ontology because it uses the label instead of the URI for the object property in the GUI, which means that it appears that there are two
oneOfproperties, when in fact one of them is theanyOfproperty just labeled asoneOf.