openphar 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (108) hide show
  1. checksums.yaml +7 -0
  2. data/README.adoc +221 -0
  3. data/lib/openphar/cli/main.rb +137 -0
  4. data/lib/openphar/cli.rb +11 -0
  5. data/lib/openphar/core/slug_generator.rb +107 -0
  6. data/lib/openphar/core.rb +11 -0
  7. data/lib/openphar/errors/configuration_error.rb +8 -0
  8. data/lib/openphar/errors/monograph_not_found_error.rb +15 -0
  9. data/lib/openphar/errors/parse_error.rb +18 -0
  10. data/lib/openphar/errors/unknown_format_error.rb +8 -0
  11. data/lib/openphar/errors/unknown_publisher_error.rb +8 -0
  12. data/lib/openphar/errors/unknown_type_error.rb +8 -0
  13. data/lib/openphar/errors/validation_error.rb +15 -0
  14. data/lib/openphar/errors.rb +17 -0
  15. data/lib/openphar/exporters/coverage_validator.rb +265 -0
  16. data/lib/openphar/exporters/neo4j/model_registry.rb +130 -0
  17. data/lib/openphar/exporters/neo4j/node_builder.rb +84 -0
  18. data/lib/openphar/exporters/neo4j/property_mapper.rb +154 -0
  19. data/lib/openphar/exporters/neo4j/relationship_builder.rb +87 -0
  20. data/lib/openphar/exporters/neo4j.rb +16 -0
  21. data/lib/openphar/exporters/neo4j_exporter.rb +199 -0
  22. data/lib/openphar/exporters.rb +15 -0
  23. data/lib/openphar/linkers/chp/cross_edition_linker.rb +101 -0
  24. data/lib/openphar/linkers/chp.rb +11 -0
  25. data/lib/openphar/linkers/cross_publisher_linker.rb +295 -0
  26. data/lib/openphar/linkers/herbapedia_linker.rb +125 -0
  27. data/lib/openphar/linkers.rb +13 -0
  28. data/lib/openphar/migrators/chp/classifier.rb +86 -0
  29. data/lib/openphar/migrators/chp.rb +15 -0
  30. data/lib/openphar/migrators/chp_migrator.rb +130 -0
  31. data/lib/openphar/migrators/jp_migrator.rb +345 -0
  32. data/lib/openphar/migrators/phint_migrator.rb +426 -0
  33. data/lib/openphar/migrators.rb +15 -0
  34. data/lib/openphar/models/ahp.rb +25 -0
  35. data/lib/openphar/models/amino_acid_monograph.rb +28 -0
  36. data/lib/openphar/models/api.rb +29 -0
  37. data/lib/openphar/models/assay_specification.rb +19 -0
  38. data/lib/openphar/models/base_entity.rb +221 -0
  39. data/lib/openphar/models/biological_substance_monograph.rb +31 -0
  40. data/lib/openphar/models/chemical_drug_monograph.rb +39 -0
  41. data/lib/openphar/models/chp/biologic.rb +28 -0
  42. data/lib/openphar/models/chp/chemical_preparation.rb +28 -0
  43. data/lib/openphar/models/chp/chemical_substance.rb +28 -0
  44. data/lib/openphar/models/chp/general_chapter.rb +30 -0
  45. data/lib/openphar/models/chp/monograph.rb +116 -0
  46. data/lib/openphar/models/chp/section.rb +37 -0
  47. data/lib/openphar/models/chp/tcm_crude_drug.rb +28 -0
  48. data/lib/openphar/models/chp/tcm_extract.rb +29 -0
  49. data/lib/openphar/models/chp/tcm_formulation.rb +28 -0
  50. data/lib/openphar/models/chp.rb +33 -0
  51. data/lib/openphar/models/crude_drug_monograph.rb +31 -0
  52. data/lib/openphar/models/edition.rb +41 -0
  53. data/lib/openphar/models/formulation_monograph.rb +31 -0
  54. data/lib/openphar/models/hkcmms.rb +26 -0
  55. data/lib/openphar/models/identification_specification.rb +19 -0
  56. data/lib/openphar/models/jp/kampo_formula.rb +94 -0
  57. data/lib/openphar/models/jp.rb +21 -0
  58. data/lib/openphar/models/limit.rb +54 -0
  59. data/lib/openphar/models/mineral_substance_monograph.rb +28 -0
  60. data/lib/openphar/models/monograph.rb +58 -0
  61. data/lib/openphar/models/ph_int/buffer_solution.rb +38 -0
  62. data/lib/openphar/models/ph_int/dosage_form_monograph.rb +43 -0
  63. data/lib/openphar/models/ph_int/radiopharmaceutical_monograph.rb +52 -0
  64. data/lib/openphar/models/ph_int/reagent.rb +50 -0
  65. data/lib/openphar/models/ph_int/reference_substance.rb +50 -0
  66. data/lib/openphar/models/ph_int/test_method.rb +50 -0
  67. data/lib/openphar/models/ph_int/test_solution.rb +39 -0
  68. data/lib/openphar/models/ph_int/volumetric_solution.rb +38 -0
  69. data/lib/openphar/models/ph_int.rb +37 -0
  70. data/lib/openphar/models/physical_specification.rb +17 -0
  71. data/lib/openphar/models/publisher.rb +98 -0
  72. data/lib/openphar/models/purity_specification.rb +16 -0
  73. data/lib/openphar/models/supplement.rb +31 -0
  74. data/lib/openphar/models/test_specification.rb +29 -0
  75. data/lib/openphar/models/thp.rb +24 -0
  76. data/lib/openphar/models/vitamin_monograph.rb +28 -0
  77. data/lib/openphar/models.rb +58 -0
  78. data/lib/openphar/monograph_merger.rb +374 -0
  79. data/lib/openphar/parsers/base_monograph_parser.rb +108 -0
  80. data/lib/openphar/parsers/jp_html_parser.rb +92 -0
  81. data/lib/openphar/parsers/jp_html_parser_base.rb +113 -0
  82. data/lib/openphar/parsers/jp_ja_html_parser.rb +220 -0
  83. data/lib/openphar/parsers/phint_json_parser.rb +332 -0
  84. data/lib/openphar/parsers.rb +21 -0
  85. data/lib/openphar/registry/publisher_registry.rb +46 -0
  86. data/lib/openphar/registry/type_registry.rb +147 -0
  87. data/lib/openphar/registry.rb +24 -0
  88. data/lib/openphar/repositories/monograph_repository.rb +350 -0
  89. data/lib/openphar/repositories.rb +11 -0
  90. data/lib/openphar/transformers/jsonld_transformer.rb +106 -0
  91. data/lib/openphar/transformers.rb +11 -0
  92. data/lib/openphar/version.rb +5 -0
  93. data/lib/openphar.rb +119 -0
  94. data/ontology/bibliographic/edition.ttl +267 -0
  95. data/ontology/context/chp.jsonld +69 -0
  96. data/ontology/context/crude-drugs.jsonld +56 -0
  97. data/ontology/context/pharmacopoeia.jsonld +631 -0
  98. data/ontology/core/identification.ttl +456 -0
  99. data/ontology/core/pharmacopoeia.ttl +3427 -0
  100. data/ontology/core/substance-form.ttl +302 -0
  101. data/ontology/core/unit.ttl +493 -0
  102. data/ontology/publisher/chp/extensions.ttl +186 -0
  103. data/ontology/publisher/phint/extensions.ttl +327 -0
  104. data/ontology/quality/test-method.ttl +610 -0
  105. data/shapes/chp/monograph.ttl +153 -0
  106. data/shapes/edition-shapes.ttl +230 -0
  107. data/shapes/monograph-shapes.ttl +1324 -0
  108. metadata +319 -0
@@ -0,0 +1,631 @@
1
+ {
2
+ "@context": {
3
+ "@version": 1.1,
4
+ "@base": "https://www.openphar.org/data/",
5
+ "@vocab": "https://www.openphar.org/ontology/core/",
6
+
7
+ "op": "https://www.openphar.org/ontology/core/",
8
+ "method": "https://www.openphar.org/ontology/method/",
9
+ "unit": "https://www.openphar.org/ontology/core/unit/",
10
+ "bib": "https://www.openphar.org/ontology/bibliographic/",
11
+ "phint": "https://www.openphar.org/ontology/publisher/phint/",
12
+ "sf": "https://www.openphar.org/ontology/substance-form/",
13
+ "idt": "https://www.openphar.org/ontology/identification/",
14
+ "herbapedia": "https://www.herbapedia.org/entity/",
15
+ "tcm": "https://www.herbapedia.org/ontology/tcm/",
16
+ "ayurveda": "https://www.herbapedia.org/ontology/ayurveda/",
17
+ "western": "https://www.herbapedia.org/ontology/western/",
18
+
19
+ "rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
20
+ "rdfs": "http://www.w3.org/2000/01/rdf-schema#",
21
+ "owl": "http://www.w3.org/2002/07/owl#",
22
+ "xsd": "http://www.w3.org/2001/XMLSchema#",
23
+ "skos": "http://www.w3.org/2004/02/skos/core#",
24
+ "dct": "http://purl.org/dc/terms/",
25
+
26
+ "Edition": {
27
+ "@id": "bib:Edition",
28
+ "@context": {
29
+ "@base": "https://www.openphar.org/data/edition/"
30
+ }
31
+ },
32
+ "Supplement": { "@id": "bib:Supplement" },
33
+ "VersionHistory": { "@id": "bib:VersionHistory" },
34
+ "MonographVersion": { "@id": "bib:MonographVersion" },
35
+
36
+ "editionNumber": { "@id": "bib:editionNumber", "@type": "xsd:string" },
37
+ "editionLabel": { "@id": "bib:editionLabel", "@container": "@language" },
38
+ "publicationDate": { "@id": "bib:publicationDate", "@type": "xsd:date" },
39
+ "effectiveDate": { "@id": "bib:effectiveDate", "@type": "xsd:date" },
40
+ "hasPublisher": { "@id": "bib:hasPublisher", "@type": "@id" },
41
+ "hasSupplement": { "@id": "bib:hasSupplement", "@type": "@id", "@container": "@set" },
42
+ "containsMonograph": { "@id": "bib:containsMonograph", "@type": "@id", "@container": "@set" },
43
+ "monographCount": { "@id": "bib:monographCount", "@type": "xsd:integer" },
44
+ "officialLanguage": { "@id": "bib:officialLanguage", "@type": "xsd:string" },
45
+ "editionUrl": { "@id": "bib:editionUrl", "@type": "@id" },
46
+ "supplementNumber": { "@id": "bib:supplementNumber", "@type": "xsd:string" },
47
+ "supplementTo": { "@id": "bib:supplementTo", "@type": "@id" },
48
+ "supplementPublicationDate": { "@id": "bib:supplementPublicationDate", "@type": "xsd:date" },
49
+ "supplementEffectiveDate": { "@id": "bib:supplementEffectiveDate", "@type": "xsd:date" },
50
+ "addsMonograph": { "@id": "bib:addsMonograph", "@type": "@id", "@container": "@set" },
51
+ "revisesMonograph": { "@id": "bib:revisesMonograph", "@type": "@id", "@container": "@set" },
52
+ "deletesMonograph": { "@id": "bib:deletesMonograph", "@type": "@id", "@container": "@set" },
53
+
54
+ "PharmacopoeiaMonograph": {
55
+ "@id": "op:PharmacopoeiaMonograph",
56
+ "@context": {
57
+ "@base": "https://www.openphar.org/data/monograph/"
58
+ }
59
+ },
60
+ "CrudeDrugMonograph": {
61
+ "@id": "op:CrudeDrugMonograph",
62
+ "@context": {
63
+ "@base": "https://www.openphar.org/data/monograph/"
64
+ }
65
+ },
66
+
67
+ "ChemicalDrugMonograph": {
68
+ "@id": "op:ChemicalDrugMonograph",
69
+ "@context": {
70
+ "@base": "https://www.openphar.org/data/monograph/"
71
+ }
72
+ },
73
+ "VitaminMonograph": {
74
+ "@id": "op:VitaminMonograph",
75
+ "@context": {
76
+ "@base": "https://www.openphar.org/data/monograph/"
77
+ }
78
+ },
79
+ "AminoAcidMonograph": {
80
+ "@id": "op:AminoAcidMonograph",
81
+ "@context": {
82
+ "@base": "https://www.openphar.org/data/monograph/"
83
+ }
84
+ },
85
+ "MineralSubstanceMonograph": {
86
+ "@id": "op:MineralSubstanceMonograph",
87
+ "@context": {
88
+ "@base": "https://www.openphar.org/data/monograph/"
89
+ }
90
+ },
91
+ "BiologicalSubstanceMonograph": {
92
+ "@id": "op:BiologicalSubstanceMonograph",
93
+ "@context": {
94
+ "@base": "https://www.openphar.org/data/monograph/"
95
+ }
96
+ },
97
+ "EnzymePreparationMonograph": {
98
+ "@id": "op:EnzymePreparationMonograph",
99
+ "@context": {
100
+ "@base": "https://www.openphar.org/data/monograph/"
101
+ }
102
+ },
103
+ "HormonePreparationMonograph": {
104
+ "@id": "op:HormonePreparationMonograph",
105
+ "@context": {
106
+ "@base": "https://www.openphar.org/data/monograph/"
107
+ }
108
+ },
109
+ "FormulationMonograph": {
110
+ "@id": "op:FormulationMonograph",
111
+ "@context": {
112
+ "@base": "https://www.openphar.org/data/monograph/"
113
+ }
114
+ },
115
+ "FormulationComponent": { "@id": "op:FormulationComponent" },
116
+
117
+ "PowderedCrudeDrug": {
118
+ "@id": "op:PowderedCrudeDrug",
119
+ "@context": {
120
+ "@base": "https://www.openphar.org/data/monograph/"
121
+ }
122
+ },
123
+ "Extract": {
124
+ "@id": "op:Extract",
125
+ "@context": {
126
+ "@base": "https://www.openphar.org/data/monograph/"
127
+ }
128
+ },
129
+ "Tincture": {
130
+ "@id": "op:Tincture",
131
+ "@context": {
132
+ "@base": "https://www.openphar.org/data/monograph/"
133
+ }
134
+ },
135
+ "EssentialOil": {
136
+ "@id": "op:EssentialOil",
137
+ "@context": {
138
+ "@base": "https://www.openphar.org/data/monograph/"
139
+ }
140
+ },
141
+ "FixedOil": {
142
+ "@id": "op:FixedOil",
143
+ "@context": {
144
+ "@base": "https://www.openphar.org/data/monograph/"
145
+ }
146
+ },
147
+ "MedicinalWater": {
148
+ "@id": "op:MedicinalWater",
149
+ "@context": {
150
+ "@base": "https://www.openphar.org/data/monograph/"
151
+ }
152
+ },
153
+ "Wax": {
154
+ "@id": "op:Wax",
155
+ "@context": {
156
+ "@base": "https://www.openphar.org/data/monograph/"
157
+ }
158
+ },
159
+ "Spirit": {
160
+ "@id": "op:Spirit",
161
+ "@context": {
162
+ "@base": "https://www.openphar.org/data/monograph/"
163
+ }
164
+ },
165
+ "Fluidextract": {
166
+ "@id": "op:Fluidextract",
167
+ "@context": {
168
+ "@base": "https://www.openphar.org/data/monograph/"
169
+ }
170
+ },
171
+
172
+ "Test": { "@id": "op:Test" },
173
+ "IdentificationTest": { "@id": "op:IdentificationTest" },
174
+ "PurityTest": { "@id": "op:PurityTest" },
175
+ "LimitTest": { "@id": "op:LimitTest" },
176
+ "AssayTest": { "@id": "op:AssayTest" },
177
+
178
+ "PreparationMethod": { "@id": "op:PreparationMethod" },
179
+ "Ingredient": { "@id": "op:Ingredient" },
180
+ "MarkerCompound": { "@id": "op:MarkerCompound" },
181
+ "ContainersAndStorage": { "@id": "op:ContainersAndStorage" },
182
+ "Organism": { "@id": "op:Organism" },
183
+ "TherapeuticCategory": { "@id": "op:TherapeuticCategory" },
184
+ "PlantPart": { "@id": "op:PlantPart" },
185
+
186
+ "TestSpecification": { "@id": "op:TestSpecification" },
187
+ "AssaySpecification": { "@id": "op:AssaySpecification" },
188
+ "PuritySpecification": { "@id": "op:PuritySpecification" },
189
+ "IdentificationSpecification": { "@id": "op:IdentificationSpecification" },
190
+ "PhysicalSpecification": { "@id": "op:PhysicalSpecification" },
191
+ "MicrobiologicalSpecification": { "@id": "op:MicrobiologicalSpecification" },
192
+ "MeltingPointSpecification": { "@id": "op:MeltingPointSpecification" },
193
+ "SpecificRotationSpecification": { "@id": "op:SpecificRotationSpecification" },
194
+ "LossOnDryingSpecification": { "@id": "op:LossOnDryingSpecification" },
195
+ "ResidueOnIgnitionSpecification": { "@id": "op:ResidueOnIgnitionSpecification" },
196
+ "PHSpecification": { "@id": "op:PHSpecification" },
197
+ "DissolutionSpecification": { "@id": "op:DissolutionSpecification" },
198
+ "ContentUniformitySpecification": { "@id": "op:ContentUniformitySpecification" },
199
+ "DisintegrationSpecification": { "@id": "op:DisintegrationSpecification" },
200
+ "WeightVariationSpecification": { "@id": "op:WeightVariationSpecification" },
201
+ "Limit": { "@id": "op:Limit" },
202
+ "BotanicalSource": { "@id": "op:BotanicalSource" },
203
+
204
+ "SubstanceForm": { "@id": "sf:SubstanceForm" },
205
+ "FormType": { "@id": "sf:FormType" },
206
+ "AnhydrousForm": { "@id": "sf:AnhydrousForm", "@type": "@id" },
207
+ "HydrateForm": { "@id": "sf:HydrateForm", "@type": "@id" },
208
+ "MonohydrateForm": { "@id": "sf:MonohydrateForm", "@type": "@id" },
209
+ "DihydrateForm": { "@id": "sf:DihydrateForm", "@type": "@id" },
210
+ "TrihydrateForm": { "@id": "sf:TrihydrateForm", "@type": "@id" },
211
+ "PentahydrateForm": { "@id": "sf:PentahydrateForm", "@type": "@id" },
212
+ "SolvateForm": { "@id": "sf:SolvateForm", "@type": "@id" },
213
+ "SubstanceTypeVariant": { "@id": "sf:SubstanceTypeVariant" },
214
+ "SaltBaseEquivalence": { "@id": "sf:SaltBaseEquivalence" },
215
+
216
+ "formOf": { "@id": "sf:formOf", "@type": "@id" },
217
+ "formType": { "@id": "sf:formType", "@type": "@id" },
218
+ "waterContent": { "@id": "sf:waterContent", "@type": "xsd:string" },
219
+ "waterMolecules": { "@id": "sf:waterMolecules", "@type": "xsd:integer" },
220
+ "solventType": { "@id": "sf:solventType", "@type": "xsd:string" },
221
+ "solventMolecules": { "@id": "sf:solventMolecules", "@type": "xsd:integer" },
222
+ "typeVariantOf": { "@id": "sf:typeVariantOf", "@type": "@id" },
223
+ "variantIdentifier": { "@id": "sf:variantIdentifier", "@type": "xsd:string" },
224
+ "particleSizeRange": { "@id": "sf:particleSizeRange", "@type": "xsd:string" },
225
+ "crystallineForm": { "@id": "sf:crystallineForm", "@type": "xsd:string" },
226
+ "saltForm": { "@id": "sf:saltForm", "@type": "@id" },
227
+ "baseForm": { "@id": "sf:baseForm", "@type": "@id" },
228
+ "equivalenceFactor": { "@id": "sf:equivalenceFactor", "@type": "xsd:decimal" },
229
+ "equivalenceRatio": { "@id": "sf:equivalenceRatio", "@type": "xsd:string" },
230
+ "hasSubstanceForm": { "@id": "op:hasSubstanceForm", "@type": "@id", "@container": "@set" },
231
+ "hasTypeVariant": { "@id": "op:hasTypeVariant", "@type": "@id", "@container": "@set" },
232
+ "hasSaltEquivalence": { "@id": "op:hasSaltEquivalence", "@type": "@id" },
233
+
234
+ "IdentificationTestComposite": { "@id": "idt:IdentificationTest" },
235
+ "SingleIdentificationTest": { "@id": "idt:SingleIdentificationTest" },
236
+ "CompositeIdentificationTest": { "@id": "idt:CompositeIdentificationTest" },
237
+ "IdentityTestAlternative": { "@id": "idt:IdentityTestAlternative" },
238
+ "GeneralIdentificationTest": { "@id": "idt:GeneralIdentificationTest" },
239
+ "SpectroscopicIdentification": { "@id": "idt:SpectroscopicIdentification" },
240
+ "ChromatographicIdentification": { "@id": "idt:ChromatographicIdentification" },
241
+ "ChemicalReactionIdentification": { "@id": "idt:ChemicalReactionIdentification" },
242
+ "PhysicalPropertyIdentification": { "@id": "idt:PhysicalPropertyIdentification" },
243
+ "MicrobiologyIdentification": { "@id": "idt:MicrobiologyIdentification" },
244
+ "IdentificationTestComponent": { "@id": "idt:IdentificationTestComponent" },
245
+ "LogicalOperator": { "@id": "idt:LogicalOperator" },
246
+ "AndOperator": { "@id": "idt:AndOperator", "@type": "@id" },
247
+ "OrOperator": { "@id": "idt:OrOperator", "@type": "@id" },
248
+ "TestOrganism": { "@id": "idt:TestOrganism" },
249
+ "OrganismType": { "@id": "idt:OrganismType" },
250
+ "Bacteria": { "@id": "idt:Bacteria", "@type": "@id" },
251
+ "Fungus": { "@id": "idt:Fungus", "@type": "@id" },
252
+ "Yeast": { "@id": "idt:Yeast", "@type": "@id" },
253
+ "Mold": { "@id": "idt:Mold", "@type": "@id" },
254
+ "Virus": { "@id": "idt:Virus", "@type": "@id" },
255
+ "CultureMedium": { "@id": "idt:CultureMedium" },
256
+ "MediumType": { "@id": "idt:MediumType" },
257
+ "SolidMedium": { "@id": "idt:SolidMedium", "@type": "@id" },
258
+ "LiquidMedium": { "@id": "idt:LiquidMedium", "@type": "@id" },
259
+ "SemiSolidMedium": { "@id": "idt:SemiSolidMedium", "@type": "@id" },
260
+ "SoybeanCaseinDigestMedium": { "@id": "idt:SoybeanCaseinDigestMedium", "@type": "@id" },
261
+ "FluidThioglycollateMedium": { "@id": "idt:FluidThioglycollateMedium", "@type": "@id" },
262
+ "SabouraudDextroseAgar": { "@id": "idt:SabouraudDextroseAgar", "@type": "@id" },
263
+ "PotatoDextroseAgar": { "@id": "idt:PotatoDextroseAgar", "@type": "@id" },
264
+
265
+ "componentTest": { "@id": "idt:componentTest", "@type": "@id" },
266
+ "logicalOperator": { "@id": "idt:logicalOperator", "@type": "@id" },
267
+ "componentOrder": { "@id": "idt:componentOrder", "@type": "xsd:integer" },
268
+ "alternativePattern": { "@id": "idt:alternativePattern", "@type": "xsd:string" },
269
+ "minimumTestsRequired": { "@id": "idt:minimumTestsRequired", "@type": "xsd:integer" },
270
+ "generalTestReference": { "@id": "idt:generalTestReference", "@type": "xsd:string" },
271
+ "generalTestMethod": { "@id": "idt:generalTestMethod", "@type": "@id" },
272
+ "organismName": { "@id": "idt:organismName", "@type": "xsd:string" },
273
+ "organismStrain": { "@id": "idt:organismStrain", "@type": "xsd:string" },
274
+ "organismType": { "@id": "idt:organismType", "@type": "@id" },
275
+ "mediumName": { "@id": "idt:mediumName", "@type": "xsd:string" },
276
+ "mediumType": { "@id": "idt:mediumType", "@type": "@id" },
277
+ "mediumPH": { "@id": "idt:mediumPH", "@type": "xsd:decimal" },
278
+ "incubationTemperature": { "@id": "idt:incubationTemperature", "@type": "xsd:decimal" },
279
+ "incubationTime": { "@id": "idt:incubationTime", "@type": "xsd:string" },
280
+ "usesTestOrganism": { "@id": "op:usesTestOrganism", "@type": "@id", "@container": "@set" },
281
+ "usesCultureMedium": { "@id": "op:usesCultureMedium", "@type": "@id", "@container": "@set" },
282
+ "MacroscopicDescription": { "@id": "op:MacroscopicDescription" },
283
+ "MicroscopicDescription": { "@id": "op:MicroscopicDescription" },
284
+ "HarmonizedMethod": { "@id": "op:HarmonizedMethod" },
285
+ "PublisherMethod": { "@id": "op:PublisherMethod" },
286
+
287
+ "Publisher": { "@id": "op:Publisher" },
288
+ "MonographStatus": { "@id": "op:MonographStatus" },
289
+ "TestType": { "@id": "op:TestType" },
290
+ "LimitType": { "@id": "op:LimitType" },
291
+ "Unit": { "@id": "op:Unit" },
292
+ "DosageForm": { "@id": "op:DosageForm" },
293
+ "ComponentRole": { "@id": "op:ComponentRole" },
294
+ "VitaminType": { "@id": "op:VitaminType" },
295
+ "AminoAcidType": { "@id": "op:AminoAcidType" },
296
+ "MineralType": { "@id": "op:MineralType" },
297
+ "BiologicalSourceType": { "@id": "op:BiologicalSourceType" },
298
+ "HormoneType": { "@id": "op:HormoneType" },
299
+ "TemperatureUnit": { "@id": "op:TemperatureUnit" },
300
+
301
+ "AHP": { "@id": "op:AHP", "@type": "@id" },
302
+ "API": { "@id": "op:API", "@type": "@id" },
303
+ "JP": { "@id": "op:JP", "@type": "@id" },
304
+ "HKCMMS": { "@id": "op:HKCMMS", "@type": "@id" },
305
+ "THP": { "@id": "op:THP", "@type": "@id" },
306
+ "CMHerbarium": { "@id": "op:CMHerbarium", "@type": "@id" },
307
+ "WHO": { "@id": "op:WHO", "@type": "@id" },
308
+ "UPB": { "@id": "op:UPB", "@type": "@id" },
309
+ "UPI": { "@id": "op:UPI", "@type": "@id" },
310
+ "APB": { "@id": "op:APB", "@type": "@id" },
311
+ "APS": { "@id": "op:APS", "@type": "@id" },
312
+
313
+ "Official": { "@id": "op:Official", "@type": "@id" },
314
+ "Withdrawn": { "@id": "op:Withdrawn", "@type": "@id" },
315
+ "Draft": { "@id": "op:Draft", "@type": "@id" },
316
+ "Revised": { "@id": "op:Revised", "@type": "@id" },
317
+
318
+ "TestType-Assay": { "@id": "op:TestType-Assay", "@type": "@id" },
319
+ "TestType-Purity": { "@id": "op:TestType-Purity", "@type": "@id" },
320
+ "TestType-Identification": { "@id": "op:TestType-Identification", "@type": "@id" },
321
+ "TestType-Physical": { "@id": "op:TestType-Physical", "@type": "@id" },
322
+ "TestType-Microbiological": { "@id": "op:TestType-Microbiological", "@type": "@id" },
323
+ "TestType-ForeignMatter": { "@id": "op:TestType-ForeignMatter", "@type": "@id" },
324
+ "TestType-Extractive": { "@id": "op:TestType-Extractive", "@type": "@id" },
325
+ "TestType-MeltingPoint": { "@id": "op:TestType-MeltingPoint", "@type": "@id" },
326
+ "TestType-SpecificRotation": { "@id": "op:TestType-SpecificRotation", "@type": "@id" },
327
+ "TestType-pH": { "@id": "op:TestType-pH", "@type": "@id" },
328
+ "TestType-Dissolution": { "@id": "op:TestType-Dissolution", "@type": "@id" },
329
+ "TestType-ContentUniformity": { "@id": "op:TestType-ContentUniformity", "@type": "@id" },
330
+
331
+ "LimitType-Minimum": { "@id": "op:LimitType-Minimum", "@type": "@id" },
332
+ "LimitType-Maximum": { "@id": "op:LimitType-Maximum", "@type": "@id" },
333
+ "LimitType-Range": { "@id": "op:LimitType-Range", "@type": "@id" },
334
+ "LimitType-Exact": { "@id": "op:LimitType-Exact", "@type": "@id" },
335
+ "LimitType-NotMoreThan": { "@id": "op:LimitType-NotMoreThan", "@type": "@id" },
336
+ "LimitType-NotLessThan": { "@id": "op:LimitType-NotLessThan", "@type": "@id" },
337
+
338
+ "Tablet": { "@id": "op:Tablet", "@type": "@id" },
339
+ "Capsule": { "@id": "op:Capsule", "@type": "@id" },
340
+ "Injection": { "@id": "op:Injection", "@type": "@id" },
341
+ "Solution": { "@id": "op:Solution", "@type": "@id" },
342
+ "Suspension": { "@id": "op:Suspension", "@type": "@id" },
343
+ "Syrup": { "@id": "op:Syrup", "@type": "@id" },
344
+ "Ointment": { "@id": "op:Ointment", "@type": "@id" },
345
+ "Cream": { "@id": "op:Cream", "@type": "@id" },
346
+ "Suppository": { "@id": "op:Suppository", "@type": "@id" },
347
+ "Powder": { "@id": "op:Powder", "@type": "@id" },
348
+ "Granule": { "@id": "op:Granule", "@type": "@id" },
349
+
350
+ "ActiveIngredient": { "@id": "op:ActiveIngredient", "@type": "@id" },
351
+ "Excipient": { "@id": "op:Excipient", "@type": "@id" },
352
+ "Binder": { "@id": "op:Binder", "@type": "@id" },
353
+ "Disintegrant": { "@id": "op:Disintegrant", "@type": "@id" },
354
+ "Filler": { "@id": "op:Filler", "@type": "@id" },
355
+ "Lubricant": { "@id": "op:Lubricant", "@type": "@id" },
356
+ "Preservative": { "@id": "op:Preservative", "@type": "@id" },
357
+ "CoatingAgent": { "@id": "op:CoatingAgent", "@type": "@id" },
358
+ "Solvent": { "@id": "op:Solvent", "@type": "@id" },
359
+ "Buffer": { "@id": "op:Buffer", "@type": "@id" },
360
+
361
+ "VitaminA": { "@id": "op:VitaminA", "@type": "@id" },
362
+ "VitaminB1": { "@id": "op:VitaminB1", "@type": "@id" },
363
+ "VitaminB2": { "@id": "op:VitaminB2", "@type": "@id" },
364
+ "VitaminB3": { "@id": "op:VitaminB3", "@type": "@id" },
365
+ "VitaminB5": { "@id": "op:VitaminB5", "@type": "@id" },
366
+ "VitaminB6": { "@id": "op:VitaminB6", "@type": "@id" },
367
+ "VitaminB7": { "@id": "op:VitaminB7", "@type": "@id" },
368
+ "VitaminB9": { "@id": "op:VitaminB9", "@type": "@id" },
369
+ "VitaminB12": { "@id": "op:VitaminB12", "@type": "@id" },
370
+ "VitaminC": { "@id": "op:VitaminC", "@type": "@id" },
371
+ "VitaminD": { "@id": "op:VitaminD", "@type": "@id" },
372
+ "VitaminE": { "@id": "op:VitaminE", "@type": "@id" },
373
+ "VitaminK": { "@id": "op:VitaminK", "@type": "@id" },
374
+
375
+ "SimpleMineral": { "@id": "op:SimpleMineral", "@type": "@id" },
376
+ "MineralMixture": { "@id": "op:MineralMixture", "@type": "@id" },
377
+ "MineralSalt": { "@id": "op:MineralSalt", "@type": "@id" },
378
+
379
+ "Celsius": { "@id": "op:Celsius", "@type": "@id" },
380
+ "Fahrenheit": { "@id": "op:Fahrenheit", "@type": "@id" },
381
+ "Kelvin": { "@id": "op:Kelvin", "@type": "@id" },
382
+
383
+ "percent": { "@id": "unit:percent", "@type": "@id" },
384
+ "percent_w_w": { "@id": "unit:percent_w_w", "@type": "@id" },
385
+ "percent_w_v": { "@id": "unit:percent_w_v", "@type": "@id" },
386
+ "ppm": { "@id": "unit:ppm", "@type": "@id" },
387
+ "ppb": { "@id": "unit:ppb", "@type": "@id" },
388
+ "mg_per_g": { "@id": "unit:mg_per_g", "@type": "@id" },
389
+ "mg_per_mL": { "@id": "unit:mg_per_mL", "@type": "@id" },
390
+ "degC": { "@id": "unit:degC", "@type": "@id" },
391
+ "pH_unit": { "@id": "unit:pH", "@type": "@id" },
392
+
393
+ "HPLC": { "@id": "method:HPLC", "@type": "@id" },
394
+ "HPLC-UV": { "@id": "method:HPLC-UV", "@type": "@id" },
395
+ "GC": { "@id": "method:GC", "@type": "@id" },
396
+ "TLC": { "@id": "method:TLC", "@type": "@id" },
397
+ "UV-Vis": { "@id": "method:UV-Vis", "@type": "@id" },
398
+ "IR": { "@id": "method:IR", "@type": "@id" },
399
+ "LossOnDrying": { "@id": "method:LossOnDrying", "@type": "@id" },
400
+ "ResidueOnIgnition": { "@id": "method:ResidueOnIgnition", "@type": "@id" },
401
+ "TotalAsh": { "@id": "method:TotalAsh", "@type": "@id" },
402
+ "AcidInsolubleAsh": { "@id": "method:AcidInsolubleAsh", "@type": "@id" },
403
+ "WaterContent": { "@id": "method:WaterContent", "@type": "@id" },
404
+ "HeavyMetals": { "@id": "method:HeavyMetals", "@type": "@id" },
405
+ "HeavyMetals-Method1": { "@id": "method:HeavyMetals-Method1", "@type": "@id" },
406
+ "HeavyMetals-Method2": { "@id": "method:HeavyMetals-Method2", "@type": "@id" },
407
+ "HeavyMetals-Method3": { "@id": "method:HeavyMetals-Method3", "@type": "@id" },
408
+ "Arsenic": { "@id": "method:Arsenic", "@type": "@id" },
409
+ "Arsenic-Method1": { "@id": "method:Arsenic-Method1", "@type": "@id" },
410
+ "Lead": { "@id": "method:Lead", "@type": "@id" },
411
+ "Cadmium": { "@id": "method:Cadmium", "@type": "@id" },
412
+ "Iron": { "@id": "method:Iron", "@type": "@id" },
413
+ "ForeignMatter": { "@id": "method:ForeignMatter", "@type": "@id" },
414
+ "AlcoholSolubleExtractive": { "@id": "method:AlcoholSolubleExtractive", "@type": "@id" },
415
+ "WaterSolubleExtractive": { "@id": "method:WaterSolubleExtractive", "@type": "@id" },
416
+ "MeltingPoint": { "@id": "method:MeltingPoint", "@type": "@id" },
417
+ "OpticalRotation": { "@id": "method:OpticalRotation", "@type": "@id" },
418
+ "pH": { "@id": "method:pH", "@type": "@id" },
419
+ "Dissolution-Paddle": { "@id": "method:Dissolution-Paddle", "@type": "@id" },
420
+ "ContentUniformity": { "@id": "method:ContentUniformity", "@type": "@id" },
421
+ "Titrimetric-Neutralization": { "@id": "method:Titrimetric-Neutralization", "@type": "@id" },
422
+ "Titrimetric-Iodine": { "@id": "method:Titrimetric-Iodine", "@type": "@id" },
423
+ "Titrimetric-Complexometric": { "@id": "method:Titrimetric-Complexometric", "@type": "@id" },
424
+
425
+ "monographId": { "@id": "op:monographId", "@type": "xsd:string" },
426
+ "publisher": { "@id": "op:publisher", "@type": "@id" },
427
+ "status": { "@id": "op:status", "@type": "@id" },
428
+ "effectiveDate": { "@id": "op:effectiveDate", "@type": "xsd:date" },
429
+ "version": { "@id": "op:version", "@type": "xsd:string" },
430
+
431
+ "referencesPreparation": { "@id": "op:referencesPreparation", "@type": "@id" },
432
+ "referencesTCMProfile": { "@id": "op:referencesTCMProfile", "@type": "@id" },
433
+ "referencesAyurvedaProfile": { "@id": "op:referencesAyurvedaProfile", "@type": "@id" },
434
+ "referencesWesternProfile": { "@id": "op:referencesWesternProfile", "@type": "@id" },
435
+ "referencesPlantSpecies": { "@id": "op:referencesPlantSpecies", "@type": "@id" },
436
+
437
+ "testSpecification": { "@id": "op:testSpecification", "@type": "@id", "@container": "@set" },
438
+ "testName": { "@id": "op:testName", "@container": "@language" },
439
+ "testType": { "@id": "op:testType", "@type": "@id" },
440
+ "harmonizedMethod": { "@id": "op:harmonizedMethod", "@type": "@id" },
441
+ "publisherMethod": { "@id": "op:publisherMethod", "@type": "@id" },
442
+ "testConditions": { "@id": "op:testConditions", "@container": "@language" },
443
+ "referenceSpectrum": { "@id": "op:referenceSpectrum", "@type": "@id" },
444
+ "testDescription": { "@id": "op:testDescription", "@container": "@language" },
445
+ "identificationMethod": { "@id": "op:identificationMethod", "@type": "xsd:string" },
446
+ "expectedResult": { "@id": "op:expectedResult", "@type": "xsd:string" },
447
+
448
+ "hasIdentificationTest": { "@id": "op:hasIdentificationTest", "@type": "@id", "@container": "@set" },
449
+ "hasPurityTest": { "@id": "op:hasPurityTest", "@type": "@id", "@container": "@set" },
450
+ "hasLimitTest": { "@id": "op:hasLimitTest", "@type": "@id", "@container": "@set" },
451
+ "hasAssayTest": { "@id": "op:hasAssayTest", "@type": "@id", "@container": "@set" },
452
+ "usesTestMethod": { "@id": "op:usesTestMethod", "@type": "@id" },
453
+
454
+ "isPowderedFormOf": { "@id": "op:isPowderedFormOf", "@type": "@id" },
455
+ "derivedFrom": { "@id": "op:derivedFrom", "@type": "@id" },
456
+
457
+ "hasPreparationMethod": { "@id": "op:hasPreparationMethod", "@type": "@id" },
458
+ "methodLabel": { "@id": "op:methodLabel", "@container": "@language" },
459
+ "methodDescription": { "@id": "op:methodDescription", "@container": "@language" },
460
+ "hasIngredientItem": { "@id": "op:hasIngredientItem", "@type": "@id", "@container": "@set" },
461
+
462
+ "usesCrudeDrug": { "@id": "op:usesCrudeDrug", "@type": "@id" },
463
+ "ingredientAmount": { "@id": "op:ingredientAmount", "@type": "xsd:decimal" },
464
+ "ingredientAmountUnit": { "@id": "op:ingredientAmountUnit", "@type": "xsd:string" },
465
+ "ingredientRatio": { "@id": "op:ingredientRatio", "@type": "xsd:decimal" },
466
+
467
+ "extractionRatio": { "@id": "op:extractionRatio", "@type": "xsd:string" },
468
+ "extractionSolvent": { "@id": "op:extractionSolvent", "@container": "@language" },
469
+ "ethanolContent": { "@id": "op:ethanolContent", "@type": "xsd:string" },
470
+ "drugStrength": { "@id": "op:drugStrength", "@type": "xsd:string" },
471
+ "volatileContent": { "@id": "op:volatileContent", "@type": "xsd:string" },
472
+ "acidValue": { "@id": "op:acidValue", "@type": "xsd:decimal" },
473
+ "soluteConcentration": { "@id": "op:soluteConcentration", "@container": "@language" },
474
+ "meltingPoint": { "@id": "op:meltingPoint", "@type": "xsd:string" },
475
+ "waxType": { "@id": "op:waxType", "@container": "@language" },
476
+
477
+ "hasIngredient": { "@id": "op:hasIngredient", "@type": "@id", "@container": "@set" },
478
+ "hasMarkerCompound": { "@id": "op:hasMarkerCompound", "@type": "@id", "@container": "@set" },
479
+ "referenceStandard": { "@id": "op:referenceStandard", "@type": "xsd:string" },
480
+ "concentrationRange": { "@id": "op:concentrationRange", "@type": "xsd:string" },
481
+ "activeComponent": { "@id": "op:activeComponent", "@type": "xsd:string" },
482
+
483
+ "hasContainersAndStorage": { "@id": "op:hasContainersAndStorage", "@type": "@id" },
484
+ "lightProtection": { "@id": "op:lightProtection", "@type": "xsd:boolean" },
485
+ "humidityControl": { "@id": "op:humidityControl", "@type": "xsd:string" },
486
+
487
+ "hasPlantPart": { "@id": "op:hasPlantPart", "@type": "@id" },
488
+ "plantPartCode": { "@id": "op:plantPartCode", "@type": "xsd:string" },
489
+ "plantPartName": { "@id": "op:plantPartName", "@container": "@language" },
490
+
491
+ "belongsToTherapeuticCategory": { "@id": "op:belongsToTherapeuticCategory", "@type": "@id" },
492
+ "categoryCode": { "@id": "op:categoryCode", "@type": "xsd:string" },
493
+ "categoryName": { "@id": "op:categoryName", "@container": "@language" },
494
+ "therapeuticClass": { "@id": "op:therapeuticClass", "@container": "@language" },
495
+ "hasTherapeuticUse": { "@id": "op:hasTherapeuticUse", "@container": "@language" },
496
+ "hasContraindication": { "@id": "op:hasContraindication", "@container": "@language" },
497
+ "contraindications": { "@id": "op:contraindications", "@container": "@language" },
498
+
499
+ "chromatographyType": { "@id": "op:chromatographyType", "@type": "xsd:string" },
500
+ "usesStandardSubstance": { "@id": "op:usesStandardSubstance", "@type": "xsd:string" },
501
+
502
+ "prescriptionNumber": { "@id": "op:prescriptionNumber", "@type": "xsd:string" },
503
+ "japaneseStandardName": { "@id": "op:japaneseStandardName", "@container": "@language" },
504
+
505
+ "limit": { "@id": "op:limit", "@type": "@id" },
506
+ "limitType": { "@id": "op:limitType", "@type": "@id" },
507
+ "limitValue": { "@id": "op:limitValue", "@type": "xsd:decimal" },
508
+ "lowerLimit": { "@id": "op:lowerLimit", "@type": "xsd:decimal" },
509
+ "upperLimit": { "@id": "op:upperLimit", "@type": "xsd:decimal" },
510
+ "limitUnit": { "@id": "op:limitUnit", "@type": "@id" },
511
+
512
+ "assayTarget": { "@id": "op:assayTarget", "@container": "@language" },
513
+ "assayExpression": { "@id": "op:assayExpression", "@type": "xsd:string" },
514
+ "impurityType": { "@id": "op:impurityType", "@container": "@language" },
515
+ "physicalProperty": { "@id": "op:physicalProperty", "@container": "@language" },
516
+
517
+ "botanicalSource": { "@id": "op:botanicalSource", "@type": "@id" },
518
+ "plantPartUsed": { "@id": "op:plantPartUsed", "@container": "@language" },
519
+ "collectionPeriod": { "@id": "op:collectionPeriod", "@container": "@language" },
520
+
521
+ "macroscopicDescription": { "@id": "op:macroscopicDescription", "@type": "@id" },
522
+ "color": { "@id": "op:color", "@container": "@language" },
523
+ "shape": { "@id": "op:shape", "@container": "@language" },
524
+ "texture": { "@id": "op:texture", "@container": "@language" },
525
+ "odor": { "@id": "op:odor", "@container": "@language" },
526
+ "taste": { "@id": "op:taste", "@container": "@language" },
527
+ "fracture": { "@id": "op:fracture", "@container": "@language" },
528
+ "size": { "@id": "op:size", "@container": "@language" },
529
+
530
+ "microscopicDescription": { "@id": "op:microscopicDescription", "@type": "@id" },
531
+ "transverseSection": { "@id": "op:transverseSection", "@container": "@language" },
532
+ "powderCharacteristics": { "@id": "op:powderCharacteristics", "@container": "@language" },
533
+ "diagnosticFeatures": { "@id": "op:diagnosticFeatures", "@container": "@language" },
534
+
535
+ "definition": { "@id": "op:definition", "@container": "@language" },
536
+ "storageContainer": { "@id": "op:storageContainer", "@container": "@language" },
537
+ "storageConditions": { "@id": "op:storageConditions", "@container": "@language" },
538
+
539
+ "equivalentMethod": { "@id": "op:equivalentMethod", "@type": "@id", "@container": "@set" },
540
+ "jpReference": { "@id": "op:jpReference", "@type": "xsd:string" },
541
+
542
+ "molecularFormula": { "@id": "op:molecularFormula", "@type": "xsd:string" },
543
+ "molecularWeight": { "@id": "op:molecularWeight", "@type": "xsd:decimal" },
544
+ "casNumber": { "@id": "op:casNumber", "@type": "xsd:string" },
545
+ "systematicName": { "@id": "op:systematicName", "@container": "@language" },
546
+ "chemicalStructure": { "@id": "op:chemicalStructure", "@type": "@id" },
547
+ "inchi": { "@id": "op:inchi", "@type": "xsd:string" },
548
+ "inchiKey": { "@id": "op:inchiKey", "@type": "xsd:string" },
549
+ "smiles": { "@id": "op:smiles", "@type": "xsd:string" },
550
+ "appearance": { "@id": "op:appearance", "@container": "@language" },
551
+ "solubility": { "@id": "op:solubility", "@container": "@language" },
552
+
553
+ "vitaminType": { "@id": "op:vitaminType", "@type": "@id" },
554
+ "biologicalActivity": { "@id": "op:biologicalActivity", "@container": "@language" },
555
+ "aminoAcidType": { "@id": "op:aminoAcidType", "@type": "@id" },
556
+ "essentialAminoAcid": { "@id": "op:essentialAminoAcid", "@type": "xsd:boolean" },
557
+ "stereochemistry": { "@id": "op:stereochemistry", "@type": "xsd:string" },
558
+
559
+ "mineralType": { "@id": "op:mineralType", "@type": "@id" },
560
+ "mineralFormula": { "@id": "op:mineralFormula", "@type": "xsd:string" },
561
+ "mineralSource": { "@id": "op:mineralSource", "@container": "@language" },
562
+ "elementalComposition": { "@id": "op:elementalComposition", "@container": "@language" },
563
+
564
+ "biologicalSourceType": { "@id": "op:biologicalSourceType", "@type": "@id" },
565
+ "biologicalOrigin": { "@id": "op:biologicalOrigin", "@container": "@language" },
566
+ "sourceOrganism": { "@id": "op:sourceOrganism", "@container": "@language" },
567
+ "activityUnit": { "@id": "op:activityUnit", "@container": "@language" },
568
+ "enzymeCommissionNumber": { "@id": "op:enzymeCommissionNumber", "@type": "xsd:string" },
569
+ "enzymeActivity": { "@id": "op:enzymeActivity", "@container": "@language" },
570
+ "optimalPH": { "@id": "op:optimalPH", "@type": "xsd:decimal" },
571
+ "optimalTemperature": { "@id": "op:optimalTemperature", "@type": "xsd:decimal" },
572
+ "hormoneType": { "@id": "op:hormoneType", "@type": "@id" },
573
+ "biologicalPotency": { "@id": "op:biologicalPotency", "@container": "@language" },
574
+
575
+ "dosageForm": { "@id": "op:dosageForm", "@type": "@id" },
576
+ "routeOfAdministration": { "@id": "op:routeOfAdministration", "@type": "@id" },
577
+ "strength": { "@id": "op:strength", "@container": "@language" },
578
+ "hasComponent": { "@id": "op:hasComponent", "@type": "@id", "@container": "@set" },
579
+ "packSize": { "@id": "op:packSize", "@container": "@language" },
580
+ "shelfLife": { "@id": "op:shelfLife", "@container": "@language" },
581
+
582
+ "componentSubstance": { "@id": "op:componentSubstance", "@type": "@id" },
583
+ "componentRole": { "@id": "op:componentRole", "@type": "@id" },
584
+ "componentQuantity": { "@id": "op:componentQuantity", "@type": "xsd:decimal" },
585
+ "componentUnit": { "@id": "op:componentUnit", "@type": "@id" },
586
+ "componentStrength": { "@id": "op:componentStrength", "@container": "@language" },
587
+ "componentPercentage": { "@id": "op:componentPercentage", "@type": "xsd:decimal" },
588
+
589
+ "meltingPointRange": { "@id": "op:meltingPointRange", "@type": "xsd:string" },
590
+ "temperatureUnit": { "@id": "op:temperatureUnit", "@type": "@id" },
591
+ "rotationRange": { "@id": "op:rotationRange", "@type": "xsd:string" },
592
+ "measurementConditions": { "@id": "op:measurementConditions", "@container": "@language" },
593
+ "dryingConditions": { "@id": "op:dryingConditions", "@container": "@language" },
594
+ "ignitionConditions": { "@id": "op:ignitionConditions", "@container": "@language" },
595
+ "phRange": { "@id": "op:phRange", "@type": "xsd:string" },
596
+ "solutionConditions": { "@id": "op:solutionConditions", "@container": "@language" },
597
+
598
+ "dissolutionMedium": { "@id": "op:dissolutionMedium", "@container": "@language" },
599
+ "dissolutionApparatus": { "@id": "op:dissolutionApparatus", "@type": "xsd:string" },
600
+ "dissolutionTime": { "@id": "op:dissolutionTime", "@container": "@language" },
601
+ "dissolutionLimit": { "@id": "op:dissolutionLimit", "@type": "xsd:string" },
602
+ "dissolutionPercentage": { "@id": "op:dissolutionPercentage", "@type": "xsd:decimal" },
603
+ "acceptanceValue": { "@id": "op:acceptanceValue", "@type": "xsd:decimal" },
604
+
605
+ "sameSubstanceAs": { "@id": "op:sameSubstanceAs", "@type": "@id" },
606
+ "hasEquivalentIn": { "@id": "op:hasEquivalentIn", "@type": "@id" },
607
+ "similarTo": { "@id": "op:similarTo", "@type": "@id" },
608
+ "relatedTo": { "@id": "op:relatedTo", "@type": "@id" },
609
+ "hasComparableSpecification": { "@id": "op:hasComparableSpecification", "@type": "@id" },
610
+ "specificationDifference": { "@id": "op:specificationDifference", "@container": "@language" },
611
+ "matchConfidence": { "@id": "op:matchConfidence", "@type": "xsd:decimal" },
612
+ "matchMethod": { "@id": "op:matchMethod", "@type": "xsd:string" },
613
+ "belongsToEdition": { "@id": "op:belongsToEdition", "@type": "@id" },
614
+
615
+ "CrossPublisherLink": { "@id": "op:CrossPublisherLink" },
616
+ "linkType": { "@id": "op:linkType", "@type": "xsd:string" },
617
+ "sourceMonograph": { "@id": "op:sourceMonograph", "@type": "@id" },
618
+ "targetMonograph": { "@id": "op:targetMonograph", "@type": "@id" },
619
+ "commonIdentifiers": { "@id": "op:commonIdentifiers", "@type": "xsd:string" },
620
+
621
+ "prefLabel": { "@id": "skos:prefLabel", "@container": "@language" },
622
+ "altLabel": { "@id": "skos:altLabel", "@container": "@set" },
623
+ "definition_skos": { "@id": "skos:definition", "@container": "@language" },
624
+
625
+ "label": { "@id": "rdfs:label", "@container": "@language" },
626
+ "comment": { "@id": "rdfs:comment", "@container": "@language" },
627
+
628
+ "id": "@id",
629
+ "type": "@type"
630
+ }
631
+ }