-
Notifications
You must be signed in to change notification settings - Fork 4
/
addicto-edits.owl
10134 lines (6681 loc) · 622 KB
/
addicto-edits.owl
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"?>
<rdf:RDF xmlns="http://addictovocab.org/addicto.owl#"
xml:base="http://addictovocab.org/addicto.owl"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:obo="http://purl.obolibrary.org/obo/"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:xml="http://www.w3.org/XML/1998/namespace"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:foaf="http://xmlns.com/foaf/0.1/"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:chebi="http://purl.obolibrary.org/obo/chebi/"
xmlns:schema="https://schema.org/"
xmlns:Property="https://www.wikidata.org/wiki/Property:"
xmlns:oboInOwl="http://www.geneontology.org/formats/oboInOwl#"
xmlns:apollo_sv="http://purl.obolibrary.org/obo/apollo_sv.owl/">
<owl:Ontology rdf:about="http://addictovocab.org/addicto-edits.owl">
<owl:versionIRI rdf:resource="http://addictovocab.org/addicto-edits.owl/2022-07-19"/>
<owl:imports rdf:resource="http://addictovocab.org/addicto_external.owl"/>
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The Addiction Ontology (AddictO) is an ontology being developed all aspects of addiction research.</rdfs:comment>
<owl:versionInfo rdf:datatype="http://www.w3.org/2001/XMLSchema#string">2022-07-19</owl:versionInfo>
</owl:Ontology>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Classes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://addictovocab.org/ADDICTO_0000101 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000101">
<rdfs:subClassOf rdf:resource="http://addictovocab.org/ADDICTO_0000697"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Point prevalence tobacco smoking abstinence that lasts for 7 days prior to a time point.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">7-day point prevalence tobacco smoking abstinence</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000102 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000102">
<rdfs:subClassOf rdf:resource="http://addictovocab.org/ADDICTO_0000649"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Smoking cessation in which a smoker goes from his or her usual level of cigarette consumption to no use of cigarette within a day.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">abrupt smoking cessation</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000104 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000104">
<rdfs:subClassOf rdf:resource="http://humanbehaviourchange.org/ontology/BCIO_042000"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The behaviour of not performing a behaviour of a particular type.</obo:IAO_0000115>
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Abstinence only has any meaning when specifying what the behaviour is that the person is not doing.</rdfs:comment>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">abstinence</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000105 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000105">
<rdfs:subClassOf rdf:resource="http://addictovocab.org/ADDICTO_0000525"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The percentage of a population that at a given point in time is exhibiting the attribute of abstinence from a behaviour or psycoactive drug.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">abstinence rate</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000106 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000106">
<rdfs:subClassOf rdf:resource="http://addictovocab.org/ADDICTO_0000649"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Smoking cessation that occurs without a smoker having an intention to stop smoking.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">accidental smoking cessation</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000107 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000107">
<rdfs:subClassOf rdf:resource="http://addictovocab.org/ADDICTO_0000130"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Drug use pattern in which each episode is determined by factors operating at the time rather than according to a planned schedule.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ad lib drug use</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000108 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000108">
<rdfs:subClassOf rdf:resource="http://addictovocab.org/ADDICTO_0001026"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Vaping pattern in which each episode is determined by factors operating at the time rather than according to a planned schedule.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ad lib vaping</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000109 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000109">
<rdfs:subClassOf rdf:resource="http://addictovocab.org/ADDICTO_0000719"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A behaviour attribute involving the likelihood that someone who engages in the behaviour will become addicted to it.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">addictiveness of a behaviour</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000110 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000110">
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://addictovocab.org/ADDICTO_0000121"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0000057"/>
<owl:someValuesFrom rdf:resource="http://addictovocab.org/ADDICTO_0000523"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<rdfs:subClassOf rdf:resource="http://addictovocab.org/ADDICTO_0000121"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Alcohol consumption by an adolescent.</obo:IAO_0000115>
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Adolescent drinking</obo:IAO_0000118>
<obo:IAO_0000232 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Fully defined class because it is made up of the intersection of two classes.</obo:IAO_0000232>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">adolescent alcohol consumption</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000111 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000111">
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://addictovocab.org/ADDICTO_0000721"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0000057"/>
<owl:someValuesFrom rdf:resource="http://addictovocab.org/ADDICTO_0000523"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<rdfs:subClassOf rdf:resource="http://addictovocab.org/ADDICTO_0000721"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A substance use behaviour involving an adolescent.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">adolescent substance use</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000112 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000112">
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://addictovocab.org/ADDICTO_0001135"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0000057"/>
<owl:someValuesFrom rdf:resource="http://addictovocab.org/ADDICTO_0000523"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<rdfs:subClassOf rdf:resource="http://addictovocab.org/ADDICTO_0001135"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A drinking pattern by an adolescent.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">adolescent drinking pattern</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000113 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000113">
<rdfs:subClassOf rdf:resource="http://addictovocab.org/ADDICTO_0001135"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Abstinence in alcohol consumption.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">alcohol abstinence</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000114 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000114">
<rdfs:subClassOf rdf:resource="http://addictovocab.org/ADDICTO_0000720"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A consumption behaviour pattern involving use of a substance containing alcohol concurrently with use of a psychoactive substance that has not been legally sanctioned in the jurisdiction in which the user resides.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">alcohol and substance use pattern</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000115 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000115">
<rdfs:subClassOf rdf:resource="http://addictovocab.org/ADDICTO_0000127"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A change quantity or pattern of alcohol consumption.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">alcohol consumption change</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000116 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000116">
<rdfs:subClassOf rdf:resource="http://addictovocab.org/ADDICTO_0000127"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A reduction in alcohol consumption.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">alcohol consumption reduction</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000117 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000117">
<rdfs:subClassOf rdf:resource="http://addictovocab.org/ADDICTO_0000127"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A population level pattern of alcohol consumption.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">alcohol consumption trend</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000118 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000118">
<rdfs:subClassOf rdf:resource="http://addictovocab.org/ADDICTO_0000127"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The first instance of alcohol consumption.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">alcohol initiation</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000119 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000119">
<rdfs:subClassOf rdf:resource="http://addictovocab.org/ADDICTO_0000127"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Consumption of alcohol in a manner that is deemed unacceptable in the jurisdiction in which the user resides.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">alcohol misuse</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000120 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000120">
<rdfs:subClassOf rdf:resource="http://addictovocab.org/ADDICTO_0000719"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Consumption of alcohol in a manner that is deemed to cause harm to the individual, others or society.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">alcohol problem</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000121 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000121">
<rdfs:subClassOf rdf:resource="http://addictovocab.org/ADDICTO_0000127"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A consumption behaviour that involves drinking an alcohol-containing product.</obo:IAO_0000115>
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Alcohol use</obo:IAO_0000118>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">alcohol consumption</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000122 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000122">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000015"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A process that involves repeated occurrences of a behaviour.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">behaviour pattern</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000123 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000123">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000144"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A process profile that involves starting then stopping a behaviour following abstinence.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">behavioural lapse</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000124 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000124">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000035"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A process boundary that involves restarting a behaviour pattern after a period of abstinence from that behaviour pattern.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">behavioural relapse</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000127 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000127">
<rdfs:subClassOf rdf:resource="http://humanbehaviourchange.org/ontology/BCIO_042000"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Behaviour in which a person consumes, ingests or takes an entity into themselves.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">consumption behaviour</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000128 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000128">
<rdfs:subClassOf rdf:resource="http://addictovocab.org/ADDICTO_0000663"/>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A person uses e-cigarettes for 3 years.</obo:IAO_0000112>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A temporal region during which e-cigarettes have been used.</obo:IAO_0000115>
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">E-cigarette use duration</obo:IAO_0000118>
<obo:IAO_0000232 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">This duration relates to a whole behaviour pattern.</obo:IAO_0000232>
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">This refers to the aggregate of use episodes in a person's history not a single e-cigarette use episode. That is covered by 'Duration of e-cigarette use episode'.</rdfs:comment>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">duration of e-cigarette use</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000129 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000129">
<rdfs:subClassOf rdf:resource="http://addictovocab.org/ADDICTO_0000663"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A temporal region during which a single episode of e-cigarette use takes place.</obo:IAO_0000115>
<obo:IAO_0000232 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">This duration relates to a specific behavioural episode.</obo:IAO_0000232>
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">This refers to the duration of a single episode of e-cigarette use by a person. This can be aggregated across episodes using statistics such as mean, median etc.</rdfs:comment>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">duration of e-cigarette use episode</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000130 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000130">
<rdfs:subClassOf rdf:resource="http://addictovocab.org/ADDICTO_0000122"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A behaviour pattern involving ingestion of a psychoactive drug.</obo:IAO_0000115>
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Drug use pattern</obo:IAO_0000118>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">substance use pattern</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000131 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000131">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000015"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A process in which use of a product delivering a psychoactive substance increases the likelihood of use of another product delivering a psychoactive substance.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">gateway effect</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000132 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000132">
<rdfs:subClassOf rdf:resource="http://addictovocab.org/ADDICTO_0000122"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A behaviour pattern that continues over an extended period of time.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">habitual behaviour pattern</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000133 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000133">
<rdfs:subClassOf rdf:resource="http://humanbehaviourchange.org/ontology/BCIO_042000"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Absence from work as a result of an injury.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">injury-related work-absence</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000135 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000135">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/PATO_0000001"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A quality that inheres in a person.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">personal quality</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000136 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000136">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000015"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A process in which an increase in prevalence of use of a product delivering a psychoactive substance leads to an increase in the prevalence of use of another product delivering a psychoactive substance.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">population gateway effect</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000137 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000137">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000015"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Human behaviour that involves use of a product.</obo:IAO_0000115>
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Product-using behaviour</obo:IAO_0000118>
<obo:IAO_0000232 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Product use behaviour is included to provide a link between product and a class of behaviour for which the relation always holds.</obo:IAO_0000232>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">product use behaviour</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000138 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000138">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000035"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A process boundary that involves the end of a period of tobacco use.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">tobacco cessation</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000139 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000139">
<rdfs:subClassOf rdf:resource="http://addictovocab.org/ADDICTO_0000135"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A personal quality that involves not smoking tobacco having previously done so.</obo:IAO_0000115>
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> smoking abstinence</obo:IAO_0000118>
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> tobacco abstinence.</obo:IAO_0000118>
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> tobacco cessation</obo:IAO_0000118>
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Smoking cessation</obo:IAO_0000118>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">tobacco smoking abstinence</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000140 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000140">
<rdfs:subClassOf rdf:resource="http://addictovocab.org/ADDICTO_0000124"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Behavioural relapse that involves tobacco smoking.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">tobacco smoking relapse</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000141 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000141">
<rdfs:subClassOf rdf:resource="http://humanbehaviourchange.org/ontology/BCIO_042000"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Not attending for paid employment but not on annual leave.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">work absence</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000142 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000142">
<rdfs:subClassOf rdf:resource="http://addictovocab.org/ADDICTO_0000149"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Follow-up that occurs 12-months after the start of a follow-up period</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">12-month follow-up</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000143 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000143">
<rdfs:subClassOf rdf:resource="http://addictovocab.org/ADDICTO_0000149"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Follow-up that occurs 24-months after the start of a follow-up period</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">24-month follow-up</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000144 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000144">
<rdfs:subClassOf rdf:resource="http://addictovocab.org/ADDICTO_0000150"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A self-report questionaire for identifying minor psychiatric disorders in the general population and within community or non-psychiatric clinical settings such as primary care or general medical out-patients. Suitable for all ages from adolescent upwards , it assesses the respondents current state and asks if that differs from his or her usual state.</obo:IAO_0000115>
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">28-item GHQ</obo:IAO_0000118>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">https://www.cambridge.org/core/journals/psychological-medicine/article/scaled-version-of-the-general-health-questionnaire/855845C6B366DB4AEDD66C350320D2A9</obo:IAO_0000119>
<obo:IAO_0000232 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The cross reference is a useful source of information about the questionnaire.</obo:IAO_0000232>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">28-item General Health Questionnaire</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000145 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000145">
<rdfs:subClassOf rdf:resource="http://addictovocab.org/ADDICTO_0000149"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Follow-up that occurs 6 months after the start of a follow-up period</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">6-month follow-up</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000146 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000146">
<rdfs:subClassOf rdf:resource="http://addictovocab.org/ADDICTO_0000170"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Literature that is an output of academic activity.</obo:IAO_0000115>
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">This covers the output of any academic activity, not just research.</rdfs:comment>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">academic literature</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000147 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000147">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0000071"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A quantitative confidence value that refers to an interval give values within which there is a high probability that the true population value can be found. The calculation of a confidence interval considers the standard deviation of the data and the number of observations. Thus, a confidence interval narrows as the number of observations increases, or its variance decreases.</obo:IAO_0000115>
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">CI</obo:IAO_0000118>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://purl.obolibrary.org/obo/OBCS_0000070</obo:IAO_0000119>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">confidence interval</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000149 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000149">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SEPIO_0000004"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A research activity that involves taking a measurement after the end of an intervention or research activity.</obo:IAO_0000115>
<obo:IAO_0000232 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">This attempts to capture the most common usage and so distinguishes between end-of-treatment assessment and follow up.</obo:IAO_0000232>
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Used in cohort studies and intervention evaluations to capture meausres taken after the end of the intervention or a baseline measure.</rdfs:comment>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">follow-up</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000150 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000150">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000310"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A document that contains a set of questions.</obo:IAO_0000115>
<obo:IAO_0000232 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The most iwdely used definition in OntoBee is from OBI but it is too specific.</obo:IAO_0000232>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">questionnaire</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000151 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000151">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000015"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A process in which a questionnaire is answered.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">questionnaire administration</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000152 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000152">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000030"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An information content entity that is used in a research study to specify how a measurement should be undertaken.</obo:IAO_0000115>
<obo:IAO_0000232 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">This and the one below need VERY clear labels to disambiguate</obo:IAO_0000232>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">research measure</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000153 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000153">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0000011"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A planned process that has as its output a data item corresponding to a quantitative or qualitative description of the attributes of an entity.</obo:IAO_0000115>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Measurement is not itself defined, except tautologically as "the data item that is the output of a measuremnet"</obo:IAO_0000119>
<obo:IAO_0000232 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Why not just 'measurement'?</obo:IAO_0000232>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">research study measurement</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000154 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000154">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000109"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A measurment datum that is produced as part of a research study.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">research study measurement datum</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000155 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000155">
<rdfs:subClassOf rdf:resource="http://addictovocab.org/ADDICTO_0000151"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A questionnaire that is administered in such a way that the person completing the questionnaire is answering questions about themselves.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">self-report questionnaire</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000156 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000156">
<rdfs:subClassOf rdf:resource="http://addictovocab.org/ADDICTO_0000157"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The process boundary at the beginning of a follow-up period.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">start of follow-up period</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000157 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000157">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000035"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The process boundary when a process or temporal region starts.</obo:IAO_0000115>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">AFP:0003328</obo:IAO_0000119>
<obo:IAO_0000232 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Definition from AFP modified to include temporal region.</obo:IAO_0000232>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">temporal start</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000160 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000160">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000027"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A data item that represents a human being who has received an intervention intended to result in cessation of an addictive behaviour and who, after a period of abstinence, has resumed the behaviour.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">addiction relapse case</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000161 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000161">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SEPIO_0000004"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Research activity about addiction.</obo:IAO_0000115>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">NCIT defines research as "Systematic investigation into a subject in order to discover facts, establish or revise a theory, or develop a plan of action based on the facts discovered."</obo:IAO_0000119>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">addiction research</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000163 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000163">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/MF_0000016"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A person who has analytic toxicologist role.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">analytic toxicologist</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000164 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000164">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_50906"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A sample is a substance role played by a biological substance as an input substance to a protocol.</obo:IAO_0000115>
<obo:IAO_0000232 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The definition and link to role is coherent with BFO but the ontology itself is probably not suitable to be imported.</obo:IAO_0000232>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">biological sample</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000166 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000166">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SEPIO_0000004"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A research activity that forms part of a research study that aims to influence an outcome.</obo:IAO_0000115>
<obo:IAO_0000232 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">BCIO?</obo:IAO_0000232>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">experimental manipulation</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000167 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000167">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000008"/>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The follow up period was for 12 months from the offer of a prescription for varenicline.</obo:IAO_0000112>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A period of time between a research activity and follow up.</obo:IAO_0000115>
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The temporal period is often counted from the start of an intervention even though the definition of follow up states that it takes place after the end of an intervention.</rdfs:comment>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">follow-up period</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000168 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000168">
<rdfs:subClassOf rdf:resource="http://addictovocab.org/ADDICTO_0000889"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Research literature whose constituent documents have not been published in a peer-reviewed journal.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">grey literature</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000170 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000170">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000030"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An information content entity that is an aggregate of documents.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">literature</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000171 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000171">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000030"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An information content entity that represents attributes of a population for the purposes of modelling processes or outcomes in that population.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">simulated population</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000172 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000172">
<rdfs:subClassOf rdf:resource="http://addictovocab.org/ADDICTO_0000152"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A research measure that has been subjected to evaluation for one or more forms of validity and which it is claimed has reached or exceeded an appropriate threshold on that criterion.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">validated measure</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000173 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000173">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000027"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A database documenting absence from work</obo:IAO_0000115>
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Absence register</obo:IAO_0000118>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">work absence register</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000174 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000174">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000027"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A data item that is the year in which a publication was published.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">year of publication</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000175 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000175">
<rdfs:subClassOf rdf:resource="http://addictovocab.org/ADDICTO_0000179"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A personal stake that interferes with the impartial enactment of a professional role.</obo:IAO_0000115>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">https://journals.plos.org/plosbiology/s/competing-interests</obo:IAO_0000119>
<obo:IAO_0000232 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The definition was adapted from the PLOS definition.</obo:IAO_0000232>
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Competing interests carry no implication of wrong-doing and are often unavoidable. However, they must be disclosed and in some cases may preclude someone from performing a particular role.</rdfs:comment>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">competing interest</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000177 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000177">
<rdfs:subClassOf rdf:resource="http://addictovocab.org/ADDICTO_0001145"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A potential competing interest that involves the possibility of personal financial gain or loss resulting from enactment of the professional role.</obo:IAO_0000115>
<obo:IAO_0000232 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The definition was adapted from the PLOS definition.</obo:IAO_0000232>
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">This includes: 1) ownership of stocks or shares, 2) employment in an organisation, 3) providing paid consultancy to an organisation, 4) being a director of a company, 5) receiving any kind of funding or tangible benefit from an organisation, 6) ownership of, or pending application for, a patent, and 7) seeking funding from an organisation, that may be affected by the enactment of the professional role. It also includes all of the above that relate to an intimate partner. Organisation includes commercial organisation, government agency, and charity.</rdfs:comment>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">financial potential competing interest</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000178 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000178">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000088"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A report that provides information about a person's potential competing interest.</obo:IAO_0000115>
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Good practice involves being as inclusive as possible to ensure full transparency and include both financial and non-financial attributes that might conceivably influence the conduct, reporting or evaluation of research whether or not it actually does so.</rdfs:comment>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">disclosure of potential competing interest</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000179 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000179">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_50906"/>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Dr Smith has a personal stake in the outcome of the clinical trial of the drug, varenicline, because he has shares in the company that produces the drug.</obo:IAO_0000112>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A personal attribute that involves an outcome of value to that person arising from a process.</obo:IAO_0000115>
<obo:IAO_0000232 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">This is derived from the idea of a stakeholder and is a generalisation of vested interest.</obo:IAO_0000232>
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Value here can be positive or negative. This definition refers to actual value rather than perceived value. The process that produces the outcome will often be an event such as reporting of the outcome of a clinical trial, or delivery of a verdict in a trial, or enactment of legislation.</rdfs:comment>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">personal stake</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000180 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000180">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000031"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Funding that originates from one or more tobacco companies.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">tobacco industry funding</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000183 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000183">
<rdfs:subClassOf rdf:resource="http://addictovocab.org/ADDICTO_0000186"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The absolute amount of harm to an individual resulting from use of an e-cigarette. It can be quantified in many different ways from using numeric or textual labels. No harm is represented by '0', 'Zero harm' or 'No harm'.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">absolute e-cigarette harmfulness to health</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000184 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000184">
<rdfs:subClassOf rdf:resource="http://addictovocab.org/ADDICTO_0000185"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The absolute amount risk of harm to an individual resulting from use of a nicotine product at a specified amount for a specified duration in a specified way. It can be quantified in many different ways from using numeric or textual labels. No risk is represented by '0', 'Zero harm' or 'No harm'.</obo:IAO_0000115>
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">absolute risk</obo:IAO_0000118>
<obo:IAO_0000232 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Differentiated from absolute harm in that it combines amount of harm with probability of harm. Thus a high risk of harm involves both high probability of harm and high amount of harm. A low risk of harm could involve a low probability of a high amount of harm. This term should probably not be used without quantifying the degree of risk and the amount of harm in objective terms.</obo:IAO_0000232>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">absolute nicotine-related risk of harm</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000185 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000185">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000027"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A data item that is about the amount of harm produced by a product in a population over a time period expressed as an absolute quantity using a metric.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">absolute product harmfulness</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000186 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000186">
<rdfs:subClassOf rdf:resource="http://addictovocab.org/ADDICTO_0000185"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Absolute product harmfulness in which the harm relates to health.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">absolute product harmfulness to health</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000187 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000187">
<rdfs:subClassOf rdf:resource="http://addictovocab.org/ADDICTO_0000186"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Absolute product harmfulness to health in which the product is a tobacco-containing product.</obo:IAO_0000115>
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">harmfulness</obo:IAO_0000118>
<obo:IAO_0000232 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Differentiated from relative harm which expressed the difference between or ration of two harms. It is a subjective term and probably should not be used without quantifying the harm in objective terms.</obo:IAO_0000232>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">absolute tobacco product harmfulness to health</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000188 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000188">
<rdfs:subClassOf rdf:resource="http://addictovocab.org/ADDICTO_0000830"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Psychoactive substance attribute involving its propensity for abuse by people who ingest it.</obo:IAO_0000115>
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">abuse liability of a substance</obo:IAO_0000118>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">abuse potential of a substance</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000190 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000190">
<rdfs:subClassOf rdf:resource="http://addictovocab.org/ADDICTO_0000213"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An e-cigarette atomiser which the user can adjust to different levels of power.</obo:IAO_0000115>
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">adjustable power atomiser</obo:IAO_0000118>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">adjustable power e-cigarette atomiser</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000191 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000191">
<rdfs:subClassOf rdf:resource="http://addictovocab.org/ADDICTO_0001122"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A disposition inhering in a product that is realised as adverse consequences to the user of the product.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">adverse event profile of a product</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000192 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000192">
<rdfs:subClassOf rdf:resource="http://addictovocab.org/ADDICTO_0000832"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Harm that is causally influenced by intoxication resulting from consumption of alcohol by a person.</obo:IAO_0000115>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">alcohol-related harm</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000193 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000193">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/CHEBI_35488"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A central nervous system depressant that is used to prevent seizures or reduce their severity.</obo:IAO_0000115>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">CHEBI:35623</obo:IAO_0000119>
<obo:IAO_0000232 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Taken from ChEBI but slight edited for consistency.</obo:IAO_0000232>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">anticonvulsant drug</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000194 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000194">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000030"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An information content entity that is used by a person or organisation to denote and promote a product.</obo:IAO_0000115>
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Brand name</obo:IAO_0000118>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">brand</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000195 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000195">
<rdfs:subClassOf rdf:resource="http://addictovocab.org/ADDICTO_0001106"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000051"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/CHEBI_66964"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000051"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/CHEBI_67194"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0000087"/>
<owl:someValuesFrom rdf:resource="http://addictovocab.org/ADDICTO_0000281"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A plant extract from the cannabis plant.</obo:IAO_0000115>
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> cannabis</obo:IAO_0000118>
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">marijuana</obo:IAO_0000118>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cannabis extract</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000196 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000196">
<rdfs:subClassOf rdf:resource="http://addictovocab.org/ADDICTO_0000195"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000051"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/CHEBI_66964"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000051"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/CHEBI_67194"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A cannabis extract that has been treated with volatile solvent to result in a higher concentration of THC.</obo:IAO_0000115>
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> Butanne Hash oil</obo:IAO_0000118>
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> CO2 oil</obo:IAO_0000118>
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> Shatter</obo:IAO_0000118>
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> badder</obo:IAO_0000118>
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> bubble hash</obo:IAO_0000118>
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> budder</obo:IAO_0000118>
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> butane hash oil </obo:IAO_0000118>
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> charas</obo:IAO_0000118>
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> concentrates</obo:IAO_0000118>
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> crumble</obo:IAO_0000118>
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> dabs</obo:IAO_0000118>
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> distillate</obo:IAO_0000118>
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> dry sift</obo:IAO_0000118>
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> full-melt hash</obo:IAO_0000118>
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> hash</obo:IAO_0000118>
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> hash oil</obo:IAO_0000118>
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> hashish</obo:IAO_0000118>
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> honey oil</obo:IAO_0000118>
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> ice water hash</obo:IAO_0000118>
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> marijuana extract/ concentrate</obo:IAO_0000118>
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> propane hash oil</obo:IAO_0000118>
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> rosin</obo:IAO_0000118>
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> shatter</obo:IAO_0000118>
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> wax</obo:IAO_0000118>
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Cannabis extract</obo:IAO_0000118>
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Clarify what cannabis the concentrates are made up of i.e. CBD or THC and where possible what %</rdfs:comment>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cannabis concentrate</rdfs:label>
</owl:Class>