valuesets 0.3.1__py3-none-any.whl
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.
Potentially problematic release.
This version of valuesets might be problematic. Click here for more details.
- valuesets/__init__.py +7 -0
- valuesets/_version.py +8 -0
- valuesets/datamodel/valuesets.py +13796 -0
- valuesets/datamodel/valuesets_dataclass.py +24503 -0
- valuesets/datamodel/valuesets_pydantic.py +13796 -0
- valuesets/enums/__init__.py +590 -0
- valuesets/enums/academic/__init__.py +1 -0
- valuesets/enums/academic/research.py +559 -0
- valuesets/enums/analytical_chemistry/__init__.py +1 -0
- valuesets/enums/analytical_chemistry/mass_spectrometry.py +198 -0
- valuesets/enums/bio/__init__.py +1 -0
- valuesets/enums/bio/biological_colors.py +238 -0
- valuesets/enums/bio/cell_cycle.py +180 -0
- valuesets/enums/bio/currency_chemicals.py +52 -0
- valuesets/enums/bio/developmental_stages.py +103 -0
- valuesets/enums/bio/genome_features.py +182 -0
- valuesets/enums/bio/genomics.py +91 -0
- valuesets/enums/bio/go_aspect.py +32 -0
- valuesets/enums/bio/go_causality.py +58 -0
- valuesets/enums/bio/go_evidence.py +129 -0
- valuesets/enums/bio/human_developmental_stages.py +62 -0
- valuesets/enums/bio/insdc_geographic_locations.py +591 -0
- valuesets/enums/bio/insdc_missing_values.py +49 -0
- valuesets/enums/bio/lipid_categories.py +67 -0
- valuesets/enums/bio/mouse_developmental_stages.py +62 -0
- valuesets/enums/bio/plant_biology.py +86 -0
- valuesets/enums/bio/plant_developmental_stages.py +54 -0
- valuesets/enums/bio/plant_sex.py +81 -0
- valuesets/enums/bio/protein_evidence.py +61 -0
- valuesets/enums/bio/proteomics_standards.py +123 -0
- valuesets/enums/bio/psi_mi.py +306 -0
- valuesets/enums/bio/relationship_to_oxygen.py +37 -0
- valuesets/enums/bio/sequence_alphabets.py +449 -0
- valuesets/enums/bio/sequence_chemistry.py +357 -0
- valuesets/enums/bio/sequencing_platforms.py +302 -0
- valuesets/enums/bio/structural_biology.py +320 -0
- valuesets/enums/bio/taxonomy.py +238 -0
- valuesets/enums/bio/trophic_levels.py +85 -0
- valuesets/enums/bio/uniprot_species.py +344 -0
- valuesets/enums/bio/viral_genome_types.py +47 -0
- valuesets/enums/bioprocessing/__init__.py +1 -0
- valuesets/enums/bioprocessing/scale_up.py +249 -0
- valuesets/enums/business/__init__.py +1 -0
- valuesets/enums/business/human_resources.py +275 -0
- valuesets/enums/business/industry_classifications.py +181 -0
- valuesets/enums/business/management_operations.py +228 -0
- valuesets/enums/business/organizational_structures.py +236 -0
- valuesets/enums/business/quality_management.py +181 -0
- valuesets/enums/business/supply_chain.py +232 -0
- valuesets/enums/chemistry/__init__.py +1 -0
- valuesets/enums/chemistry/chemical_entities.py +315 -0
- valuesets/enums/chemistry/reaction_directionality.py +65 -0
- valuesets/enums/chemistry/reactions.py +256 -0
- valuesets/enums/clinical/__init__.py +1 -0
- valuesets/enums/clinical/nih_demographics.py +177 -0
- valuesets/enums/clinical/phenopackets.py +254 -0
- valuesets/enums/common_value_sets.py +8791 -0
- valuesets/enums/computing/__init__.py +1 -0
- valuesets/enums/computing/file_formats.py +294 -0
- valuesets/enums/computing/maturity_levels.py +196 -0
- valuesets/enums/computing/mime_types.py +227 -0
- valuesets/enums/confidence_levels.py +168 -0
- valuesets/enums/contributor.py +30 -0
- valuesets/enums/core.py +42 -0
- valuesets/enums/data/__init__.py +1 -0
- valuesets/enums/data/data_absent_reason.py +53 -0
- valuesets/enums/data_science/__init__.py +1 -0
- valuesets/enums/data_science/binary_classification.py +87 -0
- valuesets/enums/data_science/emotion_classification.py +66 -0
- valuesets/enums/data_science/priority_severity.py +73 -0
- valuesets/enums/data_science/quality_control.py +46 -0
- valuesets/enums/data_science/sentiment_analysis.py +50 -0
- valuesets/enums/data_science/text_classification.py +97 -0
- valuesets/enums/demographics.py +206 -0
- valuesets/enums/ecological_interactions.py +151 -0
- valuesets/enums/energy/__init__.py +1 -0
- valuesets/enums/energy/energy.py +343 -0
- valuesets/enums/energy/fossil_fuels.py +29 -0
- valuesets/enums/energy/nuclear/__init__.py +1 -0
- valuesets/enums/energy/nuclear/nuclear_facilities.py +195 -0
- valuesets/enums/energy/nuclear/nuclear_fuel_cycle.py +96 -0
- valuesets/enums/energy/nuclear/nuclear_fuels.py +175 -0
- valuesets/enums/energy/nuclear/nuclear_operations.py +191 -0
- valuesets/enums/energy/nuclear/nuclear_regulatory.py +188 -0
- valuesets/enums/energy/nuclear/nuclear_safety.py +164 -0
- valuesets/enums/energy/nuclear/nuclear_waste.py +158 -0
- valuesets/enums/energy/nuclear/reactor_types.py +163 -0
- valuesets/enums/environmental_health/__init__.py +1 -0
- valuesets/enums/environmental_health/exposures.py +265 -0
- valuesets/enums/geography/__init__.py +1 -0
- valuesets/enums/geography/geographic_codes.py +741 -0
- valuesets/enums/health/__init__.py +12 -0
- valuesets/enums/health/vaccination.py +98 -0
- valuesets/enums/health.py +36 -0
- valuesets/enums/health_base.py +36 -0
- valuesets/enums/healthcare.py +45 -0
- valuesets/enums/industry/__init__.py +1 -0
- valuesets/enums/industry/extractive_industry.py +94 -0
- valuesets/enums/industry/mining.py +388 -0
- valuesets/enums/industry/safety_colors.py +201 -0
- valuesets/enums/investigation.py +27 -0
- valuesets/enums/materials_science/__init__.py +1 -0
- valuesets/enums/materials_science/characterization_methods.py +112 -0
- valuesets/enums/materials_science/crystal_structures.py +76 -0
- valuesets/enums/materials_science/material_properties.py +119 -0
- valuesets/enums/materials_science/material_types.py +104 -0
- valuesets/enums/materials_science/pigments_dyes.py +198 -0
- valuesets/enums/materials_science/synthesis_methods.py +109 -0
- valuesets/enums/medical/__init__.py +1 -0
- valuesets/enums/medical/clinical.py +277 -0
- valuesets/enums/medical/neuroimaging.py +119 -0
- valuesets/enums/mining_processing.py +302 -0
- valuesets/enums/physics/__init__.py +1 -0
- valuesets/enums/physics/states_of_matter.py +46 -0
- valuesets/enums/social/__init__.py +1 -0
- valuesets/enums/social/person_status.py +29 -0
- valuesets/enums/spatial/__init__.py +1 -0
- valuesets/enums/spatial/spatial_qualifiers.py +246 -0
- valuesets/enums/statistics/__init__.py +5 -0
- valuesets/enums/statistics/prediction_outcomes.py +31 -0
- valuesets/enums/statistics.py +31 -0
- valuesets/enums/time/__init__.py +1 -0
- valuesets/enums/time/temporal.py +254 -0
- valuesets/enums/units/__init__.py +1 -0
- valuesets/enums/units/measurements.py +310 -0
- valuesets/enums/visual/__init__.py +1 -0
- valuesets/enums/visual/colors.py +376 -0
- valuesets/generators/__init__.py +19 -0
- valuesets/generators/auto_slot_injector.py +280 -0
- valuesets/generators/enhanced_pydantic_generator.py +100 -0
- valuesets/generators/enum_slot_generator.py +201 -0
- valuesets/generators/modular_rich_generator.py +353 -0
- valuesets/generators/prefix_standardizer.py +198 -0
- valuesets/generators/rich_enum.py +127 -0
- valuesets/generators/rich_pydantic_generator.py +310 -0
- valuesets/generators/smart_slot_syncer.py +428 -0
- valuesets/generators/sssom_generator.py +394 -0
- valuesets/merged/merged_hierarchy.yaml +21649 -0
- valuesets/schema/README.md +3 -0
- valuesets/schema/academic/research.yaml +911 -0
- valuesets/schema/analytical_chemistry/mass_spectrometry.yaml +206 -0
- valuesets/schema/bio/bio_entities.yaml +364 -0
- valuesets/schema/bio/biological_colors.yaml +434 -0
- valuesets/schema/bio/cell_cycle.yaml +309 -0
- valuesets/schema/bio/currency_chemicals.yaml +70 -0
- valuesets/schema/bio/developmental_stages.yaml +226 -0
- valuesets/schema/bio/genome_features.yaml +342 -0
- valuesets/schema/bio/genomics.yaml +101 -0
- valuesets/schema/bio/go_aspect.yaml +39 -0
- valuesets/schema/bio/go_causality.yaml +119 -0
- valuesets/schema/bio/go_evidence.yaml +215 -0
- valuesets/schema/bio/insdc_geographic_locations.yaml +911 -0
- valuesets/schema/bio/insdc_missing_values.yaml +85 -0
- valuesets/schema/bio/lipid_categories.yaml +72 -0
- valuesets/schema/bio/plant_biology.yaml +125 -0
- valuesets/schema/bio/plant_developmental_stages.yaml +77 -0
- valuesets/schema/bio/plant_sex.yaml +108 -0
- valuesets/schema/bio/protein_evidence.yaml +63 -0
- valuesets/schema/bio/proteomics_standards.yaml +116 -0
- valuesets/schema/bio/psi_mi.yaml +400 -0
- valuesets/schema/bio/relationship_to_oxygen.yaml +46 -0
- valuesets/schema/bio/sequence_alphabets.yaml +1168 -0
- valuesets/schema/bio/sequence_chemistry.yaml +477 -0
- valuesets/schema/bio/sequencing_platforms.yaml +515 -0
- valuesets/schema/bio/structural_biology.yaml +428 -0
- valuesets/schema/bio/taxonomy.yaml +453 -0
- valuesets/schema/bio/trophic_levels.yaml +118 -0
- valuesets/schema/bio/uniprot_species.yaml +1209 -0
- valuesets/schema/bio/viral_genome_types.yaml +99 -0
- valuesets/schema/bioprocessing/scale_up.yaml +458 -0
- valuesets/schema/business/human_resources.yaml +752 -0
- valuesets/schema/business/industry_classifications.yaml +448 -0
- valuesets/schema/business/management_operations.yaml +602 -0
- valuesets/schema/business/organizational_structures.yaml +645 -0
- valuesets/schema/business/quality_management.yaml +502 -0
- valuesets/schema/business/supply_chain.yaml +688 -0
- valuesets/schema/chemistry/chemical_entities.yaml +639 -0
- valuesets/schema/chemistry/reaction_directionality.yaml +60 -0
- valuesets/schema/chemistry/reactions.yaml +442 -0
- valuesets/schema/clinical/nih_demographics.yaml +285 -0
- valuesets/schema/clinical/phenopackets.yaml +429 -0
- valuesets/schema/computing/file_formats.yaml +631 -0
- valuesets/schema/computing/maturity_levels.yaml +229 -0
- valuesets/schema/computing/mime_types.yaml +266 -0
- valuesets/schema/confidence_levels.yaml +206 -0
- valuesets/schema/contributor.yaml +30 -0
- valuesets/schema/core.yaml +55 -0
- valuesets/schema/data/data_absent_reason.yaml +82 -0
- valuesets/schema/data_science/binary_classification.yaml +125 -0
- valuesets/schema/data_science/emotion_classification.yaml +109 -0
- valuesets/schema/data_science/priority_severity.yaml +122 -0
- valuesets/schema/data_science/quality_control.yaml +68 -0
- valuesets/schema/data_science/sentiment_analysis.yaml +81 -0
- valuesets/schema/data_science/text_classification.yaml +135 -0
- valuesets/schema/demographics.yaml +238 -0
- valuesets/schema/ecological_interactions.yaml +298 -0
- valuesets/schema/energy/energy.yaml +595 -0
- valuesets/schema/energy/fossil_fuels.yaml +28 -0
- valuesets/schema/energy/nuclear/nuclear_facilities.yaml +463 -0
- valuesets/schema/energy/nuclear/nuclear_fuel_cycle.yaml +82 -0
- valuesets/schema/energy/nuclear/nuclear_fuels.yaml +421 -0
- valuesets/schema/energy/nuclear/nuclear_operations.yaml +480 -0
- valuesets/schema/energy/nuclear/nuclear_regulatory.yaml +200 -0
- valuesets/schema/energy/nuclear/nuclear_safety.yaml +352 -0
- valuesets/schema/energy/nuclear/nuclear_waste.yaml +332 -0
- valuesets/schema/energy/nuclear/reactor_types.yaml +394 -0
- valuesets/schema/environmental_health/exposures.yaml +355 -0
- valuesets/schema/generated_slots.yaml +1828 -0
- valuesets/schema/geography/geographic_codes.yaml +1018 -0
- valuesets/schema/health/vaccination.yaml +102 -0
- valuesets/schema/health.yaml +38 -0
- valuesets/schema/healthcare.yaml +53 -0
- valuesets/schema/industry/extractive_industry.yaml +89 -0
- valuesets/schema/industry/mining.yaml +888 -0
- valuesets/schema/industry/safety_colors.yaml +375 -0
- valuesets/schema/investigation.yaml +64 -0
- valuesets/schema/materials_science/characterization_methods.yaml +193 -0
- valuesets/schema/materials_science/crystal_structures.yaml +138 -0
- valuesets/schema/materials_science/material_properties.yaml +135 -0
- valuesets/schema/materials_science/material_types.yaml +151 -0
- valuesets/schema/materials_science/pigments_dyes.yaml +465 -0
- valuesets/schema/materials_science/synthesis_methods.yaml +186 -0
- valuesets/schema/medical/clinical.yaml +610 -0
- valuesets/schema/medical/neuroimaging.yaml +325 -0
- valuesets/schema/mining_processing.yaml +295 -0
- valuesets/schema/physics/states_of_matter.yaml +46 -0
- valuesets/schema/slot_mixins.yaml +143 -0
- valuesets/schema/social/person_status.yaml +28 -0
- valuesets/schema/spatial/spatial_qualifiers.yaml +466 -0
- valuesets/schema/statistics/prediction_outcomes.yaml +26 -0
- valuesets/schema/statistics.yaml +34 -0
- valuesets/schema/time/temporal.yaml +435 -0
- valuesets/schema/types.yaml +15 -0
- valuesets/schema/units/measurements.yaml +675 -0
- valuesets/schema/valuesets.yaml +100 -0
- valuesets/schema/visual/colors.yaml +778 -0
- valuesets/utils/__init__.py +6 -0
- valuesets/utils/comparison.py +102 -0
- valuesets/utils/expand_dynamic_enums.py +414 -0
- valuesets/utils/mapping_utils.py +236 -0
- valuesets/validators/__init__.py +11 -0
- valuesets/validators/enum_evaluator.py +669 -0
- valuesets/validators/oak_config.yaml +70 -0
- valuesets/validators/validate_with_ols.py +241 -0
- valuesets-0.3.1.dist-info/METADATA +395 -0
- valuesets-0.3.1.dist-info/RECORD +248 -0
- valuesets-0.3.1.dist-info/WHEEL +4 -0
- valuesets-0.3.1.dist-info/licenses/LICENSE +201 -0
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
name: valuesets-vaccination
|
|
2
|
+
title: valuesets-vaccination
|
|
3
|
+
description: Vaccination-related value sets
|
|
4
|
+
# Test comment to trigger validation hook
|
|
5
|
+
id: https://w3id.org/valuesets/health/vaccination
|
|
6
|
+
prefixes:
|
|
7
|
+
# linkml_common: https://w3id.org/valuesets/
|
|
8
|
+
linkml: https://w3id.org/linkml/
|
|
9
|
+
biolink: https://w3id.org/biolink/
|
|
10
|
+
schema: http://schema.org/
|
|
11
|
+
NCIT: http://purl.obolibrary.org/obo/NCIT_
|
|
12
|
+
VO: http://purl.obolibrary.org/obo/VO_
|
|
13
|
+
valuesets: https://w3id.org/valuesets/
|
|
14
|
+
default_prefix: valuesets
|
|
15
|
+
slots:
|
|
16
|
+
vaccination_status:
|
|
17
|
+
description: The vaccination status of an individual
|
|
18
|
+
range: VaccinationStatusEnum
|
|
19
|
+
vaccination_periodicity:
|
|
20
|
+
description: The periodicity or frequency of vaccination
|
|
21
|
+
range: VaccinationPeriodicityEnum
|
|
22
|
+
vaccine_category:
|
|
23
|
+
description: The broad category or type of vaccine
|
|
24
|
+
range: VaccineCategoryEnum
|
|
25
|
+
enums:
|
|
26
|
+
VaccinationStatusEnum:
|
|
27
|
+
description: The vaccination status of an individual
|
|
28
|
+
permissible_values:
|
|
29
|
+
VACCINATED:
|
|
30
|
+
description: A status indicating that an individual has received a vaccination
|
|
31
|
+
meaning: NCIT:C28385
|
|
32
|
+
NOT_VACCINATED:
|
|
33
|
+
description: A status indicating that an individual has not received any of the required vaccinations
|
|
34
|
+
meaning: NCIT:C183125
|
|
35
|
+
FULLY_VACCINATED:
|
|
36
|
+
description: A status indicating that an individual has received all the required vaccinations
|
|
37
|
+
meaning: NCIT:C183123
|
|
38
|
+
PARTIALLY_VACCINATED:
|
|
39
|
+
description: A status indicating that an individual has received some of the required vaccinations
|
|
40
|
+
meaning: NCIT:C183124
|
|
41
|
+
BOOSTER:
|
|
42
|
+
description: A status indicating that an individual has received a booster vaccination
|
|
43
|
+
meaning: NCIT:C28320
|
|
44
|
+
UNVACCINATED:
|
|
45
|
+
description: An organismal quality that indicates an organism is unvaccinated with any vaccine
|
|
46
|
+
meaning: VO:0001377
|
|
47
|
+
UNKNOWN:
|
|
48
|
+
description: The vaccination status is not known
|
|
49
|
+
meaning: NCIT:C17998
|
|
50
|
+
VaccinationPeriodicityEnum:
|
|
51
|
+
description: The periodicity or frequency of vaccination
|
|
52
|
+
permissible_values:
|
|
53
|
+
SINGLE_DOSE:
|
|
54
|
+
description: A vaccination regimen requiring only one dose
|
|
55
|
+
ANNUAL:
|
|
56
|
+
description: Vaccination occurring once per year
|
|
57
|
+
meaning: NCIT:C54647
|
|
58
|
+
SEASONAL:
|
|
59
|
+
description: Vaccination occurring seasonally (e.g., for influenza)
|
|
60
|
+
BOOSTER:
|
|
61
|
+
description: A second or later vaccine dose to maintain immune response
|
|
62
|
+
meaning: NCIT:C28320
|
|
63
|
+
PRIMARY_SERIES:
|
|
64
|
+
description: The initial series of vaccine doses
|
|
65
|
+
PERIODIC:
|
|
66
|
+
description: Vaccination occurring at regular intervals
|
|
67
|
+
ONE_TIME:
|
|
68
|
+
description: A vaccination given only once in a lifetime
|
|
69
|
+
AS_NEEDED:
|
|
70
|
+
description: Vaccination given as needed based on exposure risk or other factors
|
|
71
|
+
VaccineCategoryEnum:
|
|
72
|
+
description: The broad category or type of vaccine
|
|
73
|
+
permissible_values:
|
|
74
|
+
LIVE_ATTENUATED_VACCINE:
|
|
75
|
+
description: A vaccine made from microbes that have been weakened in the laboratory
|
|
76
|
+
meaning: VO:0000367
|
|
77
|
+
INACTIVATED_VACCINE:
|
|
78
|
+
description: A preparation of killed microorganisms intended to prevent infectious disease
|
|
79
|
+
meaning: NCIT:C29694
|
|
80
|
+
CONJUGATE_VACCINE:
|
|
81
|
+
description: A vaccine created by covalently attaching an antigen to a carrier protein
|
|
82
|
+
meaning: NCIT:C1455
|
|
83
|
+
MRNA_VACCINE:
|
|
84
|
+
description: A vaccine based on mRNA that encodes the antigen of interest
|
|
85
|
+
meaning: NCIT:C172787
|
|
86
|
+
DNA_VACCINE:
|
|
87
|
+
description: A vaccine using DNA to produce protein that promotes immune responses
|
|
88
|
+
meaning: NCIT:C39619
|
|
89
|
+
PEPTIDE_VACCINE:
|
|
90
|
+
description: A vaccine based on synthetic peptides
|
|
91
|
+
meaning: NCIT:C1752
|
|
92
|
+
VIRAL_VECTOR:
|
|
93
|
+
description: A vaccine using a modified virus as a delivery system
|
|
94
|
+
SUBUNIT:
|
|
95
|
+
description: A vaccine containing purified pieces of the pathogen
|
|
96
|
+
TOXOID:
|
|
97
|
+
description: A vaccine made from a toxin that has been made harmless
|
|
98
|
+
RECOMBINANT:
|
|
99
|
+
description: A vaccine produced using recombinant DNA technology
|
|
100
|
+
license: MIT
|
|
101
|
+
see_also:
|
|
102
|
+
- https://linkml.github.io/valuesets
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
name: valuesets-health
|
|
2
|
+
title: valuesets-health
|
|
3
|
+
description: General health-related value sets
|
|
4
|
+
id: https://w3id.org/valuesets/health
|
|
5
|
+
prefixes:
|
|
6
|
+
# linkml_common: https://w3id.org/valuesets/
|
|
7
|
+
linkml: https://w3id.org/linkml/
|
|
8
|
+
biolink: https://w3id.org/biolink/
|
|
9
|
+
schema: http://schema.org/
|
|
10
|
+
NCIT: http://purl.obolibrary.org/obo/NCIT_
|
|
11
|
+
fhir: http://hl7.org/fhir/
|
|
12
|
+
valuesets: https://w3id.org/valuesets/
|
|
13
|
+
default_prefix: valuesets
|
|
14
|
+
slots:
|
|
15
|
+
vital_status:
|
|
16
|
+
description: The vital status of a person or organism
|
|
17
|
+
range: VitalStatusEnum
|
|
18
|
+
enums:
|
|
19
|
+
VitalStatusEnum:
|
|
20
|
+
description: The vital status of a person or organism
|
|
21
|
+
permissible_values:
|
|
22
|
+
ALIVE:
|
|
23
|
+
description: The person is living
|
|
24
|
+
meaning: NCIT:C37987
|
|
25
|
+
DECEASED:
|
|
26
|
+
description: The person has died
|
|
27
|
+
meaning: NCIT:C28554
|
|
28
|
+
title: Dead
|
|
29
|
+
UNKNOWN:
|
|
30
|
+
description: The vital status is not known
|
|
31
|
+
meaning: NCIT:C17998
|
|
32
|
+
PRESUMED_ALIVE:
|
|
33
|
+
description: The person is presumed to be alive based on available information
|
|
34
|
+
PRESUMED_DECEASED:
|
|
35
|
+
description: The person is presumed to be deceased based on available information
|
|
36
|
+
license: MIT
|
|
37
|
+
see_also:
|
|
38
|
+
- https://linkml.github.io/valuesets
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
name: valuesets-healthcare
|
|
2
|
+
title: valuesets-healthcare
|
|
3
|
+
description: Common Data Model Elements
|
|
4
|
+
id: https://w3id.org/valuesets/healthcare
|
|
5
|
+
prefixes:
|
|
6
|
+
# linkml_common: https://w3id.org/valuesets/
|
|
7
|
+
linkml: https://w3id.org/linkml/
|
|
8
|
+
biolink: https://w3id.org/biolink/
|
|
9
|
+
schema: http://schema.org/
|
|
10
|
+
PATO: http://purl.obolibrary.org/obo/PATO_
|
|
11
|
+
fhir: http://hl7.org/fhir/
|
|
12
|
+
omopschema: http://example.org/omop/
|
|
13
|
+
valuesets: https://w3id.org/valuesets/
|
|
14
|
+
default_prefix: valuesets
|
|
15
|
+
slots:
|
|
16
|
+
healthcare_encounter_classification:
|
|
17
|
+
description: The healthcare encounter classification classification
|
|
18
|
+
range: HealthcareEncounterClassification
|
|
19
|
+
enums:
|
|
20
|
+
HealthcareEncounterClassification:
|
|
21
|
+
permissible_values:
|
|
22
|
+
Inpatient Visit:
|
|
23
|
+
description: Person visiting hospital, at a Care Site, in bed, for duration of more than one day, with physicians
|
|
24
|
+
and other Providers permanently available to deliver service around the clock
|
|
25
|
+
Emergency Room Visit:
|
|
26
|
+
description: Person visiting dedicated healthcare institution for treating emergencies, at a Care Site, within one
|
|
27
|
+
day, with physicians and Providers permanently available to deliver service around the clock
|
|
28
|
+
Emergency Room and Inpatient Visit:
|
|
29
|
+
description: Person visiting ER followed by a subsequent Inpatient Visit, where Emergency department is part of hospital,
|
|
30
|
+
and transition from the ER to other hospital departments is undefined
|
|
31
|
+
Non-hospital institution Visit:
|
|
32
|
+
description: Person visiting dedicated institution for reasons of poor health, at a Care Site, long-term or permanently,
|
|
33
|
+
with no physician but possibly other Providers permanently available to deliver service around the clock
|
|
34
|
+
Outpatient Visit:
|
|
35
|
+
description: Person visiting dedicated ambulatory healthcare institution, at a Care Site, within one day, without
|
|
36
|
+
bed, with physicians or medical Providers delivering service during Visit
|
|
37
|
+
Home Visit:
|
|
38
|
+
description: Provider visiting Person, without a Care Site, within one day, delivering service
|
|
39
|
+
Telehealth Visit:
|
|
40
|
+
description: Patient engages with Provider through communication media
|
|
41
|
+
Pharmacy Visit:
|
|
42
|
+
description: Person visiting pharmacy for dispensing of Drug, at a Care Site, within one day
|
|
43
|
+
Laboratory Visit:
|
|
44
|
+
description: Patient visiting dedicated institution, at a Care Site, within one day, for the purpose of a Measurement.
|
|
45
|
+
Ambulance Visit:
|
|
46
|
+
description: Person using transportation service for the purpose of initiating one of the other Visits, without a
|
|
47
|
+
Care Site, within one day, potentially with Providers accompanying the Visit and delivering service
|
|
48
|
+
Case Management Visit:
|
|
49
|
+
description: Person interacting with healthcare system, without a Care Site, within a day, with no Providers involved,
|
|
50
|
+
for administrative purposes
|
|
51
|
+
license: MIT
|
|
52
|
+
see_also:
|
|
53
|
+
- https://linkml.github.io/valuesets
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
name: extractive_industry
|
|
2
|
+
id: https://w3id.org/linkml/valuesets/industry/extractive_industry
|
|
3
|
+
prefixes:
|
|
4
|
+
# linkml_common: https://w3id.org/linkml-common/
|
|
5
|
+
valuesets: https://w3id.org/valuesets/
|
|
6
|
+
default_prefix: valuesets
|
|
7
|
+
slots:
|
|
8
|
+
extractive_industry_facility_type:
|
|
9
|
+
description: Types of extractive industry facilities
|
|
10
|
+
range: ExtractiveIndustryFacilityTypeEnum
|
|
11
|
+
extractive_industry_product_type:
|
|
12
|
+
description: Types of products extracted from extractive industry facilities
|
|
13
|
+
range: ExtractiveIndustryProductTypeEnum
|
|
14
|
+
mining_method:
|
|
15
|
+
description: Methods used for extracting minerals from the earth
|
|
16
|
+
range: MiningMethodEnum
|
|
17
|
+
well_type:
|
|
18
|
+
description: Types of wells used for extracting fluid resources
|
|
19
|
+
range: WellTypeEnum
|
|
20
|
+
enums:
|
|
21
|
+
ExtractiveIndustryFacilityTypeEnum:
|
|
22
|
+
description: Types of extractive industry facilities
|
|
23
|
+
permissible_values:
|
|
24
|
+
MINING_FACILITY:
|
|
25
|
+
description: A facility where mineral resources are extracted
|
|
26
|
+
title: Mining Facility
|
|
27
|
+
WELL_FACILITY:
|
|
28
|
+
description: A facility where fluid resources are extracted
|
|
29
|
+
title: Well Facility
|
|
30
|
+
QUARRY_FACILITY:
|
|
31
|
+
description: A facility where stone, sand, or gravel are extracted
|
|
32
|
+
title: Quarry Facility
|
|
33
|
+
ExtractiveIndustryProductTypeEnum:
|
|
34
|
+
description: Types of products extracted from extractive industry facilities
|
|
35
|
+
permissible_values:
|
|
36
|
+
MINERAL:
|
|
37
|
+
description: A solid inorganic substance
|
|
38
|
+
title: Mineral
|
|
39
|
+
METAL:
|
|
40
|
+
description: A solid metallic substance
|
|
41
|
+
title: Metal
|
|
42
|
+
COAL:
|
|
43
|
+
description: A combustible black or brownish-black sedimentary rock
|
|
44
|
+
title: Coal
|
|
45
|
+
OIL:
|
|
46
|
+
description: A liquid petroleum resource
|
|
47
|
+
title: Oil
|
|
48
|
+
GAS:
|
|
49
|
+
description: A gaseous petroleum resource
|
|
50
|
+
title: Gas
|
|
51
|
+
STONE:
|
|
52
|
+
description: A solid aggregate of minerals
|
|
53
|
+
title: Stone
|
|
54
|
+
SAND:
|
|
55
|
+
description: A granular material composed of finely divided rock and mineral particles
|
|
56
|
+
title: Sand
|
|
57
|
+
GRAVEL:
|
|
58
|
+
description: A loose aggregation of rock fragments
|
|
59
|
+
title: Gravel
|
|
60
|
+
MiningMethodEnum:
|
|
61
|
+
description: Methods used for extracting minerals from the earth
|
|
62
|
+
permissible_values:
|
|
63
|
+
UNDERGROUND:
|
|
64
|
+
description: Extraction occurs beneath the earth's surface
|
|
65
|
+
title: Underground
|
|
66
|
+
OPEN_PIT:
|
|
67
|
+
description: Extraction occurs on the earth's surface
|
|
68
|
+
title: Open Pit
|
|
69
|
+
PLACER:
|
|
70
|
+
description: Extraction of valuable minerals from alluvial deposits
|
|
71
|
+
title: Placer
|
|
72
|
+
IN_SITU:
|
|
73
|
+
description: Extraction without removing the ore from its original location
|
|
74
|
+
title: In Situ
|
|
75
|
+
WellTypeEnum:
|
|
76
|
+
description: Types of wells used for extracting fluid resources
|
|
77
|
+
permissible_values:
|
|
78
|
+
OIL:
|
|
79
|
+
description: A well that primarily extracts crude oil
|
|
80
|
+
title: Oil
|
|
81
|
+
GAS:
|
|
82
|
+
description: A well that primarily extracts natural gas
|
|
83
|
+
title: Gas
|
|
84
|
+
WATER:
|
|
85
|
+
description: A well that extracts water for various purposes
|
|
86
|
+
title: Water
|
|
87
|
+
INJECTION:
|
|
88
|
+
description: A well used to inject fluids into underground formations
|
|
89
|
+
title: Injection
|