I'm trying to understand the semantic web, and know a little about rdf, rdfs, and owl. Correct me if I'm wrong, but the following image is an owl diagram that shows the relationship between some properties, classes and objects. I'm having a little trouble understanding what the owl:oneof function does.
From what I can see, because we have the triples
:JamesDeanMovie owl:allValuesFrom :ownsMovie all JamesDeanMovie.
:ownsMovie owl:onProperty :ownsMovie all JamesDeanMovie.
:JamesDeanMovie a owl:Class;
owl:oneof [EastofEden, Giant, Rebel].
we can infer that Rocky owns all movies because we have the owl:AllValuesFrom function. How can I write that in turtle format? or am I going about this wrong.
:Rocky a owl:Class
owl:oneof [EastofEden, Giant, Rebel].
Thanks