Guest User

Untitled

a guest
May 22nd, 2014
329
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. $ cat /tmp/whatever
  2. @prefix : <http://schema.org/> .
  3. [ a :Corporation ; :contactPoint [ :name "{contactname1}" ; :email "{contactemail1}" ] ;
  4. :contactPoint [ :name "{contactname2}" ; :email "{contactemail2}" ] ] .
  5.  
  6. (rdfa3)[dan@denials tmp]$ rdfpipe -i turtle /tmp/whatever
  7. @prefix : <http://schema.org/> .
  8. @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
  9. @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
  10. @prefix xml: <http://www.w3.org/XML/1998/namespace> .
  11. @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
  12.  
  13. [] a :Corporation ;
  14. :contactPoint [ :email "{contactemail1}" ;
  15. :name "{contactname1}" ],
  16. [ :email "{contactemail2}" ;
  17. :name "{contactname2}" ] .
Advertisement
Add Comment
Please, Sign In to add comment