Advertisement
Guest User

N3 format of http://stackoverflow.com/q/20400572/1281433

a guest
Dec 5th, 2013
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.31 KB | None | 0 0
  1. ## N3 format of RDF from http://stackoverflow.com/q/20400572/1281433
  2.  
  3. @prefix db: <http://localhost:2020/resource/> .
  4. @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
  5. @prefix owl: <http://www.w3.org/2002/07/owl#> .
  6. @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
  7. @prefix map: <http://localhost:2020/resource/#> .
  8. @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
  9. @prefix vocab: <http://localhost:2020/resource/vocab/> .
  10.  
  11. <http://localhost:2020/resource/accounttransactions/1>
  12. a vocab:accounttransactions ;
  13. rdfs:label "accounttransactions #1" ;
  14. vocab:accounttransactions_destinationAccountId
  15. <http://localhost:2020/resource/bankaccounts/1> ;
  16. vocab:accounttransactions_destinationAccountNumber
  17. "47321896544567" ;
  18. vocab:accounttransactions_id 1 ;
  19. vocab:accounttransactions_originAccountNumber
  20. "DB48939239" ;
  21. vocab:accounttransactions_transactionCurrency
  22. "USD" ;
  23. vocab:accounttransactions_transactionDate
  24. "2013-11-23"^^xsd:date ;
  25. vocab:accounttransactions_transactionType
  26. "Cr" ;
  27. vocab:accounttransactions_transactionValue
  28. "12000"^^xsd:decimal .
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement