-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreasoner-input.n3
More file actions
30 lines (24 loc) · 2.3 KB
/
reasoner-input.n3
File metadata and controls
30 lines (24 loc) · 2.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<http://televic.health.be/calls/0> <http://televic.health.be/ontology/hasID> "0" .
<http://televic.health.be/calls/0> <http://televic.health.be/ontology/priority> "3"^^<http://www.w3.org/2001/XMLSchema#integer> .
<http://televic.health.be/calls/0> <http://televic.health.be/ontology/hasTimeStamp> "2025-03-13T09:00:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
<http://televic.health.be/calls/0> <http://televic.health.be/ontology/callMadeBy> <http://televic.health.be/rooms/room1> .
<http://televic.health.be/calls/0> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://televic.health.be/ontology/Call> .
<http://televic.health.be/calls/1> <http://televic.health.be/ontology/hasID> "1" .
<http://televic.health.be/calls/1> <http://televic.health.be/ontology/priority> "2"^^<http://www.w3.org/2001/XMLSchema#integer> .
<http://televic.health.be/calls/1> <http://televic.health.be/ontology/hasTimeStamp> "2025-03-13T09:30:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
<http://televic.health.be/calls/1> <http://televic.health.be/ontology/callMadeBy> <http://televic.health.be/rooms/room2> .
<http://televic.health.be/calls/1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://televic.health.be/ontology/Call> .
<http://televic.health.be/calls/2> <http://televic.health.be/ontology/hasID> "2" .
<http://televic.health.be/calls/2> <http://televic.health.be/ontology/priority> "0"^^<http://www.w3.org/2001/XMLSchema#integer> .
<http://televic.health.be/calls/2> <http://televic.health.be/ontology/hasTimeStamp> "2025-03-13T09:32:00"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
<http://televic.health.be/calls/2> <http://televic.health.be/ontology/callMadeBy> <http://televic.health.be/rooms/room3> .
<http://televic.health.be/calls/2> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://televic.health.be/ontology/Call> .
@prefix ex: <http://example.com/>.
@prefix schema: <http://schema.org/>.
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>.
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>.
@prefix tv: <http://televic.health.be/ontology/>.
@prefix log: <http://www.w3.org/2000/10/swap/log#>.
@prefix math: <http://www.w3.org/2000/10/swap/math#>.
# Classification based on priority
{ ?call a tv:Call. ?call tv:priority ?priority. ?priority math:greaterThan 1.} => { ?call a tv:HighPriorityCall. }.