Table of Contents

Definition#

Besides XML the W3C has standardized the Turtle syntax to define ontologies. In KnowWE the syntax can be used within the markup Turtle:

%%Turtle...

Example#

%%turtle
Ms. Moneypenny livesIn:: London;
 	       rdf:type:: Person;
 	       rdfs:label:: 'Miss Moneypenny'@en, 'Fräulein Moneypenny'@de, 'Mlle Moneypenny'@fr
%
This expression defines five triples. By the use of colons multiple assertions can be defined for one subject. Furthermore, for one property, multiple assertions can be stated by listing the respective relation objects as a comma-separated list as shown above with the different labels.

See Also#