3

Is there a way for a .ttl file to contain references to other .ttl files? (to work as #include in C language)

Bhargav Rao
  • 50,140
  • 28
  • 121
  • 140
Manuel Araoz
  • 15,962
  • 24
  • 71
  • 95

1 Answers1

5

There's nothing at the level of Turtle itself, but you could use owl:imports for referencing other RDF files.

It's important to keep in mind though, that there is no obligation on the part of RDF-reading tools to actually process such an import-directive. Some tools will follow the link and read the referenced file, others will not.

Jeen Broekstra
  • 21,642
  • 4
  • 51
  • 73