You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"rdfs:comment": "This is the first draft of the Disease profile, using MedicalCondition type from schema.org as template for inheriting some properties. Changes since 0.1-DRAFT<ul><li>added sameAs as recommended<li></ul>Version 0.2-DRAFT",
"description": "Specifying a drug or medicine used in a medication procedure.",
24
+
"oneOf": [
25
+
{
26
+
"$ref": "#/definitions/drugobject"
27
+
},
28
+
{
29
+
"type": "array",
30
+
"items": {
31
+
"$ref": "#/definitions/drugobject"
32
+
}
33
+
}
34
+
],
35
+
"owl:cardinality": "many"
36
+
},
37
+
"alternateName": {
38
+
"description": "An alias for the item.",
39
+
"oneOf": [
40
+
{
41
+
"type": "string"
42
+
},
43
+
{
44
+
"type": "array",
45
+
"items": {
46
+
"type": "string"
47
+
}
48
+
}
49
+
],
50
+
"owl:cardinality": "many"
51
+
},
52
+
"description": {
53
+
"description": "A description of the item.",
54
+
"type": "string",
55
+
"owl:cardinality": "one"
56
+
},
57
+
"disambiguatingDescription": {
58
+
"description": "A sub property of description. A short description of the item used to disambiguate from other, similar items. Information from other properties (in particular, name) may be necessary for the description to be useful for disambiguation.",
59
+
"oneOf": [
60
+
{
61
+
"type": "string"
62
+
},
63
+
{
64
+
"type": "array",
65
+
"items": {
66
+
"type": "string"
67
+
}
68
+
}
69
+
],
70
+
"owl:cardinality": "many"
71
+
},
72
+
"identifier": {
73
+
"description": "The identifier property represents any kind of identifier for any kind of [[Thing]], such as ISBNs, GTIN codes, UUIDs etc. Schema.org provides dedicated properties for representing many of these, either as textual strings or as URL (URI) links. See [background notes](/docs/datamodel.html#identifierBg) for more details.\n",
74
+
"oneOf": [
75
+
{
76
+
"$ref": "#/definitions/propertyvalue"
77
+
},
78
+
{
79
+
"type": "string"
80
+
},
81
+
{
82
+
"type": "string",
83
+
"format": "uri"
84
+
}
85
+
],
86
+
"owl:cardinality": "one"
87
+
},
88
+
"image": {
89
+
"description": "An image of the item. This can be a [[URL]] or a fully described [[ImageObject]].",
90
+
"oneOf": [
91
+
{
92
+
"type": "string",
93
+
"format": "uri"
94
+
},
95
+
{
96
+
"$ref": "#/definitions/imageobject"
97
+
}
98
+
],
99
+
"owl:cardinality": "one"
100
+
},
101
+
"name": {
102
+
"description": "The name of the item.",
103
+
"type": "string",
104
+
"owl:cardinality": "one"
105
+
},
106
+
"sameAs": {
107
+
"description": "URL of a reference Web page that unambiguously indicates the item's identity. E.g. the URL of the item's Wikipedia page, Wikidata entry, or official website.",
108
+
"oneOf": [
109
+
{
110
+
"type": "string",
111
+
"format": "uri"
112
+
},
113
+
{
114
+
"type": "array",
115
+
"items": {
116
+
"type": "string",
117
+
"format": "uri"
118
+
}
119
+
}
120
+
],
121
+
"owl:cardinality": "many"
122
+
},
123
+
"url": {
124
+
"description": "URL of the item. Link to the official webpage associated to this entity.",
0 commit comments