How adjective are treated in a semantic web RDF triples?
For example, how to traslate in RDF triples the following statement ?
Bob has a new car
Maybe:
- subject: bob
- predicate: has
- object: car
plus
- subject: car
- predicate: is
- object: new
and link the two RDF (first object with second subject)?
Is this the way ?
Can someone suggest related documentation ?
What you are saying is that Bob has something that is a car and that is new. In your two statements your are not saying that "car" is a car.
In Turtle:
(where
a
is a shortcut forrdf:type
).