forked from addicto-org/addiction-ontology
-
Notifications
You must be signed in to change notification settings - Fork 0
/
addicto_with_imports.owl
12365 lines (8100 loc) · 583 KB
/
addicto_with_imports.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_with_imports.owl#"
xml:base="http://addictovocab.org/addicto_with_imports.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:sdg="http://purl.unep.org/sdg/"
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:skos="http://www.w3.org/2004/02/skos/core#"
xmlns:sssom="https://w3id.org/sssom/"
xmlns:terms="http://purl.org/dc/terms/"
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/"
xmlns:owlready_ontology="http://www.lesfleursdunormal.fr/static/_downloads/owlready_ontology.owl#">
<owl:Ontology rdf:about="http://addictovocab.org/addicto_with_imports.owl">
<owl:imports rdf:resource="http://addictovocab.org/addicto_external.owl"/>
</owl:Ontology>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Annotation properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/IAO_0000112 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000112"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000114 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000114"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000115 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000115"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000118 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000118"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000119 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000119"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000232 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000232"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Object Properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/BFO_0000050 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000050"/>
<!-- http://purl.obolibrary.org/obo/BFO_0000051 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000051"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000136 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000136"/>
<!-- http://purl.obolibrary.org/obo/RO_0000052 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0000052"/>
<!-- http://purl.obolibrary.org/obo/RO_0000057 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0000057"/>
<!-- http://purl.obolibrary.org/obo/RO_0000087 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0000087"/>
<!-- http://purl.obolibrary.org/obo/RO_0000091 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0000091"/>
<!-- http://purl.obolibrary.org/obo/RO_0001000 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0001000"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// 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_0000114>Proposed</obo:IAO_0000114>
<obo:IAO_0000115>Point prevalence tobacco smoking abstinence that lasts for 7 days prior to a time point.</obo:IAO_0000115>
<rdfs:label>7-day point prevalence tobacco smoking 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_0001355"/>
<obo:IAO_0000114>Proposed</obo:IAO_0000114>
<obo:IAO_0000115>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>abstinence rate</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000107 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000107">
<rdfs:subClassOf rdf:resource="http://humanbehaviourchange.org/ontology/BCIO_050211"/>
<obo:IAO_0000114>Proposed</obo:IAO_0000114>
<obo:IAO_0000115>A substance use behaviour 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>ad lib substance use</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_0001232"/>
<obo:IAO_0000114>Discussed</obo:IAO_0000114>
<obo:IAO_0000115>A behavioural attribute that is the extent to which it results in addiction in people who engage in it.</obo:IAO_0000115>
<obo:IAO_0000118>addictiveness</obo:IAO_0000118>
<obo:IAO_0000232>The parent term 'behavioural attribute' in the Behaviour Change Intervention Ontology.</obo:IAO_0000232>
<rdfs:comment>We often refer to 'addictiveness' of drugs, but this is imprecise and inaccurate because it is the behaviour of ingesting a particular drug formulation in a particular way to which people become addicted. For example, people talk about nicotine having high addictiveness, but it is particular behaviours that involve ingesting nicotine (e.g. cigarette smoking) that are addictive while others (e.g. putting on a nicotine transdermal patch) are not.</rdfs:comment>
<rdfs:label>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://humanbehaviourchange.org/ontology/BCIO_050376"/>
<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://humanbehaviourchange.org/ontology/BCIO_050376"/>
<obo:IAO_0000114>Proposed</obo:IAO_0000114>
<obo:IAO_0000115>Alcohol consumption by an adolescent.</obo:IAO_0000115>
<obo:IAO_0000118>Adolescent drinking</obo:IAO_0000118>
<obo:IAO_0000232>Fully defined class because it is made up of the intersection of two classes.</obo:IAO_0000232>
<rdfs:label>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://humanbehaviourchange.org/ontology/BCIO_036113"/>
<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://humanbehaviourchange.org/ontology/BCIO_036113"/>
<obo:IAO_0000114>Discussed</obo:IAO_0000114>
<obo:IAO_0000115>A substance use behaviour by an adolescent.</obo:IAO_0000115>
<rdfs:label>adolescent substance use</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000114 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000114">
<rdfs:subClassOf rdf:resource="http://humanbehaviourchange.org/ontology/BCIO_050210"/>
<obo:IAO_0000114>Proposed</obo:IAO_0000114>
<obo:IAO_0000115>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>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://humanbehaviourchange.org/ontology/BCIO_036061"/>
<obo:IAO_0000114>Proposed</obo:IAO_0000114>
<obo:IAO_0000115>A change quantity or pattern of alcohol consumption.</obo:IAO_0000115>
<rdfs:label>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://humanbehaviourchange.org/ontology/BCIO_036061"/>
<obo:IAO_0000114>Proposed</obo:IAO_0000114>
<obo:IAO_0000115>A reduction in alcohol consumption.</obo:IAO_0000115>
<rdfs:label>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://humanbehaviourchange.org/ontology/BCIO_036061"/>
<obo:IAO_0000114>Proposed</obo:IAO_0000114>
<obo:IAO_0000115>A population level pattern of alcohol consumption.</obo:IAO_0000115>
<rdfs:label>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://humanbehaviourchange.org/ontology/BCIO_036061"/>
<obo:IAO_0000114>Proposed</obo:IAO_0000114>
<obo:IAO_0000115>The first instance of alcohol consumption.</obo:IAO_0000115>
<rdfs:label>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://humanbehaviourchange.org/ontology/BCIO_036061"/>
<obo:IAO_0000114>Proposed</obo:IAO_0000114>
<obo:IAO_0000115>Consumption of alcohol in a manner that is deemed unacceptable in the jurisdiction in which the user resides.</obo:IAO_0000115>
<rdfs:label>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_0000114>Proposed</obo:IAO_0000114>
<obo:IAO_0000115>Consumption of alcohol in a manner that is deemed to cause harm to the individual, others or society.</obo:IAO_0000115>
<rdfs:label>alcohol problem</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_0000114>Proposed</obo:IAO_0000114>
<obo:IAO_0000115>A process that involves repeated occurrences of a behaviour.</obo:IAO_0000115>
<rdfs:label>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_0000114>Proposed</obo:IAO_0000114>
<obo:IAO_0000115>A process profile that involves starting then stopping a behaviour following abstinence.</obo:IAO_0000115>
<rdfs:label>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_0000114>Proposed</obo:IAO_0000114>
<obo:IAO_0000115>A process boundary that involves restarting a behaviour pattern after a period of abstinence from that behaviour pattern.</obo:IAO_0000115>
<rdfs:label>behavioural relapse</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000126 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000126">
<rdfs:subClassOf rdf:resource="http://addictovocab.org/ADDICTO_0001321"/>
<obo:IAO_0000114>Proposed</obo:IAO_0000114>
<obo:IAO_0000115>A drug use behaviour in which the drug is codeine.</obo:IAO_0000115>
<rdfs:label>codeine use</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_0000114>Discussed</obo:IAO_0000114>
<obo:IAO_0000115>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>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_0000114>Proposed</obo:IAO_0000114>
<obo:IAO_0000115>A behaviour pattern that continues over an extended period of time.</obo:IAO_0000115>
<rdfs:label>habitual behaviour pattern</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_0000114>Discussed</obo:IAO_0000114>
<obo:IAO_0000115>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>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://humanbehaviourchange.org/ontology/BCIO_036027"/>
<obo:IAO_0000114>Proposed</obo:IAO_0000114>
<obo:IAO_0000115>Object-using behaviour that involves use of a product.</obo:IAO_0000115>
<obo:IAO_0000118>Product-using behaviour</obo:IAO_0000118>
<obo:IAO_0000232>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>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_0000114>Proposed</obo:IAO_0000114>
<obo:IAO_0000115>A process boundary that involves the end of a period of tobacco use.</obo:IAO_0000115>
<rdfs:label>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://humanbehaviourchange.org/ontology/BCIO_050303"/>
<obo:IAO_0000114>Proposed</obo:IAO_0000114>
<obo:IAO_0000115>A personal quality that involves not smoking tobacco having previously done so.</obo:IAO_0000115>
<obo:IAO_0000118>tobacco abstinence.</obo:IAO_0000118>
<rdfs:label>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_0000114>Proposed</obo:IAO_0000114>
<obo:IAO_0000115>Behavioural relapse that involves tobacco smoking.</obo:IAO_0000115>
<rdfs:label>tobacco smoking relapse</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_0000114>Discussed</obo:IAO_0000114>
<obo:IAO_0000115>Follow-up that occurs at the 12-month follow-up point.</obo:IAO_0000115>
<rdfs:label>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_0000114>Discussed</obo:IAO_0000114>
<obo:IAO_0000115>Follow-up that occurs at the 24-month follow-up point.</obo:IAO_0000115>
<rdfs:label>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_0000114>Discussed</obo:IAO_0000114>
<obo:IAO_0000115>A self-report questionnaire 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.</obo:IAO_0000115>
<obo:IAO_0000118>28-item GHQ</obo:IAO_0000118>
<obo:IAO_0000119>https://www.cambridge.org/core/journals/psychological-medicine/article/scaled-version-of-the-general-health-questionnaire/855845C6B366DB4AEDD66C350320D2A9</obo:IAO_0000119>
<obo:IAO_0000232>The cross reference is a useful source of information about the questionnaire.</obo:IAO_0000232>
<rdfs:label>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_0000114>Discussed</obo:IAO_0000114>
<obo:IAO_0000115>Follow-up that occurs at the 6-month follow-up point.</obo:IAO_0000115>
<rdfs:label>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_0000114>Discussed</obo:IAO_0000114>
<obo:IAO_0000115>Literature that is an output of academic activity.</obo:IAO_0000115>
<rdfs:comment>This covers the output of any academic activity, not just research.</rdfs:comment>
<rdfs:label>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_0000114>Proposed</obo:IAO_0000114>
<obo:IAO_0000115>A quantitative confidence value that refers to an interval give values within which there is a high probability (95 percent by convention) 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 (dispersion) decreases.</obo:IAO_0000115>
<obo:IAO_0000118>CI</obo:IAO_0000118>
<obo:IAO_0000119>http://purl.obolibrary.org/obo/OBCS_0000070</obo:IAO_0000119>
<rdfs:label>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_0000114>Discussed</obo:IAO_0000114>
<obo:IAO_0000115>A research activity that involves taking a measurement after the start of an intervention or research activity.</obo:IAO_0000115>
<obo:IAO_0000232>This attempts to capture the most common usage and so distinguishes between end-of-treatment assessment and follow up.</obo:IAO_0000232>
<rdfs:comment>Used in longitudinal studies and intervention evaluations to capture measures taken after the start of an intervention or a baseline measure.</rdfs:comment>
<rdfs:label>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_0000114>Discussed</obo:IAO_0000114>
<obo:IAO_0000115>A document that contains a set of questions.</obo:IAO_0000115>
<obo:IAO_0000232>The most iwdely used definition in OntoBee is from OBI but it is too specific.</obo:IAO_0000232>
<rdfs:label>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_0000114>Discussed</obo:IAO_0000114>
<obo:IAO_0000115>A process in which answers to questions in a questionnaire are obtained.</obo:IAO_0000115>
<rdfs:label>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_0000114>Proposed</obo:IAO_0000114>
<obo:IAO_0000115>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>This and the one below need VERY clear labels to disambiguate</obo:IAO_0000232>
<rdfs:label>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_0000114>Proposed</obo:IAO_0000114>
<obo:IAO_0000115>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>Measurement is not itself defined, except tautologically as "the data item that is the output of a measuremnet"</obo:IAO_0000119>
<obo:IAO_0000232>Why not just 'measurement'?</obo:IAO_0000232>
<rdfs:label>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_0000114>Proposed</obo:IAO_0000114>
<obo:IAO_0000115>A measurment datum that is produced as part of a research study.</obo:IAO_0000115>
<rdfs:label>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_0000114>Discussed</obo:IAO_0000114>
<obo:IAO_0000115>A questionnaire administration in which the person completing the questionnaire is answering questions about themselves.</obo:IAO_0000115>
<rdfs:label>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_0000114>Discussed</obo:IAO_0000114>
<obo:IAO_0000115>The process boundary at the beginning of a follow-up period.</obo:IAO_0000115>
<rdfs:label>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_0000114>Discussed</obo:IAO_0000114>
<obo:IAO_0000115>The process boundary when a process or temporal region starts.</obo:IAO_0000115>
<obo:IAO_0000119>AFP:0003328</obo:IAO_0000119>
<obo:IAO_0000232>Definition from AFP modified to include temporal region.</obo:IAO_0000232>
<rdfs:label>temporal start</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000158 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000158">
<rdfs:subClassOf rdf:resource="http://addictovocab.org/ADDICTO_0001290"/>
<obo:IAO_0000114>Discussed</obo:IAO_0000114>
<obo:IAO_0000115>A statistical interaction between three variables.</obo:IAO_0000115>
<rdfs:label>3-way statistical interaction</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000159 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000159">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/BFO_0000031"/>
<obo:IAO_0000114>Proposed</obo:IAO_0000114>
<obo:IAO_0000115>A generically dependent continuant that is a representation or abstraction of a portion of reality, is created by a cognitive agent or group of agents through a process of scientific enquiry, and serves to explain, predict or describe phenomena within a specified domain.</obo:IAO_0000115>
<rdfs:label>scientific model</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_0000114>Proposed</obo:IAO_0000114>
<obo:IAO_0000115>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>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_0000114>Proposed</obo:IAO_0000114>
<obo:IAO_0000115>Research activity about addiction.</obo:IAO_0000115>
<obo:IAO_0000119>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>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_0000114>Proposed</obo:IAO_0000114>
<obo:IAO_0000115>A person who has analytic toxicologist role.</obo:IAO_0000115>
<rdfs:label>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_0000114>Proposed</obo:IAO_0000114>
<obo:IAO_0000115>A sample is a substance role played by a biological substance as an input substance to a protocol.</obo:IAO_0000115>
<obo:IAO_0000232>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>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_0000114>Proposed</obo:IAO_0000114>
<obo:IAO_0000115>A research activity that forms part of a research study that aims to influence an outcome.</obo:IAO_0000115>
<obo:IAO_0000232>BCIO?</obo:IAO_0000232>
<rdfs:label>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>The follow up period was for 12 months from the offer of a prescription for varenicline.</obo:IAO_0000112>
<obo:IAO_0000114>Discussed</obo:IAO_0000114>
<obo:IAO_0000115>A temporal region between a research activity and a follow-up.</obo:IAO_0000115>
<rdfs:comment>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>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_0000114>Discussed</obo:IAO_0000114>
<obo:IAO_0000115>Research literature whose constituent documents have not been published in a peer-reviewed journal.</obo:IAO_0000115>
<rdfs:label>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_0000114>Discussed</obo:IAO_0000114>
<obo:IAO_0000115>An information content entity that is an aggregate of documents.</obo:IAO_0000115>
<rdfs:label>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_0000114>Proposed</obo:IAO_0000114>
<obo:IAO_0000115>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>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_0000114>Proposed</obo:IAO_0000114>
<obo:IAO_0000115>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>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_0000114>Proposed</obo:IAO_0000114>
<obo:IAO_0000115>A database documenting absence from work</obo:IAO_0000115>
<obo:IAO_0000118>Absence register</obo:IAO_0000118>
<rdfs:label>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_0000114>Discussed</obo:IAO_0000114>
<obo:IAO_0000115>A data item that is the year in which a document was published.</obo:IAO_0000115>
<rdfs:label>year of publication</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_0000114>Proposed</obo:IAO_0000114>
<obo:IAO_0000115>A report that provides information about a person's potential competing interest.</obo:IAO_0000115>
<rdfs:comment>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>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>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_0000114>Proposed</obo:IAO_0000114>
<obo:IAO_0000115>A personal attribute that involves an outcome of value to that person arising from a process.</obo:IAO_0000115>
<obo:IAO_0000232>This is derived from the idea of a stakeholder and is a generalisation of vested interest.</obo:IAO_0000232>
<rdfs:comment>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>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_0000114>Proposed</obo:IAO_0000114>
<obo:IAO_0000115>Funding that originates from one or more tobacco companies.</obo:IAO_0000115>
<rdfs:label>tobacco industry funding</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_0000114>Discussed</obo:IAO_0000114>
<obo:IAO_0000115>A process aggregate of harm processes affecting some members of a population caused by product use by some members of the population.</obo:IAO_0000115>
<rdfs:label>population-level harm from product use</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000187 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000187">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000027"/>
<obo:IAO_0000114>Discussed</obo:IAO_0000114>
<obo:IAO_0000115>A data item that is about the amount of harm to health caused by an individual using a product relative to other products.</obo:IAO_0000115>
<rdfs:label>individual-level relative harmfulness to health of a product</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_0000958"/>
<obo:IAO_0000114>Discussed</obo:IAO_0000114>
<obo:IAO_0000115>A psychoactive substance disposition that is its propensity to lead people who use the substance to develop a harmful pattern of consumption.</obo:IAO_0000115>
<obo:IAO_0000118>abuse liability of a substance</obo:IAO_0000118>
<rdfs:label>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_0000114>Discussed</obo:IAO_0000114>
<obo:IAO_0000115>An e-cigarette atomiser which the user can adjust to different levels of power.</obo:IAO_0000115>
<obo:IAO_0000118>adjustable power atomiser</obo:IAO_0000118>
<rdfs:label>adjustable power e-cigarette atomiser</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_0000114>Discussed</obo:IAO_0000114>
<obo:IAO_0000115>A central nervous system depressant that is used to prevent seizures or reduce their severity.</obo:IAO_0000115>
<obo:IAO_0000119>CHEBI:35623</obo:IAO_0000119>
<obo:IAO_0000232>Taken from ChEBI but slight edited for consistency.</obo:IAO_0000232>
<rdfs:label>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_0000114>Discussed</obo:IAO_0000114>
<obo:IAO_0000115>An information content entity that is used by a person or organisation to denote and promote a product.</obo:IAO_0000115>
<obo:IAO_0000118>Brand name</obo:IAO_0000118>
<rdfs:label>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_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://purl.obolibrary.org/obo/CHEBI_35471"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000114>Published</obo:IAO_0000114>
<obo:IAO_0000115>A plant extract from the cannabis plant.</obo:IAO_0000115>
<obo:IAO_0000118>cannabis</obo:IAO_0000118>
<rdfs:label>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_67194"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000114>Discussed</obo:IAO_0000114>
<obo:IAO_0000115>A cannabis extract that has been processed to contain a high concentration of cannabinoids.</obo:IAO_0000115>
<obo:IAO_0000118>concentrates</obo:IAO_0000118>
<rdfs:comment>It is important to clarify what cannabinoids are included.</rdfs:comment>
<rdfs:label>cannabis concentrate</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000197 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000197">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/IAO_0000027"/>
<obo:IAO_0000114>Discussed</obo:IAO_0000114>
<obo:IAO_0000115>A data item that is the concentration of cannabinoids in a cannabis product.</obo:IAO_0000115>
<rdfs:label>cannabis potency</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000198 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000198">
<rdfs:subClassOf rdf:resource="http://addictovocab.org/ADDICTO_0001203"/>
<obo:IAO_0000114>Published</obo:IAO_0000114>
<obo:IAO_0000115>An oral tobacco-containing product that is manufactured to be chewed.</obo:IAO_0000115>
<obo:IAO_0000119>https://www.cancer.gov/publications/dictionaries/cancer-terms/def/chewing-tobacco</obo:IAO_0000119>
<rdfs:comment>Consists of loose tobacco leaves, pellets or “bits” (leaf tobacco rolled into small pellets), plugs (leaf tobacco pressed and held together with a sweetener), or twists (leaf tobacco rolled into rope-like strands and twisted).</rdfs:comment>
<rdfs:label>chewing tobacco product</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000200 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000200">
<rdfs:subClassOf rdf:resource="http://addictovocab.org/ADDICTO_0000207"/>
<obo:IAO_0000114>Published</obo:IAO_0000114>
<obo:IAO_0000115>A combustible tobacco-containing product that is a cylinder formed of chopped tobacco encased in tobacco leaf.</obo:IAO_0000115>
<rdfs:comment>The user sets one end alight and ingests smoke by sucking on the other end. The cylinder becomes shorter as the tobacco burns to smoke and ash until either the user extinguishes the burning tobacco or all the tobacco is burnt. This definition includes large panatelas and small cigars. Cigars typically produce smoke with a high concentration of nicotine so that a significant amount of nicotine can be absorbed through the lining of the mouth without the smoke having to be inhaled into the lungs.</rdfs:comment>
<rdfs:label>cigar</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000201 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000201">
<rdfs:subClassOf rdf:resource="http://addictovocab.org/ADDICTO_0000207"/>
<obo:IAO_0000114>Published</obo:IAO_0000114>
<obo:IAO_0000115>A combustible tobacco-containing product that is a thin cylinder of finely cut tobacco encased in a thin paper.</obo:IAO_0000115>
<rdfs:comment>The user sets one end alight and ingests smoke by sucking on the other end. The cylinder becomes shorter as the tobacco burns to smoke and ash until either the user extinguishes the burning tobacco or all the tobacco is burnt. This definition includes hand-rolled cigarettes and manufactured cigarettes but not cigarillos, bidis or small cigars. Cigarettes are typically made for the smoke to be inhaled into the lungs.</rdfs:comment>
<rdfs:label>cigarette</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000202 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000202">
<rdfs:subClassOf rdf:resource="http://addictovocab.org/ADDICTO_0000194"/>
<obo:IAO_0000114>Discussed</obo:IAO_0000114>
<obo:IAO_0000115>A brand that is applied to a manufactured cigarette.</obo:IAO_0000115>
<obo:IAO_0000118>tobacco brand</obo:IAO_0000118>
<rdfs:label>cigarette brand</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000203 -->
<owl:Class rdf:about="http://addictovocab.org/ADDICTO_0000203">
<rdfs:subClassOf rdf:resource="http://addictovocab.org/ADDICTO_0000314"/>
<obo:IAO_0000114>Published</obo:IAO_0000114>
<obo:IAO_0000115>Smoke that is produced through the use of a cigarette.</obo:IAO_0000115>
<obo:IAO_0000118>smoke</obo:IAO_0000118>
<rdfs:label>cigarette smoke</rdfs:label>
</owl:Class>
<!-- http://addictovocab.org/ADDICTO_0000204 -->