Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Therefore, the following statement could lead to unexpected namespaces. F4 will register a system-generated namespace and you would not find "http://myurl.org" in the namespaces section.

Code Block
languagetext
titleProblematic Statement
linenumberstrue
PREFIX esc: <http://myurl.org>
INSERT {
<>
esc:package "ppp";
}
WHERE { }
---------------

...

Therefore, the URI prefix in line 1 should have a terminating character, e.g., a slash or a hash. 

 

Code Block
languagetext
titleCorrect Recommended Usage
linenumberstrue
PREFIX esc: <http://myurl.org/>

...