I am a beginner in writing a RDF schema and was wondering how should I make a good use of URI concept and create a RDFs doc of simple interest. I am trying to create a RDF of following statement-
Jeffy is a Graduate student
Jeffy likes yoga
Jeffy is seeking Tennis.
How should I write a RDF based on these three sentences. Any light on this would be really helpful.
You could use OWL instead of RDFs because:
1) It is a superset of RDFs
2) It is more powerful
For example:
You can notice that, the model AND the data are in the same file.
3 importants features:
1) Class: declare a class
2) DatatypeProperty: declare a literal property
3) ObjectProperty (not here): declare a link to another node of the semantic graph
In your case you can create a "Sport" class, change DatatypeProperty by ObjectProperty, update the range and create the instances of the 2 sports.