-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathphs.html
More file actions
1829 lines (1796 loc) · 69.4 KB
/
phs.html
File metadata and controls
1829 lines (1796 loc) · 69.4 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Plant Health Surveillance Ontology</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<style>
#pylode {
position: fixed;
top: 80px;
left: -60px;
font-size: small;
transform: rotate(-90deg);
color: grey;
}
#pylode a {
font-size: 2em;
font-weight: bold;
text-decoration: none;
color: #005A9C;
}
#pylode a:hover {
color: #333;
}
.cardinality {
font-style: italic;
color: #aa00aa;
}
dt {
font-weight: bold;
padding: 5px 0 5px 0;
}
ul.hlist {
list-style-type: none;
border: 1px solid navy;
padding:5px;
background-color: #F4FFFF;
}
ul.hlist li {
display: inline;
margin-right: 10px;
}
.entity {
border: 1px solid navy;
margin:5px 0 5px 0;
padding: 5px;
}
.entity th {
width: 150px;
vertical-align: top;
}
.entity th,
.entity td {
padding-bottom: 20px;
}
.entity table th {
text-align: left;
}
section#overview img {
max-width: 1000px;
}
h1, h2, h3, h4, h5, h6 {
text-align: left
}
h1, h2, h3 {
color: #005A9C; background: white
}
h1 {
font: 170% sans-serif;
line-height: 110%;
}
h2 {
font: 140% sans-serif;
margin-top:40px;
}
h3 {
font: 120% sans-serif;
margin-top: 3px;
padding-bottom: 5px;
border-bottom: 1px solid navy;
}
h4 { font: bold 100% sans-serif }
h5 { font: italic 100% sans-serif }
h6 { font: small-caps 100% sans-serif }
body {
padding: 2em 70px 2em 70px;
margin: 0;
font-family: sans-serif;
color: black;
background: white;
background-position: top left;
background-attachment: fixed;
background-repeat: no-repeat;
text-align: justify;
}
section {
max-width: 1500px;
}
.figure {
margin-bottom: 20px;
}
:link { color: #00C; background: transparent }
:visited { color: #609; background: transparent }
a:active { color: #C00; background: transparent }
.sup-c,
.sup-op,
.sup-fp,
.sup-dp,
.sup-ap,
.sup-p,
.sup-ni {
cursor:help;
margin-left: 3px;
}
.sup-c {
color:orange;
}
.sup-op {
color:navy;
}
.sup-fp {
color:lightskyblue;
}
.sup-dp {
color:green;
}
.sup-ap {
color:darkred;
}
.sup-p {
color:black;
}
.sup-ni {
color:brown;
}
code {
font-size: large;
color: darkred;
}
</style>
<script type="application/ld+json">
[
{
"@id": "https://linked.data.gov.au/def/phs",
"@type": [
"https://schema.org/DefinedTermSet"
],
"https://schema.org/codeRepository": [
{
"@id": "<https://github.com/AGLDWG/phs>"
}
],
"https://schema.org/description": [
{
"@value": "<p>An ontology for surveillance events relating to plant pests. These events comprise field observations and associated diagnostic work (i.e. taxonomic identification) of samples taken as part of the observation. Surveillance is one of the core activities of national plant protection organizations (NPPOs). It provides NPPOs with a technical basis for many phytosanitary measures; including phytosanitary import requirements, pest free areas, pest reporting and eradication, and pest status in an area. All terms are defined by ISPM 5.</p>"
}
],
"https://schema.org/name": [
{
"@value": "Plant Health Surveillance Ontology"
}
]
}
]
</script>
</head>
<body>
<div id="pylode">made by <a href="http://github.com/rdflib/pyLODE">pyLODE</a></div>
<h1>Plant Health Surveillance Ontology</h1>
<section id="metadata">
<h2 style="display:none;">Metadata</h2>
<dl>
<dt>IRI</dt>
<dd><code>https://linked.data.gov.au/def/phs</code></dd>
<dt>Publisher(s)</dt>
<dd>
Department of Agriculture, Water and the Environment<br/>
</dd>
<dt>Creator(s)</dt>
<dd>
<a href="stephen.pratt@awe.gov.au">Stephen J. Pratt</a> of <a href="https://www.awe.gov.au">Department of Agriculture, Water and the Environment</a><br/>
<a href="nicholas.car@surroundaustralia.com">Nicholas J. Car</a> of <a href="https://surroundaustralia.com">SURROUND Australia Pty Ltd</a><br/>
<a href="simon.opper@surroundaustralia.com">Simon J. Opper</a> of <a href="https://surroundaustralia.com">SURROUND Australia Pty Ltd</a><br/>
</dd>
<dt>Contributors(s)</dt>
<dd>
<a href="simon.cox@csiro.au">Simon J.D. Cox</a> of <a href="https://www.csiro.au">CSIRO</a><br/>
</dd>
<dt>Created</dt>
<dd>2020-02-11</dd>
<dt>Modified</dt>
<dd>2021-06-12</dd>
<dt>Version IRI</dt>
<dd><a href="https://linked.data.gov.au/def/phs/0.2.1">https://linked.data.gov.au/def/phs/0.2.1</a></dd>
<dt>Imports</dt>
<dd>
<a href="http://datashapes.org/dash">http://datashapes.org/dash</a><br/>
<a href="http://www.w3.org/ns/sosa/">sosa:</a><br/>
<a href="http://rs.tdwg.org/dwc/terms/">dwc:</a><br/>
</dd>
<dt>Ontology Source</dt>
<dd><a href="phs.ttl">RDF (turtle)</a></dd>
<dt>Code Repository</dt>
<dd><a href="<https://github.com/AGLDWG/phs>"><https://github.com/AGLDWG/phs></a></dd>
</dl>
<h2>Description</h2>
<div id="description">
<p>An ontology for surveillance events relating to plant pests. These events comprise field observations and associated diagnostic work (i.e. taxonomic identification) of samples taken as part of the observation. Surveillance is one of the core activities of national plant protection organizations (NPPOs). It provides NPPOs with a technical basis for many phytosanitary measures; including phytosanitary import requirements, pest free areas, pest reporting and eradication, and pest status in an area. All terms are defined by ISPM 5.</p>
</div>
</section>
<section id="toc">
<h2>Table of Contents</h2>
<ol>
<li><a href="#classes">Classes</a></li>
<li><a href="#objectproperties">Object Properties</a></li>
<li><a href="#datatypeproperties">Datatype Properties</a></li>
<li><a href="#annotationproperties">Annotation Properties</a></li>
<li><a href="#namespaces">Namespaces</a></li>
<li><a href="#legend">Legend</a></li>
</ol>
</section>
<section id="overview">
<h2>Overview</h2>
<div class="figure">
<img src="images/overview.png" alt="Overview Diagram" />
<div class="caption"><strong>Figure 1:</strong>Ontology overview, showing the major classes and their relationships to higher ontologies. Refer to descriptions of classes to see their datatype and object properties (aka 'data elements').</div>
</div>
</section>
<section id="classes">
<h2>Classes <span style="float:right; font-size:smaller;"><a href="">↑</a></span></h2>
<ul class="hlist">
<li><a href="#Collection">Collection</a></li>
<li><a href="#Concept">Concept</a></li>
<li><a href="#Dataset">Dataset</a></li>
<li><a href="#DiagnosticMethodType">Diagnostic Method Type</a></li>
<li><a href="#Diagnosticmethod">Diagnostic method</a></li>
<li><a href="#EffortUnitType">Effort Unit Type</a></li>
<li><a href="#Feature">Feature</a></li>
<li><a href="#Geometry">Geometry</a></li>
<li><a href="#Host">Host</a></li>
<li><a href="#HostType">Host Type</a></li>
<li><a href="#InspectionMethod">Inspection Method</a></li>
<li><a href="#InspectionMethodType">Inspection Method Type</a></li>
<li><a href="#LureType">Lure Type</a></li>
<li><a href="#ObservationLocation">Observation Location</a></li>
<li><a href="#OccurrenceStatusType">Occurrence Status Type</a></li>
<li><a href="#Organization">Organization</a></li>
<li><a href="#Person">Person</a></li>
<li><a href="#PestOccurrenceStatus">Pest Occurrence Status</a></li>
<li><a href="#Sampler">Sampler</a></li>
<li><a href="#Substrate">Substrate</a></li>
<li><a href="#SubstrateType">Substrate Type</a></li>
<li><a href="#SurveillanceEvent">SurveillanceEvent</a></li>
<li><a href="#TargetPest">Target Pest</a></li>
<li><a href="#TargetPestType">Target Pest Type</a></li>
<li><a href="#TaxonPresence">Taxon Presence</a></li>
<li><a href="#Trap">Trap</a></li>
<li><a href="#TrapType">Trap Type</a></li>
<li><a href="#dataProperty">dataProperty</a></li>
</ul>
<div class="entity class" id="Dataset">
<h3>Dataset<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://purl.org/dc/terms/Dataset</code></td>
</tr>
<tr>
<th>In range of</th>
<td>
<a href="http://purl.org/dc/terms/source">dcterms:source</a><sup class="sup-dp" title="datatype property">dp</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="Feature">
<h3>Feature<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://www.opengis.net/ont/geosparql#Feature</code></td>
</tr>
</table>
</div>
<div class="entity class" id="Geometry">
<h3>Geometry<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://www.opengis.net/ont/geosparql#Geometry</code></td>
</tr>
</table>
</div>
<div class="entity class" id="dataProperty">
<h3>dataProperty<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://www.w3.org/1999/02/22-rdf-syntax-ns#dataProperty</code></td>
</tr>
</table>
</div>
<div class="entity class" id="Collection">
<h3>Collection<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://www.w3.org/2004/02/skos/core#Collection</code></td>
</tr>
</table>
</div>
<div class="entity class" id="Concept">
<h3>Concept<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://www.w3.org/2004/02/skos/core#Concept</code></td>
</tr>
<tr>
<th>Sub-classes</th>
<td>
<a href="#DiagnosticMethodType">DiagnosticMethodType</a><sup class="sup-c" title="class">c</sup><br/>
<a href="#TargetPestType">TargetPestType</a><sup class="sup-c" title="class">c</sup><br/>
<a href="#EffortUnitType">EffortUnitType</a><sup class="sup-c" title="class">c</sup><br/>
<a href="#InspectionMethodType">InspectionMethodType</a><sup class="sup-c" title="class">c</sup><br/>
<a href="#LureType">LureType</a><sup class="sup-c" title="class">c</sup><br/>
<a href="#OccurrenceStatusType">OccurrenceStatusType</a><sup class="sup-c" title="class">c</sup><br/>
<a href="#HostType">HostType</a><sup class="sup-c" title="class">c</sup><br/>
<a href="#TrapType">TrapType</a><sup class="sup-c" title="class">c</sup><br/>
<a href="#SubstrateType">SubstrateType</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="Sampler">
<h3>Sampler<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://www.w3.org/ns/sosa/Sampler</code></td>
</tr>
<tr>
<th>Sub-classes</th>
<td>
<a href="#Trap">Trap</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="Diagnosticmethod">
<h3>Diagnostic method<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>https://linked.data.gov.au/def/phs#DiagnosticMethod</code></td>
</tr>
<tr>
<th>Description</th>
<td>
A procedure or method used to determine the taxonomic identity of a plant pest. May be carried out in the field, or more usually, in a laboratory.
</td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="http://www.w3.org/ns/sosa/Procedure">sosa:Procedure</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>In domain of</th>
<td>
<a href="#Identifiespest">identifiesPest</a><sup class="sup-op" title="object property">op</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="DiagnosticMethodType">
<h3>Diagnostic Method Type<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>https://linked.data.gov.au/def/phs#DiagnosticMethodType</code></td>
</tr>
<tr>
<th>Description</th>
<td>
The subtype of a Diagnostic Method
</td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="http://www.w3.org/2004/02/skos/core#Concept">skos:Concept</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="EffortUnitType">
<h3>Effort Unit Type<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>https://linked.data.gov.au/def/phs#EffortUnitType</code></td>
</tr>
<tr>
<th>Description</th>
<td>
The unit by which surveillance effort is measured
</td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="http://www.w3.org/2004/02/skos/core#Concept">skos:Concept</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>In range of</th>
<td>
<a href="#haseffortunit">hasEffortUnit</a><sup class="sup-op" title="object property">op</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="Host">
<h3>Host<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>https://linked.data.gov.au/def/phs#Host</code></td>
</tr>
<tr>
<th>Description</th>
<td>
A living thing (usually a plant) from which a sample was taken for identification. In the case of trapping, the tree in which the trap was hung
</td>
</tr>
<tr>
<th>Usage Note</th>
<td>
Particular pests are often associated with certain substrates or hosts. In the field, when targetting a pest, a surveyor will look for substrates or hosts that are more likely to harbour the target pest. Recording the substrate assists diagnosticians when they are identifying a specimen. It also aids analysis aimed at estimating pest prevalence based on absence records. Lastly, some protocols require the host or substrate to be recorded for each observation.
</td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="http://www.w3.org/ns/sosa/Platform">sosa:Platform</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>In domain of</th>
<td>
<a href="#hostspest">hostsPest</a><sup class="sup-op" title="object property">op</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="HostType">
<h3>Host Type<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>https://linked.data.gov.au/def/phs#HostType</code></td>
</tr>
<tr>
<th>Description</th>
<td>
The subtype of a Host
</td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="http://www.w3.org/2004/02/skos/core#Concept">skos:Concept</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="InspectionMethod">
<h3>Inspection Method<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>https://linked.data.gov.au/def/phs#InspectionMethod</code></td>
</tr>
<tr>
<th>Description</th>
<td>
The units used to record Surveillance Effort vary according to the Inspection method.
</td>
</tr>
<tr>
<th>Usage Note</th>
<td>
Inspection Methods are chosen according to the target pest and/or host|substrate. The sensitivity of an observation may depend on the method that was used.
</td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="http://www.w3.org/ns/sosa/Procedure">sosa:Procedure</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>In domain of</th>
<td>
<a href="#detectspest">detectsPest</a><sup class="sup-op" title="object property">op</sup><br/>
<a href="#targetspest">targetsPest</a><sup class="sup-op" title="object property">op</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="InspectionMethodType">
<h3>Inspection Method Type<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>https://linked.data.gov.au/def/phs#InspectionMethodType</code></td>
</tr>
<tr>
<th>Description</th>
<td>
The subtype of an Inspection Method
</td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="http://www.w3.org/2004/02/skos/core#Concept">skos:Concept</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="LureType">
<h3>Lure Type<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>https://linked.data.gov.au/def/phs#LureType</code></td>
</tr>
<tr>
<th>Description</th>
<td>
The subtype of a Lure
</td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="http://www.w3.org/2004/02/skos/core#Concept">skos:Concept</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>In range of</th>
<td>
<a href="#hasluretype">hasLureType</a><sup class="sup-op" title="object property">op</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="ObservationLocation">
<h3>Observation Location<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>https://linked.data.gov.au/def/phs#ObservationLocation</code></td>
</tr>
<tr>
<th>Description</th>
<td>
The point location at which a surveillance event occured.
</td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="http://rs.tdwg.org/dwc/terms/Location">dwc:Location</a><sup class="sup-c" title="class">c</sup><br/>
<a href="http://www.w3.org/ns/sosa/FeatureOfInterest">sosa:FeatureOfInterest</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>In domain of</th>
<td>
<a href="http://rs.tdwg.org/dwc/terms/coordinateUncertaintyInMeters">dwc:coordinateUncertaintyInMeters</a><sup class="sup-dp" title="datatype property">dp</sup><br/>
<a href="http://rs.tdwg.org/dwc/terms/geodeticDatum">dwc:geodeticDatum</a><sup class="sup-dp" title="datatype property">dp</sup><br/>
<a href="http://rs.tdwg.org/dwc/terms/decimalLongitude">dwc:decimalLongitude</a><sup class="sup-dp" title="datatype property">dp</sup><br/>
<a href="http://rs.tdwg.org/dwc/terms/decimalLatitude">dwc:decimalLatitude</a><sup class="sup-dp" title="datatype property">dp</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="OccurrenceStatusType">
<h3>Occurrence Status Type<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>https://linked.data.gov.au/def/phs#OccurrenceStatusType</code></td>
</tr>
<tr>
<th>Description</th>
<td>
The name of the Occurrence Status of a Target Pest, associated with a single Observation
</td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="http://www.w3.org/2004/02/skos/core#Concept">skos:Concept</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="PestOccurrenceStatus">
<h3>Pest Occurrence Status<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>https://linked.data.gov.au/def/phs#PestOccurrenceStatus</code></td>
</tr>
<tr>
<th>Description</th>
<td>
A statement of whether a pest, which was the target of a surveillance event, was detected or not by a specified Inspection Method.
</td>
</tr>
<tr>
<th>Usage Note</th>
<td>
If an organism that is a pest, but not the target of the specified Inspection Method, were detected, a new record would have to be created to register the 'bycatch' pest's status.
</td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="http://www.w3.org/ns/sosa/Result">sosa:Result</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>Restrictions</th>
<td>
<a href="http://purl.org/dc/terms/type">dcterms:type</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">exactly</span> 1 <a href="#OccurrenceStatusType">OccurrenceStatusType</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="Substrate">
<h3>Substrate<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>https://linked.data.gov.au/def/phs#Substrate</code></td>
</tr>
<tr>
<th>Description</th>
<td>
Thing or material on or in which a sample was taken for identification.
</td>
</tr>
<tr>
<th>Usage Note</th>
<td>
A Substrate is a Stratum that is not a Host. Usually non-living, such as a rock or leaf litter.
</td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="http://www.w3.org/ns/sosa/Platform">sosa:Platform</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>In domain of</th>
<td>
<a href="#supportspest">supportsPest</a><sup class="sup-op" title="object property">op</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="SubstrateType">
<h3>Substrate Type<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>https://linked.data.gov.au/def/phs#SubstrateType</code></td>
</tr>
<tr>
<th>Description</th>
<td>
The subtype of a Substrate
</td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="http://www.w3.org/2004/02/skos/core#Concept">skos:Concept</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="SurveillanceEvent">
<h3>SurveillanceEvent<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>https://linked.data.gov.au/def/phs#SurveillanceEvent</code></td>
</tr>
<tr>
<th>Description</th>
<td>
An act of surveillance for a target pest, performed according to a specified procedure
</td>
</tr>
<tr>
<th>Usage Note</th>
<td>
Also called 'Targetted' or 'Active' surveillance. The observation/s made during a Surveillance Event are directed towards establishing whether a Pest is present or not, insofar that the inspection method is capable of detecting the pest.
</td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="http://www.w3.org/ns/sosa/Observation">sosa:Observation</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>Restrictions</th>
<td>
<a href="#targetspest">targetsPest</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">min</span> 1 <a href="#TargetPest">TargetPest</a><sup class="sup-c" title="class">c</sup><br/>
<a href="http://www.w3.org/ns/sosa/usedProcedure">sosa:usedProcedure</a> <span class="cardinality">exactly</span> 1 <a href="#InspectionMethod">InspectionMethod</a><sup class="sup-c" title="class">c</sup><br/>
<a href="http://www.w3.org/ns/sosa/phenomenonTime">sosa:phenomenonTime</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">value</span> <a href="http://www.w3.org/2001/XMLSchema#date">xsd:date</a><sup class="sup-c" title="class">c</sup><br/>
<a href="http://www.w3.org/ns/sosa/hasFeatureOfInterest">sosa:hasFeatureOfInterest</a> <span class="cardinality">exactly</span> 1 <a href="#ObservationLocation">ObservationLocation</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>In domain of</th>
<td>
<a href="http://rs.tdwg.org/dwc/terms/recordedBy">dwc:recordedBy</a><sup class="sup-dp" title="datatype property">dp</sup><br/>
<a href="#haseffortunit">hasEffortUnit</a><sup class="sup-op" title="object property">op</sup><br/>
<a href="http://rs.tdwg.org/dwc/terms/eventID">dwc:eventID</a><sup class="sup-dp" title="datatype property">dp</sup><br/>
<a href="#effortvalue">effortValue</a><sup class="sup-dp" title="datatype property">dp</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="TargetPest">
<h3>Target Pest<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>https://linked.data.gov.au/def/phs#TargetPest</code></td>
</tr>
<tr>
<th>Description</th>
<td>
Pest or Pests that are the subject of a surveillance event. The primary goal of a surveillance event is to determine the presence or absence of a Target Pest according to an Inspection Method. Thus the Target Pest is the thing whose prorty is being estimated in the course of a Surveillance Event, to arrive at an Occurrence Status for the target pest.
</td>
</tr>
<tr>
<th>Usage Note</th>
<td>
The IPPC definition of Pest is 'Any species, strain or biotype of plant, animal or pathogenic agent injurious to plants or plant products.'
</td>
</tr>
<tr>
<th>In range of</th>
<td>
<a href="#targetspest">targetsPest</a><sup class="sup-op" title="object property">op</sup><br/>
<a href="#catchespest">catchesPest</a><sup class="sup-op" title="object property">op</sup><br/>
<a href="#detectspest">detectsPest</a><sup class="sup-op" title="object property">op</sup><br/>
<a href="#Identifiespest">identifiesPest</a><sup class="sup-op" title="object property">op</sup><br/>
<a href="#hostspest">hostsPest</a><sup class="sup-op" title="object property">op</sup><br/>
<a href="#supportspest">supportsPest</a><sup class="sup-op" title="object property">op</sup><br/>
<a href="#lurespest">luresPest</a><sup class="sup-op" title="object property">op</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="TargetPestType">
<h3>Target Pest Type<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>https://linked.data.gov.au/def/phs#TargetPestType</code></td>
</tr>
<tr>
<th>Description</th>
<td>
The subtype of a Target Pest. Perhaps a single Taxon or perhaps a Group
</td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="http://www.w3.org/2004/02/skos/core#Concept">skos:Concept</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="TaxonPresence">
<h3>Taxon Presence<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>https://linked.data.gov.au/def/phs#TaxonPresence</code></td>
</tr>
<tr>
<th>Description</th>
<td>
The identity of an organism whose occurrence was detected during a surveillance event.
</td>
</tr>
<tr>
<th>Usage Note</th>
<td>
A record of the identity of a taxon that was observed or taken as a sample by a Surveillance Event
</td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="http://www.w3.org/ns/sosa/ObservableProperty">sosa:ObservableProperty</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>In domain of</th>
<td>
<a href="http://rs.tdwg.org/dwc/terms/taxonRank">dwc:taxonRank</a><sup class="sup-dp" title="datatype property">dp</sup><br/>
<a href="#identificationID">identificationID</a><sup class="sup-dp" title="datatype property">dp</sup><br/>
<a href="#taxonomicreferencesource">taxonomicReferenceSource</a><sup class="sup-dp" title="datatype property">dp</sup><br/>
<a href="http://rs.tdwg.org/dwc/terms/taxonConceptID">dwc:taxonConceptID</a><sup class="sup-dp" title="datatype property">dp</sup><br/>
<a href="http://rs.tdwg.org/dwc/terms/vernacularName">dwc:vernacularName</a><sup class="sup-dp" title="datatype property">dp</sup><br/>
<a href="http://rs.tdwg.org/dwc/terms/scientificName">dwc:scientificName</a><sup class="sup-dp" title="datatype property">dp</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="Trap">
<h3>Trap<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>https://linked.data.gov.au/def/phs#Trap</code></td>
</tr>
<tr>
<th>Description</th>
<td>
A device that catches or collects organisms or evidence of them.
</td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="http://www.w3.org/ns/sosa/Sampler">sosa:Sampler</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>Restrictions</th>
<td>
<a href="http://purl.org/dc/terms/type">dcterms:type</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">exactly</span> 1 <a href="#TrapType">TrapType</a><sup class="sup-c" title="class">c</sup><br/>
<a href="#hasluretype">hasLureType</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">only</span> <a href="#LureType">LureType</a><sup class="sup-c" title="class">c</sup><br/>
<a href="http://purl.org/dc/terms/type">dcterms:type</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">min</span> 0 <a href="#LureType">LureType</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>In domain of</th>
<td>
<a href="#hastraptype">hasTrapType</a><sup class="sup-op" title="object property">op</sup><br/>
<a href="#hasluretype">hasLureType</a><sup class="sup-op" title="object property">op</sup><br/>
<a href="#catchespest">catchesPest</a><sup class="sup-op" title="object property">op</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="TrapType">
<h3>Trap Type<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>https://linked.data.gov.au/def/phs#TrapType</code></td>
</tr>
<tr>
<th>Description</th>
<td>
The make, model or design of a Trap
</td>
</tr>
<tr>
<th>Usage Note</th>
<td>
Trap Type must not to be confused with Trap ID, which is an identifier assigned to a single trap.
</td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="http://www.w3.org/2004/02/skos/core#Concept">skos:Concept</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>In range of</th>
<td>
<a href="#hastraptype">hasTrapType</a><sup class="sup-op" title="object property">op</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="Organization">
<h3>Organization<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>https://schema.org/Organization</code></td>
</tr>
</table>
</div>
<div class="entity class" id="Person">
<h3>Person<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>https://schema.org/Person</code></td>
</tr>
</table>
</div>
</section>
<section id="objectproperties">
<h2>Object Properties <span style="float:right; font-size:smaller;"><a href="">↑</a></span></h2>
<ul class="hlist">
<li><a href="#hasPart">hasPart</a></li>
<li><a href="#type">type</a></li>
<li><a href="#hasGeometry">hasGeometry</a></li>
<li><a href="#phenomenontime">phenomenon time</a></li>
<li><a href="#catchespest">catches pest</a></li>
<li><a href="#detectspest">detects pest</a></li>
<li><a href="#haseffortunit">has effort unit</a></li>
<li><a href="#hasluretype">has lure type</a></li>
<li><a href="#hastraptype">has trap type</a></li>
<li><a href="#hostspest">hosts pest</a></li>
<li><a href="#Identifiespest">Identifies pest</a></li>
<li><a href="#lurespest">lures pest</a></li>
<li><a href="#supportspest">supports pest</a></li>
<li><a href="#targetspest">targets pest</a></li>
</ul>
<div class="entity property" id="hasPart">
<h3>hasPart<sup title="object property" class="sup-op">op</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://purl.org/dc/terms/hasPart</code></td>
</tr>
</table>
</div>
<div class="entity property" id="type">
<h3>type<sup title="object property" class="sup-op">op</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://purl.org/dc/terms/type</code></td>
</tr>
</table>
</div>
<div class="entity property" id="hasGeometry">
<h3>hasGeometry<sup title="object property" class="sup-op">op</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://www.opengis.net/ont/geosparql#hasGeometry</code></td>
</tr>
</table>
</div>
<div class="entity property" id="phenomenontime">