Resource Description Framework (RDF) ist ein W3C-Standard zur Beschreibung von Netzwerkressourcen wie Titel, Autor, Änderungsdatum, Inhalt und Copyright-Informationen einer Webseite.

RDF-Sammlung Syntax

RDF-Sammlungen werden verwendet, um Gruppen zu beschreiben, die nur bestimmte Mitglieder enthalten.

RDF-Sammlung Beispiel

<?xml version="1.0"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:cd="http://recshop.fake/cd#">
<rdf:Description
rdf:about="http://recshop.fake/cd/Beatles">
  <cd:artist rdf:parseType="Collection">
    <rdf:Description rdf:about="http://recshop.fake/cd/Beatles/George"/>
    <rdf:Description rdf:about="http://recshop.fake/cd/Beatles/John"/>
    <rdf:Description rdf:about="http://recshop.fake/cd/Beatles/Paul"/>
    <rdf:Description rdf:about="http://recshop.fake/cd/Beatles/Ringo"/>
  </cd:artist>
</rdf:Description>
</rdf:RDF>