From f14cf62a118c9324e7e83749df1e50ab2f3ad265 Mon Sep 17 00:00:00 2001 From: Jonas Smedegaard Date: Sun, 19 May 2024 23:50:49 +0200 Subject: add example knowledge graph windsurfing --- rdf/windsurfing.ttl | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 rdf/windsurfing.ttl (limited to 'rdf/windsurfing.ttl') diff --git a/rdf/windsurfing.ttl b/rdf/windsurfing.ttl new file mode 100644 index 0000000..b4bfdba --- /dev/null +++ b/rdf/windsurfing.ttl @@ -0,0 +1,27 @@ +ex:windsurfing a :Objective; + rdfs:label "Windsurfing". + +ex:ernst a :Learner; + rdfs:label "Ernst Schraube"; + :seeksObjective ex:windsurfing; + :learnsCausedBy ex:boredom, ex:sealove; + :learnsThrough ex:stand. + +ex:stand a :Practice; + rdfs:label "standing up"; + rdfs:desc "trying to just stand on a board in the water"; + :contributesTo ex:windsurfing, ex:feel_balance. + +ex:feel_balance a :Objective; + rdfs:label "feel for balance"; + rdfs:desc "get a feel for the balance". + +ex:boredom a :DefensiveReason; + rdfs:label "boredom"; + rdfs:desc "I am bored at the beach and there is nothing else to do."; + :causeAction ex:stand. + +ex:sealove a :ExpansiveReason; + rdfs:label "love for the sea"; + rdfs:desc "I love the sea and dream about planning across the water."; + :causeAction ex:stand. -- cgit v1.2.3