ex044.ttl 432 B

12345678910111213
  1. # filename: ex044.ttl
  2. @prefix ab: <http://learningsparql.com/ns/addressbook#> .
  3. @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
  4. @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
  5. ab:playsInstrument
  6. rdf:type rdf:Property ;
  7. rdfs:comment "Identifies the instrument that someone plays" ;
  8. rdfs:label "plays instrument" ;
  9. rdfs:domain ab:Musician ;
  10. rdfs:range ab:MusicalInstrument .