dataset.ttl 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. PREFIX : <dokk:>
  2. PREFIX fuseki: <http://jena.apache.org/fuseki#>
  3. PREFIX graph: <graphdata:name:>
  4. PREFIX ja: <http://jena.hpl.hp.com/2005/11/Assembler#>
  5. PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
  6. PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
  7. PREFIX tdb: <http://jena.hpl.hp.com/2008/tdb#>
  8. PREFIX tdb2: <http://jena.apache.org/2016/tdb#>
  9. PREFIX text: <http://jena.apache.org/text#>
  10. :dataset a ja:RDFDataset ;
  11. # ja:defaultGraph <> ;
  12. # tdb2:unionDefaultGraph true ;
  13. .
  14. # Add a new graph:
  15. #
  16. # :dataset ja:namedGraph [
  17. # ja:graphName graph: ;
  18. # ja:graph [
  19. # a tdb2:GraphTDB2 ;
  20. # In which dataset is the graph?
  21. # tdb2:location "path/" ;
  22. # How is it called in the dataset? If this is omitted, it will
  23. # pick the default graph in the dataset
  24. # tdb2:graphName <> ;
  25. # ]
  26. # ] .
  27. :dataset ja:namedGraph [
  28. ja:graphName graph:articles ;
  29. ja:graph [
  30. a tdb2:GraphTDB2 ;
  31. tdb2:location "dataset/articles" ;
  32. ]
  33. ] .
  34. :dataset ja:namedGraph [
  35. ja:graphName graph:apache-projects ;
  36. ja:graph [
  37. a tdb2:GraphTDB2 ;
  38. tdb2:location "dataset/apache-projects" ;
  39. ]
  40. ] .
  41. :dataset ja:namedGraph [
  42. ja:graphName graph:documentation ;
  43. ja:graph [
  44. a tdb2:GraphTDB2 ;
  45. tdb2:location "dataset/documentation" ;
  46. ]
  47. ] .
  48. :dataset ja:namedGraph [
  49. ja:graphName graph:dokk ;
  50. ja:graph [
  51. a tdb2:GraphTDB2 ;
  52. tdb2:location "dataset/dokk" ;
  53. ]
  54. ] .
  55. :dataset ja:namedGraph [
  56. ja:graphName graph:fsd ;
  57. ja:graph [
  58. a tdb2:GraphTDB2 ;
  59. tdb2:location "dataset/free-software-directory" ;
  60. ]
  61. ] .
  62. :dataset ja:namedGraph [
  63. ja:graphName graph:grid ;
  64. ja:graph [
  65. a tdb2:GraphTDB2 ;
  66. tdb2:location "dataset/grid" ;
  67. ]
  68. ] .
  69. :dataset ja:namedGraph [
  70. ja:graphName graph:gutenberg ;
  71. ja:graph [
  72. a tdb2:GraphTDB2 ;
  73. tdb2:location "dataset/gutenberg" ;
  74. ]
  75. ] .
  76. :dataset ja:namedGraph [
  77. ja:graphName graph:library ;
  78. ja:graph [
  79. a tdb2:GraphTDB2 ;
  80. tdb2:location "dataset/library" ;
  81. ]
  82. ] .
  83. :dataset ja:namedGraph [
  84. ja:graphName graph:lov ;
  85. ja:graph [
  86. a tdb2:GraphTDB2 ;
  87. tdb2:location "dataset/lov" ;
  88. ]
  89. ] .
  90. :dataset ja:namedGraph [
  91. ja:graphName graph:manpages ;
  92. ja:graph [
  93. a tdb2:GraphTDB2 ;
  94. tdb2:location "dataset/manpages" ;
  95. ]
  96. ] .
  97. :dataset ja:namedGraph [
  98. ja:graphName graph:prefixcc ;
  99. ja:graph [
  100. a tdb2:GraphTDB2 ;
  101. tdb2:location "dataset/prefix.cc" ;
  102. ]
  103. ] .
  104. :dataset ja:namedGraph [
  105. ja:graphName graph:princeton-wordnet ;
  106. ja:graph [
  107. a tdb2:GraphTDB2 ;
  108. tdb2:location "dataset/princeton-wordnet" ;
  109. ]
  110. ] .
  111. :dataset ja:namedGraph [
  112. ja:graphName graph:radio-browser ;
  113. ja:graph [
  114. a tdb2:GraphTDB2 ;
  115. tdb2:location "dataset/radio-browser" ;
  116. ]
  117. ] .
  118. :dataset ja:namedGraph [
  119. ja:graphName graph:spdx ;
  120. ja:graph [
  121. a tdb2:GraphTDB2 ;
  122. tdb2:location "dataset/spdx" ;
  123. ]
  124. ] .