Anzeige
Anzeige

Más contenido relacionado

Anzeige

A First Course in RDF and RDFS (Resource Description Framework and Resource Description Framework Schema)

  1. Introduction to RDF and RDFS Mark Birbeck http://webBackplane.com/mark-birbeck
  2. RDF...a four letter word
  3. RDF/XML is the real villain
  4. The promise of XML
  5. Metadata: data about data
  6. Getting data from the web is easy...getting metadata is hard
  7.  
  8. XML was supposed to give us this information
  9. Why has XML not delivered?
  10. We want to say: "give me everything created by J. S. Bach"
  11. To achieve that we need to agree how to say ' created by ' in any document
  12. Dublin, Ohio Photo by Sleestak66: http://www.flickr.com/people/kesselring/
  13.  
  14. DC.Creator = "J. S. Bach"
  15. DC.Title = "The Well Tempered Clavier"
  16. Unique identifiers are a key concept in RDF
  17. DC.Creator DC.Title
  18. http://purl.org/dc/terms/ creator http://purl.org/dc/terms/ title
  19. Resource Description Framework
  20. http://purl.org/dc/terms/ creator http://purl.org/dc/terms/ title
  21.  
  22.  
  23.  
  24. Triples
  25.  
  26. The parts of a triple
  27. Subject A URI: http://dbpedia.org/resource/Johann_Sebastian_Bach
  28. XML literals &quot;H<sub>2</sub>O&quot;^^rdf:XMLLiteral
  29. Graphs
  30. The Well Tempered Clavier Wohltemperiertes Klavie dc:title dc:title 1685-03-21 1750-07-28 p:dateOfBirth p:dateOfDeath dc:creator
  31. rdf:type
  32. <http://dbpedia.org/resource/Johann_Sebastian_Bach> rdf:type yago:Composer . <http://dbpedia.org/resource/Johann_Sebastian_Bach> rdf:type foaf:Person .
  33. Lists
  34. Performed by Performed by dc:creator Performed by dc:creator rdf:Bag rdf:type
  35. Blank nodes
  36. Representing RDF
  37. RDF/XML <rdf:RDF> <yago:Composer109947232 rdf:about=&quot;http://[...]/Johann_Sebastian_Bach&quot; > <p:birthPlace rdf:resource=&quot;http://[...]/Eisenach&quot; /> <p:dateOfDeath rdf:datatype=&quot;http://[...]/XMLSchema#date&quot; >1750-07-28</p:dateOfDeath> </yago:Composer109947232> </rdf:RDF>
  38. Turtle dbpedia:Johann_Sebastian_Bach p:dateOfBirth &quot;1685-03-21&quot;^^xsd:date; p:dateOfDeath &quot;1750-07-28&quot;^^xsd:date; p:death &quot;1750-07-28&quot;^^xsd:date; p:deathPlace dbpedia:Leipzig; a yago:Composer, foaf:Person .
  39. Storing RDF
  40. Sources of RDF
  41. Querying RDF
  42. Creating vocabularies
  43. Classes
  44. Composer Musician Is a type of Artist Is a type of Creator Is a type of
  45. Properties
  46. Validation v. inference
  47. OWL
  48. Conclusion
Anzeige