-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopen311.rdf
executable file
·3128 lines (1982 loc) · 112 KB
/
open311.rdf
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<!DOCTYPE rdf:RDF [
<!ENTITY terms "http://purl.org/dc/terms/" >
<!ENTITY adms "http://www.w3.org/ns/adms#" >
<!ENTITY foaf "http://xmlns.com/foaf/0.1/" >
<!ENTITY vann "http://purl.org/vocab/vann/" >
<!ENTITY spatial "http://geovocab.org/spatial#" >
<!ENTITY time "http://www.w3.org/2006/time#" >
<!ENTITY owl "http://www.w3.org/2002/07/owl#" >
<!ENTITY cc "http://creativecommons.org/ns#" >
<!ENTITY xsd "http://www.w3.org/2001/XMLSchema#" >
<!ENTITY owl2xml "http://www.w3.org/2006/12/owl2-xml#" >
<!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#" >
<!ENTITY geo "http://www.w3.org/2003/01/geo/wgs84_pos#" >
<!ENTITY open311 "http://ontology.eil.utoronto.ca/open311#" >
<!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#" >
<!ENTITY open3112 "http://ontology.eil.utoronto.ca/open311.owl#" >
<!ENTITY icontact "http://ontology.eil.utoronto.ca/icontact.owl#" >
<!ENTITY org "http://ontology.eil.utoronto.ca/organization.owl#" >
<!ENTITY geonames "http://www.geonames.org/ontology/ontology_v3.1.rdf#" >
]>
<rdf:RDF xmlns="http://ontology.eil.utoronto.ca/open311#"
xml:base="http://ontology.eil.utoronto.ca/open311"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:geonames="http://www.geonames.org/ontology/ontology_v3.1.rdf#"
xmlns:adms="http://www.w3.org/ns/adms#"
xmlns:org="http://ontology.eil.utoronto.ca/organization.owl#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:icontact="http://ontology.eil.utoronto.ca/icontact.owl#"
xmlns:owl2xml="http://www.w3.org/2006/12/owl2-xml#"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"
xmlns:open3112="http://ontology.eil.utoronto.ca/open311.owl#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:terms="http://purl.org/dc/terms/"
xmlns:time="http://www.w3.org/2006/time#"
xmlns:spatial="http://geovocab.org/spatial#"
xmlns:vann="http://purl.org/vocab/vann/"
xmlns:open311="http://ontology.eil.utoronto.ca/open311#"
xmlns:foaf="http://xmlns.com/foaf/0.1/">
<owl:Ontology rdf:about="http://ontology.eil.utoronto.ca/open311.owl">
<adms:relatedDocumentation xml:lang="en">Nalchigar, S, and Fox, M.S., (2014), "An Ontology for Open 311 Data", Proceedings of the AAAI Workshop on Semantic Cities: Beyond Opend Data to Models, Standards and Reasoning", Association for the Advancement of Artificial Intelligence.
http://eil.utoronto.ca/smartcities/papers/nalchigar-AAAI14.pdf</adms:relatedDocumentation>
<vann:preferredNamespaceUri>http://ontology.eil.utoronto.ca/open311.owl#</vann:preferredNamespaceUri>
<adms:relatedDocumentation>http://ontology.eil.utoronto.ca/open311.html</adms:relatedDocumentation>
<vann:preferredNamespacePrefix>o311</vann:preferredNamespacePrefix>
<terms:description xml:lang="en">Open 311 Ontology
This ontology generalizes the concepts that appear in 311 open data files published by several cities (Toronto, New York, Chicago, Vancouver) across North America. It provides a generis representation of 311 data that other cities can map their data onto and be used as a means of achieving interoperability.</terms:description>
<terms:title xml:lang="en">Open 311 Ontology: An Ontology for publishing a city's non-emergency events.</terms:title>
<cc:license>http://creativecommons.org/licenses/by/3.0/</cc:license>
<terms:creator xml:lang="en">Soroosh Nalchigar (soroosh@cs.toronto.edu)
Mark Fox (msf@eil.utoronto.ca)</terms:creator>
<owl:versionInfo xml:lang="en">Version 1.2: 11 April 2015 - annotations and labels added
Version 1.1: 3 August 2014 - edits provided by Oscar Corcho</owl:versionInfo>
<owl:imports rdf:resource="http://ontology.eil.utoronto.ca/icontact.owl"/>
<owl:imports rdf:resource="http://ontology.eil.utoronto.ca/organization.owl"/>
<owl:imports rdf:resource="http://www.w3.org/2006/time"/>
</owl:Ontology>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Annotation properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.org/vocab/vann/preferredNamespacePrefix -->
<owl:AnnotationProperty rdf:about="&vann;preferredNamespacePrefix"/>
<!-- http://www.w3.org/ns/adms#relatedDocumentation -->
<owl:AnnotationProperty rdf:about="&adms;relatedDocumentation"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Object Properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://ontology.eil.utoronto.ca/open311.owl#has311MessageCategory -->
<owl:ObjectProperty rdf:about="&open3112;has311MessageCategory">
<rdfs:label xml:lang="en">has 311 message category</rdfs:label>
<rdfs:comment>It links the class Type to the class MessageCategory, to represent what category does each type belong to.</rdfs:comment>
<rdfs:range rdf:resource="&open3112;MessageCategory"/>
<rdfs:domain rdf:resource="&open3112;Type"/>
<rdfs:subPropertyOf rdf:resource="&open3112;311Open311ObjectProperty"/>
</owl:ObjectProperty>
<!-- http://ontology.eil.utoronto.ca/open311.owl#has311Subject -->
<owl:ObjectProperty rdf:about="&open3112;has311Subject">
<rdfs:label xml:lang="en">has 311 subject</rdfs:label>
<rdfs:comment>This data property connects the class Type to the class Subject which presents what the corresponding Type is about.</rdfs:comment>
<rdfs:range rdf:resource="&open3112;Subject"/>
<rdfs:domain rdf:resource="&open3112;Type"/>
<rdfs:subPropertyOf rdf:resource="&open3112;311Open311ObjectProperty"/>
</owl:ObjectProperty>
<!-- http://ontology.eil.utoronto.ca/open311.owl#has311Type -->
<owl:ObjectProperty rdf:about="&open3112;has311Type">
<rdfs:label xml:lang="en">has 311 type</rdfs:label>
<rdfs:comment>It links a serviceRequest to a type, showing the type of service requests.</rdfs:comment>
<rdfs:domain rdf:resource="&open3112;ServiceRequest"/>
<rdfs:range rdf:resource="&open3112;Type"/>
<rdfs:subPropertyOf rdf:resource="&open3112;311Open311ObjectProperty"/>
</owl:ObjectProperty>
<!-- http://ontology.eil.utoronto.ca/open311.owl#hasAddress -->
<owl:ObjectProperty rdf:about="&open3112;hasAddress">
<rdfs:label xml:lang="en">has address</rdfs:label>
<rdfs:subPropertyOf rdf:resource="&open3112;311Open311ObjectProperty"/>
</owl:ObjectProperty>
<!-- http://ontology.eil.utoronto.ca/open311.owl#hasCity -->
<owl:ObjectProperty rdf:about="&open3112;hasCity">
<rdfs:label xml:lang="en">has city</rdfs:label>
<rdfs:domain rdf:resource="&open3112;ServiceRequest"/>
<rdfs:subPropertyOf rdf:resource="&open3112;311Open311ObjectProperty"/>
<rdfs:range rdf:resource="http://www.geonames.org/ontology#Feature"/>
</owl:ObjectProperty>
<!-- http://ontology.eil.utoronto.ca/open311.owl#hasCloseDate -->
<owl:ObjectProperty rdf:about="&open3112;hasCloseDate">
<rdfs:label xml:lang="en">has close date</rdfs:label>
<rdfs:comment>The range of this property is DateTimeInterval from Time Ontology in OWL. According to its description, only DateTimeInterval can have DateTimeDescription.</rdfs:comment>
<rdfs:domain rdf:resource="&open3112;ServiceRequest"/>
<rdfs:subPropertyOf rdf:resource="&open3112;311Open311ObjectProperty"/>
<rdfs:range rdf:resource="&time;DateTimeInterval"/>
</owl:ObjectProperty>
<!-- http://ontology.eil.utoronto.ca/open311.owl#hasDueDate -->
<owl:ObjectProperty rdf:about="&open3112;hasDueDate">
<rdfs:label xml:lang="en">has due date</rdfs:label>
<rdfs:comment>This object property connects the Class ServiceRequest to the class DateTimeInterval from Time Ontology in OWL, in order to represent when is the due date of the submitted requests. According to Time Ontology description, only DateTimeInterval can have DateTimeDescription.</rdfs:comment>
<rdfs:domain rdf:resource="&open3112;ServiceRequest"/>
<rdfs:subPropertyOf rdf:resource="&open3112;311Open311ObjectProperty"/>
<rdfs:range rdf:resource="&time;DateTimeInterval"/>
</owl:ObjectProperty>
<!-- http://ontology.eil.utoronto.ca/open311.owl#hasOpenDate -->
<owl:ObjectProperty rdf:about="&open3112;hasOpenDate">
<rdfs:label xml:lang="en">has open date</rdfs:label>
<rdfs:comment>See the annotation for similar object properties, e.g., hasDueDate.</rdfs:comment>
<rdfs:domain rdf:resource="&open3112;ServiceRequest"/>
<rdfs:subPropertyOf rdf:resource="&open3112;311Open311ObjectProperty"/>
<rdfs:range rdf:resource="&time;DateTimeInterval"/>
</owl:ObjectProperty>
<!-- http://ontology.eil.utoronto.ca/open311.owl#hasSPS -->
<owl:ObjectProperty rdf:about="&open3112;hasSPS">
<rdfs:label xml:lang="en">has SPS</rdfs:label>
<rdfs:comment>It links a serviceRequest to a "spsPoint" and a "geo:Point", identifying the exact location of the service requests.</rdfs:comment>
<rdfs:domain rdf:resource="&open3112;ServiceRequest"/>
<rdfs:range rdf:resource="&open3112;SpsPoint"/>
<rdfs:subPropertyOf rdf:resource="&open3112;311Open311ObjectProperty"/>
</owl:ObjectProperty>
<!-- http://ontology.eil.utoronto.ca/open311.owl#hasUpdateDate -->
<owl:ObjectProperty rdf:about="&open3112;hasUpdateDate">
<rdfs:label xml:lang="en">has update date</rdfs:label>
<rdfs:comment>The range of this property is DateTimeInterval from Time Ontology in OWL. According to its description, only DateTimeInterval can have DateTimeDescription.</rdfs:comment>
<rdfs:domain rdf:resource="&open3112;ServiceRequest"/>
<rdfs:subPropertyOf rdf:resource="&open3112;311Open311ObjectProperty"/>
<rdfs:range rdf:resource="&time;DateTimeInterval"/>
</owl:ObjectProperty>
<!-- http://ontology.eil.utoronto.ca/open311.owl#isHandledBy -->
<owl:ObjectProperty rdf:about="&open3112;isHandledBy">
<rdfs:label xml:lang="en">is handled by</rdfs:label>
<rdfs:comment>Links a serviceRequest (domain) to a agency (range), identifying the 311 agency that handles the request.</rdfs:comment>
<rdfs:range rdf:resource="&open3112;Agency"/>
<rdfs:domain rdf:resource="&open3112;ServiceRequest"/>
<rdfs:subPropertyOf rdf:resource="&open3112;311Open311ObjectProperty"/>
</owl:ObjectProperty>
<!-- http://ontology.eil.utoronto.ca/open311.owl#isSubmittedBy -->
<owl:ObjectProperty rdf:about="&open3112;isSubmittedBy">
<rdfs:label xml:lang="en">is submitted by</rdfs:label>
<rdfs:comment xml:lang="en">Person who submitted the service request (i.e., citizen).</rdfs:comment>
<rdfs:domain rdf:resource="&open3112;ServiceRequest"/>
<rdfs:subPropertyOf rdf:resource="&open3112;311Open311ObjectProperty"/>
<rdfs:range rdf:resource="&foaf;Person"/>
</owl:ObjectProperty>
<!-- http://ontology.eil.utoronto.ca/open311.owl#isSubmittedTo -->
<owl:ObjectProperty rdf:about="&open3112;isSubmittedTo">
<rdfs:label xml:lang="en">is submitted to</rdfs:label>
<rdfs:comment>Links a serviceRequest (domain) to a division (range), identifying the 311 division that is responsible for the request.</rdfs:comment>
<rdfs:domain rdf:resource="&open3112;ServiceRequest"/>
<rdfs:subPropertyOf rdf:resource="&open3112;311Open311ObjectProperty"/>
<rdfs:range rdf:resource="&org;Division"/>
</owl:ObjectProperty>
<!-- http://ontology.eil.utoronto.ca/open311.owl#need311Action -->
<owl:ObjectProperty rdf:about="&open3112;need311Action">
<rdfs:label xml:lang="en">needs 311 action</rdfs:label>
<rdfs:comment>It connects the class Type to the class Action and represents the action that the Agency needs to undertake in response to the ServiceRequest.</rdfs:comment>
<rdfs:range rdf:resource="&open3112;Action"/>
<rdfs:domain rdf:resource="&open3112;Type"/>
<rdfs:subPropertyOf rdf:resource="&open3112;311Open311ObjectProperty"/>
</owl:ObjectProperty>
<!-- http://ontology.eil.utoronto.ca/open311.owl#supportingMaterial -->
<owl:ObjectProperty rdf:about="&open3112;supportingMaterial">
<rdfs:label xml:lang="en">supporting material</rdfs:label>
<rdfs:comment xml:lang="en">Links to any materiel that suppports the request.</rdfs:comment>
<rdfs:domain rdf:resource="&open3112;ServiceRequest"/>
<rdfs:subPropertyOf rdf:resource="&open3112;311Open311ObjectProperty"/>
</owl:ObjectProperty>
<!-- http://ontology.eil.utoronto.ca/open311.owl#311Open311ObjectProperty -->
<owl:ObjectProperty rdf:about="&open3112;311Open311ObjectProperty"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Data properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://ontology.eil.utoronto.ca/open311.owl#AddressType -->
<owl:DatatypeProperty rdf:about="&open3112;AddressType">
<rdfs:comment>Type of the address of the service request (e.g., BLOCKFACE).</rdfs:comment>
<rdfs:domain rdf:resource="&open3112;ServiceRequest"/>
<rdfs:subPropertyOf rdf:resource="&open3112;311DataProperty"/>
<rdfs:range rdf:resource="&xsd;string"/>
</owl:DatatypeProperty>
<!-- http://ontology.eil.utoronto.ca/open311.owl#AgencyName -->
<owl:DatatypeProperty rdf:about="&open3112;AgencyName">
<rdfs:subPropertyOf rdf:resource="&open3112;311DataProperty"/>
<rdfs:range rdf:resource="&xsd;string"/>
</owl:DatatypeProperty>
<!-- http://ontology.eil.utoronto.ca/open311.owl#Borough -->
<owl:DatatypeProperty rdf:about="&open3112;Borough">
<rdfs:comment>Borough of the service request (e.g., MANHATTAN).</rdfs:comment>
<rdfs:domain rdf:resource="&open3112;ServiceRequest"/>
<rdfs:subPropertyOf rdf:resource="&open3112;311DataProperty"/>
<rdfs:range rdf:resource="&xsd;string"/>
</owl:DatatypeProperty>
<!-- http://ontology.eil.utoronto.ca/open311.owl#CommunityBorad -->
<owl:DatatypeProperty rdf:about="&open3112;CommunityBorad">
<rdfs:comment>The community board of the service request (e.g., 04 MANHATTAN).</rdfs:comment>
<rdfs:domain rdf:resource="&open3112;ServiceRequest"/>
<rdfs:subPropertyOf rdf:resource="&open3112;311DataProperty"/>
<rdfs:range rdf:resource="&xsd;string"/>
</owl:DatatypeProperty>
<!-- http://ontology.eil.utoronto.ca/open311.owl#CrossStreet -->
<owl:DatatypeProperty rdf:about="&open3112;CrossStreet">
<rdfs:comment>The two cross streets nearest to the location of event.</rdfs:comment>
<rdfs:domain rdf:resource="&open3112;ServiceRequest"/>
<rdfs:subPropertyOf rdf:resource="&open3112;311DataProperty"/>
<rdfs:range rdf:resource="&xsd;string"/>
</owl:DatatypeProperty>
<!-- http://ontology.eil.utoronto.ca/open311.owl#Details -->
<owl:DatatypeProperty rdf:about="&open3112;Details">
<rdfs:comment>This data property provides further information about the service request.</rdfs:comment>
<rdfs:domain rdf:resource="&open3112;ServiceRequest"/>
<rdfs:subPropertyOf rdf:resource="&open3112;311DataProperty"/>
<rdfs:range rdf:resource="&xsd;string"/>
</owl:DatatypeProperty>
<!-- http://ontology.eil.utoronto.ca/open311.owl#Email -->
<owl:DatatypeProperty rdf:about="&open3112;Email">
<rdfs:subPropertyOf rdf:resource="&open3112;311DataProperty"/>
<rdfs:range rdf:resource="&xsd;string"/>
</owl:DatatypeProperty>
<!-- http://ontology.eil.utoronto.ca/open311.owl#EventID -->
<owl:DatatypeProperty rdf:about="&open3112;EventID">
<rdfs:comment>The unique ID for each instance of service request.</rdfs:comment>
<rdfs:domain rdf:resource="&open3112;ServiceRequest"/>
<rdfs:subPropertyOf rdf:resource="&open3112;311DataProperty"/>
<rdfs:range rdf:resource="&xsd;string"/>
</owl:DatatypeProperty>
<!-- http://ontology.eil.utoronto.ca/open311.owl#Intersection -->
<owl:DatatypeProperty rdf:about="&open3112;Intersection">
<rdfs:comment>The intersection streets close to the location of service request.</rdfs:comment>
<rdfs:domain rdf:resource="&open3112;ServiceRequest"/>
<rdfs:subPropertyOf rdf:resource="&open3112;311DataProperty"/>
<rdfs:range rdf:resource="&xsd;string"/>
</owl:DatatypeProperty>
<!-- http://ontology.eil.utoronto.ca/open311.owl#LocationType -->
<owl:DatatypeProperty rdf:about="&open3112;LocationType">
<rdfs:domain rdf:resource="&open3112;ServiceRequest"/>
<rdfs:subPropertyOf rdf:resource="&open3112;311DataProperty"/>
<rdfs:range rdf:resource="&xsd;string"/>
</owl:DatatypeProperty>
<!-- http://ontology.eil.utoronto.ca/open311.owl#Neighborhood -->
<owl:DatatypeProperty rdf:about="&open3112;Neighborhood">
<rdfs:comment>The neighborhood of the service request.</rdfs:comment>
<rdfs:domain rdf:resource="&open3112;ServiceRequest"/>
<rdfs:subPropertyOf rdf:resource="&open3112;311DataProperty"/>
<rdfs:range rdf:resource="&xsd;string"/>
</owl:DatatypeProperty>
<!-- http://ontology.eil.utoronto.ca/open311.owl#Phone -->
<owl:DatatypeProperty rdf:about="&open3112;Phone">
<rdfs:subPropertyOf rdf:resource="&open3112;311DataProperty"/>
</owl:DatatypeProperty>
<!-- http://ontology.eil.utoronto.ca/open311.owl#Source -->
<owl:DatatypeProperty rdf:about="&open3112;Source">
<rdfs:comment>Represents how the service request was made (e.g., voice in).</rdfs:comment>
<rdfs:domain rdf:resource="&open3112;ServiceRequest"/>
<rdfs:subPropertyOf rdf:resource="&open3112;311DataProperty"/>
<rdfs:range rdf:resource="&xsd;string"/>
</owl:DatatypeProperty>
<!-- http://ontology.eil.utoronto.ca/open311.owl#Status -->
<owl:DatatypeProperty rdf:about="&open3112;Status">
<rdfs:comment>Text, representing the status of the service request.</rdfs:comment>
<rdfs:domain rdf:resource="&open3112;ServiceRequest"/>
<rdfs:subPropertyOf rdf:resource="&open3112;311DataProperty"/>
<rdfs:range rdf:resource="&xsd;string"/>
</owl:DatatypeProperty>
<!-- http://ontology.eil.utoronto.ca/open311.owl#StatusNotes -->
<owl:DatatypeProperty rdf:about="&open3112;StatusNotes">
<rdfs:comment>Text, explaining why status was changed to current state or additional details on current status.</rdfs:comment>
<rdfs:subPropertyOf rdf:resource="&open3112;311DataProperty"/>
</owl:DatatypeProperty>
<!-- http://ontology.eil.utoronto.ca/open311.owl#Ward -->
<owl:DatatypeProperty rdf:about="&open3112;Ward">
<rdfs:comment>This is same as "police districts", "community area", and "supervisor district" in different data sets.</rdfs:comment>
<rdfs:domain rdf:resource="&open3112;ServiceRequest"/>
<rdfs:subPropertyOf rdf:resource="&open3112;311DataProperty"/>
<rdfs:range rdf:resource="&xsd;string"/>
</owl:DatatypeProperty>
<!-- http://ontology.eil.utoronto.ca/open311.owl#Website -->
<owl:DatatypeProperty rdf:about="&open3112;Website">
<rdfs:subPropertyOf rdf:resource="&open3112;311DataProperty"/>
<rdfs:range rdf:resource="&xsd;string"/>
</owl:DatatypeProperty>
<!-- http://ontology.eil.utoronto.ca/open311.owl#XCoordinate -->
<owl:DatatypeProperty rdf:about="&open3112;XCoordinate">
<rdfs:comment>The X coordinate of the service request, according to State Plane Coordinate System.</rdfs:comment>
<rdfs:domain rdf:resource="&open3112;SpsPoint"/>
<rdfs:subPropertyOf rdf:resource="&open3112;311DataProperty"/>
<rdfs:range rdf:resource="&owl;real"/>
</owl:DatatypeProperty>
<!-- http://ontology.eil.utoronto.ca/open311.owl#YCoordinate -->
<owl:DatatypeProperty rdf:about="&open3112;YCoordinate">
<rdfs:comment>The Y coordinate of the service request, according to State Plane Coordinate System.</rdfs:comment>
<rdfs:domain rdf:resource="&open3112;SpsPoint"/>
<rdfs:subPropertyOf rdf:resource="&open3112;311DataProperty"/>
<rdfs:range rdf:resource="&owl;real"/>
</owl:DatatypeProperty>
<!-- http://ontology.eil.utoronto.ca/open311.owl#311DataProperty -->
<owl:DatatypeProperty rdf:about="&open3112;311DataProperty"/>
<!-- http://ontology.eil.utoronto.ca/open311.owl#311TypeCode -->
<owl:DatatypeProperty rdf:about="&open3112;311TypeCode">
<rdfs:comment>Represent the unique code of each service request type.</rdfs:comment>
<rdfs:domain rdf:resource="&open3112;Type"/>
<rdfs:subPropertyOf rdf:resource="&open3112;311DataProperty"/>
<rdfs:range rdf:resource="&xsd;string"/>
</owl:DatatypeProperty>
<!-- http://ontology.eil.utoronto.ca/open311.owl#311TypeName -->
<owl:DatatypeProperty rdf:about="&open3112;311TypeName">
<rdfs:comment>text, showing the type of service request (e.g., Road - Pot hole).</rdfs:comment>
<rdfs:domain rdf:resource="&open3112;Type"/>
<rdfs:subPropertyOf rdf:resource="&open3112;311DataProperty"/>
<rdfs:range rdf:resource="&xsd;string"/>
</owl:DatatypeProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Classes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://geovocab.org/spatial#Feature -->
<owl:Class rdf:about="&spatial;Feature"/>
<!-- http://ontology.eil.utoronto.ca/icontact.owl#Address -->
<owl:Class rdf:about="&icontact;Address"/>
<!-- http://ontology.eil.utoronto.ca/open311.owl#Abandoned -->
<owl:Class rdf:about="&open3112;Abandoned">
<rdfs:subClassOf rdf:resource="&open3112;Report"/>
</owl:Class>
<!-- http://ontology.eil.utoronto.ca/open311.owl#Action -->
<owl:Class rdf:about="&open3112;Action">
<rdfs:label xml:lang="en">Action</rdfs:label>
<rdfs:subClassOf rdf:resource="&open3112;311Open311Thing"/>
<terms:description xml:lang="en">The class action represent different types of actions that the reponsible agency can take to respond to the corresponding service request.</terms:description>
</owl:Class>
<!-- http://ontology.eil.utoronto.ca/open311.owl#Add -->
<owl:Class rdf:about="&open3112;Add">
<rdfs:label xml:lang="en">Add</rdfs:label>
<rdfs:subClassOf rdf:resource="&open3112;Action"/>
</owl:Class>
<!-- http://ontology.eil.utoronto.ca/open311.owl#Adjust -->
<owl:Class rdf:about="&open3112;Adjust">
<rdfs:label xml:lang="en">Adjust</rdfs:label>
<rdfs:subClassOf rdf:resource="&open3112;Action"/>
</owl:Class>
<!-- http://ontology.eil.utoronto.ca/open311.owl#Agency -->
<owl:Class rdf:about="&open3112;Agency">
<rdfs:label xml:lang="en">Agency</rdfs:label>
<rdfs:subClassOf rdf:resource="&open3112;311Open311Thing"/>
<rdfs:subClassOf rdf:resource="&org;Organization"/>
<terms:description>This class represents the agency under which the service request is handled.</terms:description>
</owl:Class>
<!-- http://ontology.eil.utoronto.ca/open311.owl#AirQuality -->
<owl:Class rdf:about="&open3112;AirQuality">
<rdfs:label xml:lang="en">Air Quality</rdfs:label>
<rdfs:subClassOf rdf:resource="&open3112;Report"/>
</owl:Class>
<!-- http://ontology.eil.utoronto.ca/open311.owl#All-WayStopSign -->
<owl:Class rdf:about="&open3112;All-WayStopSign">
<rdfs:label xml:lang="en">All Way Stop Sign</rdfs:label>
<rdfs:subClassOf rdf:resource="&open3112;Sign"/>
</owl:Class>
<!-- http://ontology.eil.utoronto.ca/open311.owl#Alley -->
<owl:Class rdf:about="&open3112;Alley">
<rdfs:label xml:lang="en">Alley</rdfs:label>
<rdfs:subClassOf rdf:resource="&open3112;TransportationRoutes"/>
</owl:Class>
<!-- http://ontology.eil.utoronto.ca/open311.owl#AlleyLight -->
<owl:Class rdf:about="&open3112;AlleyLight">
<rdfs:label xml:lang="en">Alley Light</rdfs:label>
<rdfs:subClassOf rdf:resource="&open3112;Light"/>
</owl:Class>
<!-- http://ontology.eil.utoronto.ca/open311.owl#Animal -->
<owl:Class rdf:about="&open3112;Animal">
<rdfs:label xml:lang="en">Animal Pest</rdfs:label>
<rdfs:subClassOf rdf:resource="&open3112;Pest"/>
</owl:Class>
<!-- http://ontology.eil.utoronto.ca/open311.owl#Bag -->
<owl:Class rdf:about="&open3112;Bag">
<rdfs:label xml:lang="en">Bag</rdfs:label>
<rdfs:subClassOf rdf:resource="&open3112;GarbageContainer"/>
</owl:Class>
<!-- http://ontology.eil.utoronto.ca/open311.owl#Basin -->
<owl:Class rdf:about="&open3112;Basin">
<rdfs:label xml:lang="en">Basin</rdfs:label>
<rdfs:subClassOf rdf:resource="&open3112;Public"/>
</owl:Class>
<!-- http://ontology.eil.utoronto.ca/open311.owl#Basket -->
<owl:Class rdf:about="&open3112;Basket">
<rdfs:label xml:lang="en">Basket</rdfs:label>
<rdfs:subClassOf rdf:resource="&open3112;GarbageContainer"/>
</owl:Class>
<!-- http://ontology.eil.utoronto.ca/open311.owl#BeesOrWasp -->
<owl:Class rdf:about="&open3112;BeesOrWasp">
<rdfs:label xml:lang="en">Bees or Wasps</rdfs:label>
<rdfs:subClassOf rdf:resource="&open3112;Insect"/>
</owl:Class>
<!-- http://ontology.eil.utoronto.ca/open311.owl#BicycleSignal -->
<owl:Class rdf:about="&open3112;BicycleSignal">
<rdfs:label xml:lang="en">Bicycle Signal</rdfs:label>
<rdfs:subClassOf rdf:resource="&open3112;Signal"/>
</owl:Class>
<!-- http://ontology.eil.utoronto.ca/open311.owl#Bin -->
<owl:Class rdf:about="&open3112;Bin">
<rdfs:label xml:lang="en">Bin</rdfs:label>
<rdfs:subClassOf rdf:resource="&open3112;GarbageContainer"/>
</owl:Class>
<!-- http://ontology.eil.utoronto.ca/open311.owl#Blocked -->
<owl:Class rdf:about="&open3112;Blocked">
<rdfs:label xml:lang="en">Blocked</rdfs:label>
<rdfs:subClassOf rdf:resource="&open3112;Report"/>
</owl:Class>
<!-- http://ontology.eil.utoronto.ca/open311.owl#Boulevard -->
<owl:Class rdf:about="&open3112;Boulevard">
<rdfs:label xml:lang="en">Boulevard</rdfs:label>
<rdfs:subClassOf rdf:resource="&open3112;TransportationRoutes"/>
</owl:Class>
<!-- http://ontology.eil.utoronto.ca/open311.owl#Box -->
<owl:Class rdf:about="&open3112;Box">
<rdfs:label xml:lang="en">Box</rdfs:label>
<rdfs:subClassOf rdf:resource="&open3112;GarbageContainer"/>
</owl:Class>
<!-- http://ontology.eil.utoronto.ca/open311.owl#Bridge -->
<owl:Class rdf:about="&open3112;Bridge">
<rdfs:label xml:lang="en">Bridge</rdfs:label>
<rdfs:subClassOf rdf:resource="&open3112;TransportationRoutes"/>
</owl:Class>
<!-- http://ontology.eil.utoronto.ca/open311.owl#Building -->
<owl:Class rdf:about="&open3112;Building">
<rdfs:label xml:lang="en">Building</rdfs:label>
<rdfs:subClassOf rdf:resource="&open3112;Residential"/>
</owl:Class>
<!-- http://ontology.eil.utoronto.ca/open311.owl#BusStop -->
<owl:Class rdf:about="&open3112;BusStop">
<rdfs:label xml:lang="en">Bus Stop</rdfs:label>
<rdfs:subClassOf rdf:resource="&open3112;Public"/>
</owl:Class>
<!-- http://ontology.eil.utoronto.ca/open311.owl#Cardboard -->
<owl:Class rdf:about="&open3112;Cardboard">
<rdfs:label xml:lang="en">Cardboard</rdfs:label>
<rdfs:subClassOf rdf:resource="&open3112;GarbageContainer"/>
</owl:Class>
<!-- http://ontology.eil.utoronto.ca/open311.owl#Cart -->
<owl:Class rdf:about="&open3112;Cart">
<rdfs:label xml:lang="en">Cart</rdfs:label>
<rdfs:subClassOf rdf:resource="&open3112;GarbageContainer"/>
</owl:Class>
<!-- http://ontology.eil.utoronto.ca/open311.owl#Clean -->
<owl:Class rdf:about="&open3112;Clean">
<rdfs:subClassOf rdf:resource="&open3112;Action"/>
</owl:Class>
<!-- http://ontology.eil.utoronto.ca/open311.owl#Commercial -->
<owl:Class rdf:about="&open3112;Commercial">
<rdfs:label xml:lang="en">Commercial</rdfs:label>
<rdfs:subClassOf rdf:resource="&open3112;LocationType"/>
</owl:Class>
<!-- http://ontology.eil.utoronto.ca/open311.owl#Complain -->
<owl:Class rdf:about="&open3112;Complain">
<rdfs:label xml:lang="en">Complain</rdfs:label>
<rdfs:subClassOf rdf:resource="&open3112;MessageCategory"/>
</owl:Class>
<!-- http://ontology.eil.utoronto.ca/open311.owl#Compliment -->
<owl:Class rdf:about="&open3112;Compliment">
<rdfs:label xml:lang="en">Compliment</rdfs:label>
<rdfs:subClassOf rdf:resource="&open3112;MessageCategory"/>
</owl:Class>
<!-- http://ontology.eil.utoronto.ca/open311.owl#Cut -->
<owl:Class rdf:about="&open3112;Cut">
<rdfs:subClassOf rdf:resource="&open3112;Action"/>
</owl:Class>
<!-- http://ontology.eil.utoronto.ca/open311.owl#Damaged -->
<owl:Class rdf:about="&open3112;Damaged">
<rdfs:subClassOf rdf:resource="&open3112;Report"/>
</owl:Class>
<!-- http://ontology.eil.utoronto.ca/open311.owl#DeadAnimal -->
<owl:Class rdf:about="&open3112;DeadAnimal">
<rdfs:label xml:lang="en">Dead Animal</rdfs:label>
<rdfs:subClassOf rdf:resource="&open3112;Animal"/>
</owl:Class>
<!-- http://ontology.eil.utoronto.ca/open311.owl#ElectionSign -->
<owl:Class rdf:about="&open3112;ElectionSign">
<rdfs:label xml:lang="en">Election Sign</rdfs:label>
<rdfs:subClassOf rdf:resource="&open3112;Sign"/>
</owl:Class>
<!-- http://ontology.eil.utoronto.ca/open311.owl#Exchange -->
<owl:Class rdf:about="&open3112;Exchange">
<rdfs:label xml:lang="en">Exchange</rdfs:label>
<rdfs:subClassOf rdf:resource="&open3112;Action"/>
</owl:Class>
<!-- http://ontology.eil.utoronto.ca/open311.owl#ExchangeToExtraLarge -->
<owl:Class rdf:about="&open3112;ExchangeToExtraLarge">
<rdfs:label xml:lang="en">Exchange to Extra Large</rdfs:label>
<rdfs:subClassOf rdf:resource="&open3112;Exchange"/>
</owl:Class>
<!-- http://ontology.eil.utoronto.ca/open311.owl#ExchangeToLarge -->
<owl:Class rdf:about="&open3112;ExchangeToLarge">
<rdfs:label xml:lang="en">Exchange to Large</rdfs:label>
<rdfs:subClassOf rdf:resource="&open3112;Exchange"/>
</owl:Class>
<!-- http://ontology.eil.utoronto.ca/open311.owl#ExchangeToMedium -->
<owl:Class rdf:about="&open3112;ExchangeToMedium">
<rdfs:label xml:lang="en">Exchange to Medium</rdfs:label>
<rdfs:subClassOf rdf:resource="&open3112;Exchange"/>
</owl:Class>
<!-- http://ontology.eil.utoronto.ca/open311.owl#ExchangeToSmall -->
<owl:Class rdf:about="&open3112;ExchangeToSmall">
<rdfs:label xml:lang="en">Exchange to Small</rdfs:label>
<rdfs:subClassOf rdf:resource="&open3112;Exchange"/>
</owl:Class>
<!-- http://ontology.eil.utoronto.ca/open311.owl#Expressway -->
<owl:Class rdf:about="&open3112;Expressway">
<rdfs:label xml:lang="en">Expressway</rdfs:label>
<rdfs:subClassOf rdf:resource="&open3112;TransportationRoutes"/>
</owl:Class>
<!-- http://ontology.eil.utoronto.ca/open311.owl#GarbageContainer -->
<owl:Class rdf:about="&open3112;GarbageContainer">
<rdfs:label xml:lang="en">Garbage Container</rdfs:label>
<rdfs:subClassOf rdf:resource="&open3112;Subject"/>
</owl:Class>
<!-- http://ontology.eil.utoronto.ca/open311.owl#Graffiti -->
<owl:Class rdf:about="&open3112;Graffiti">
<rdfs:label xml:lang="en">Graffiti</rdfs:label>
<rdfs:subClassOf rdf:resource="&open3112;Report"/>
</owl:Class>
<!-- http://ontology.eil.utoronto.ca/open311.owl#Grass -->
<owl:Class rdf:about="&open3112;Grass">
<rdfs:subClassOf rdf:resource="&open3112;Plants"/>
</owl:Class>
<!-- http://ontology.eil.utoronto.ca/open311.owl#HouseOfWorship -->
<owl:Class rdf:about="&open3112;HouseOfWorship">
<rdfs:label xml:lang="en">House of Worship</rdfs:label>
<rdfs:subClassOf rdf:resource="&open3112;Public"/>
</owl:Class>
<!-- http://ontology.eil.utoronto.ca/open311.owl#IllegalIssue -->
<owl:Class rdf:about="&open3112;IllegalIssue">
<rdfs:label xml:lang="en">Illegal Issue</rdfs:label>
<rdfs:subClassOf rdf:resource="&open3112;Complain"/>
</owl:Class>
<!-- http://ontology.eil.utoronto.ca/open311.owl#InformationSign -->
<owl:Class rdf:about="&open3112;InformationSign">
<rdfs:label xml:lang="en">Information Sign</rdfs:label>
<rdfs:subClassOf rdf:resource="&open3112;Sign"/>
</owl:Class>
<!-- http://ontology.eil.utoronto.ca/open311.owl#Insect -->
<owl:Class rdf:about="&open3112;Insect">
<rdfs:label xml:lang="en">Insect Pest</rdfs:label>
<rdfs:subClassOf rdf:resource="&open3112;Pest"/>
</owl:Class>
<!-- http://ontology.eil.utoronto.ca/open311.owl#Inspect -->
<owl:Class rdf:about="&open3112;Inspect">
<rdfs:label xml:lang="en">Inspect</rdfs:label>
<rdfs:subClassOf rdf:resource="&open3112;Action"/>
</owl:Class>
<!-- http://ontology.eil.utoronto.ca/open311.owl#Install -->
<owl:Class rdf:about="&open3112;Install">
<rdfs:subClassOf rdf:resource="&open3112;Action"/>
</owl:Class>
<!-- http://ontology.eil.utoronto.ca/open311.owl#Internet -->
<owl:Class rdf:about="&open3112;Internet">
<rdfs:subClassOf rdf:resource="&open3112;Subject"/>
</owl:Class>
<!-- http://ontology.eil.utoronto.ca/open311.owl#Investigate -->
<owl:Class rdf:about="&open3112;Investigate">
<rdfs:subClassOf rdf:resource="&open3112;Action"/>
</owl:Class>
<!-- http://ontology.eil.utoronto.ca/open311.owl#Laneway -->
<owl:Class rdf:about="&open3112;Laneway">
<rdfs:label xml:lang="en">Laneway</rdfs:label>
<rdfs:subClassOf rdf:resource="&open3112;TransportationRoutes"/>
</owl:Class>
<!-- http://ontology.eil.utoronto.ca/open311.owl#Leaking -->
<owl:Class rdf:about="&open3112;Leaking">
<rdfs:label xml:lang="en">Leaking</rdfs:label>
<rdfs:subClassOf rdf:resource="&open3112;Report"/>
</owl:Class>
<!-- http://ontology.eil.utoronto.ca/open311.owl#Left-RightTurnSignal -->
<owl:Class rdf:about="&open3112;Left-RightTurnSignal">
<rdfs:label xml:lang="en">Left-Right Turn Signal</rdfs:label>