I need to write a plug-in for Wordpress in which the admin can store a custom vocabulary. I was asked to use XML/RDF?
I need to do something like this (just an example):
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<rdf:Description>
<word>company</word>
<lang>en</lang>
<singular>true</singular>
</rdf:Description>
<rdf:Description>
<word>azienda</word>
<lang>it</lang>
<singular>true</singular>
</rdf:Description>
</rdf:RDF>
What is the correct formatting / xml-namespace /standard or whatsoever to do this?
PS: I don't know if it is important but the words are all related to jobs / economy / work exeperience