blob: 466e924c338536db2bfde754dd7e2a32674e28f8 (
plain)
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
|
interface LexQueryPats = open Syntax, QueryPats, Query in
{
oper
--------------------------------------------------------------
-- structural words and extra grammar constructs
about_Prep : Prep ;
all_NP : NP ;
vpAP : VP -> AP ;
what_IQuant : IQuant ;
massInfoSg : CN -> NP ;
massInfoPl : CN -> NP ;
PatsAdvVPSlash : VPSlash -> Adv -> VPSlash ;
selectIP : NP -> IP ; -- selecting the right agreement : what are the ingredients ? / what is the expiration date ? (not obvious in English, but will make a difference in other languages)
--------------------------------------------------------------
-- kinds
patent_number_CN : Kind ;
claim_N : Kind ;
--------------------------------------------------------------
-- activities
expire_V : Adv -> Activity ;
simp_expire_V : Activity ;
apply_V : NP -> Activity ;
compound_CN : Activity ;
use_V2 : Set -> Activity ;
approve_V2 : Adv -> Activity ;
mention_V2 : NP -> Activity ;
contain_V2 : NP -> Activity ;
--------------------------------------------------------------
-- properties
approve_prop_V2 : Adv -> Property ;
use_prop_V2 : Set -> Property ;
--------------------------------------------------------------
-- relations
active_ingredient_CN : Relation ;
dosage_form_CN : Relation ;
route_of_administration_CN : Relation ;
patent_number_Rel : Relation ;
patent_N : Relation ;
patent_with_N : Relation ;
expiration_date_CN : Relation ;
use_code_CN : Relation ;
application_number_CN : Relation ;
application_number_no_CN : Relation ;
applicant_CN : Relation ;
applicant_no_CN : Relation ;
approval_date_CN : Relation ;
chemical_composition_CN : Relation ;
chemical_substance_CN : Relation ;
drug_N : Relation ;
use_N : Relation ;
method_N : Relation ;
drug_with_usage_form_CN : Relation ;
drug_preparation_CN : Relation ;
strength_N : Relation ;
name_N : Relation ;
usage_form_CN : Relation ;
}
|