RDF Template

Hi,

Do you know of any tool that creates RDF statements based on some template ?

For example, let's imagine I have the following template:

    <http://acme.org/${id}> <http://acme.org/predicate1> "${something}" .
    <http://acme.org/${id}> <http://acme.org/predicate2>
    <http://acme.org/${person}> .


where /*${...}*/ are variables. Then, by providing values for these 
variables, the following statements would be created:

    ${id} = e1        ${something} = blabla        ${person} = john

    <http://acme.org/e1> <http://acme.org/predicate1> "blabla" .
    <http://acme.org/e1> <http://acme.org/predicate2>
    <http://acme.org/john> .

Have you seen any such tool ?

Thanks

-- 
Stephane Campinas

Received on Saturday, 10 May 2014 12:53:15 UTC