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,30 @@
|
|
|
1
|
+
name: contributor
|
|
2
|
+
title: Contributor Value Sets
|
|
3
|
+
description: Value sets related to contributors and their roles
|
|
4
|
+
id: https://w3id.org/common-value-sets/contributor
|
|
5
|
+
imports:
|
|
6
|
+
- linkml:types
|
|
7
|
+
prefixes:
|
|
8
|
+
CVS: https://w3id.org/common-value-sets/
|
|
9
|
+
linkml: https://w3id.org/linkml/
|
|
10
|
+
NCIT: http://purl.obolibrary.org/obo/NCIT_
|
|
11
|
+
DataCite: https://purl.org/datacite/
|
|
12
|
+
valuesets: https://w3id.org/valuesets/
|
|
13
|
+
default_prefix: valuesets
|
|
14
|
+
slots:
|
|
15
|
+
contributor:
|
|
16
|
+
description: The type of contributor being represented
|
|
17
|
+
range: ContributorType
|
|
18
|
+
enums:
|
|
19
|
+
ContributorType:
|
|
20
|
+
description: The type of contributor being represented.
|
|
21
|
+
permissible_values:
|
|
22
|
+
PERSON:
|
|
23
|
+
description: A person.
|
|
24
|
+
meaning: NCIT:C25190
|
|
25
|
+
ORGANIZATION:
|
|
26
|
+
description: An organization.
|
|
27
|
+
meaning: NCIT:C41206
|
|
28
|
+
aliases:
|
|
29
|
+
- Institution
|
|
30
|
+
default_range: string
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
name: comet-core
|
|
2
|
+
title: comet-core
|
|
3
|
+
description: 'Common Observational Model: Core'
|
|
4
|
+
id: https://w3id.org/valuesets/core
|
|
5
|
+
prefixes:
|
|
6
|
+
valuesets: https://w3id.org/valuesets/
|
|
7
|
+
linkml: https://w3id.org/linkml/
|
|
8
|
+
biolink: https://w3id.org/biolink/
|
|
9
|
+
schema: http://schema.org/
|
|
10
|
+
BFO: http://purl.obolibrary.org/obo/BFO_
|
|
11
|
+
IAO: http://purl.obolibrary.org/obo/IAO_
|
|
12
|
+
fhir: http://hl7.org/fhir/
|
|
13
|
+
rdfs: http://www.w3.org/2000/01/rdf-schema#
|
|
14
|
+
rdf: http://www.w3.org/1999/02/22-rdf-syntax-ns#
|
|
15
|
+
dcterms: http://purl.org/dc/terms/
|
|
16
|
+
bibo: http://purl.org/ontology/bibo/
|
|
17
|
+
oboe-core: http://ecoinformatics.org/oboe/oboe.1.0/oboe-core.owl#
|
|
18
|
+
omopschema: http://example.org/omop/
|
|
19
|
+
wgs84: http://www.w3.org/2003/01/geo/wgs84_pos#
|
|
20
|
+
om: http://www.opengis.net/om/2.0
|
|
21
|
+
prov: http://www.w3.org/ns/prov#
|
|
22
|
+
OBI: http://purl.obolibrary.org/obo/OBI_
|
|
23
|
+
ENVO: http://purl.obolibrary.org/obo/ENVO_
|
|
24
|
+
NCBITaxon: http://purl.obolibrary.org/obo/NCBITaxon_
|
|
25
|
+
example: http://example.org/
|
|
26
|
+
_base: http://example.org/
|
|
27
|
+
mixs: http://w3id.org/mixs/
|
|
28
|
+
ucum: http://unitsofmeasure.org/
|
|
29
|
+
default_prefix: valuesets
|
|
30
|
+
slots:
|
|
31
|
+
relative_time:
|
|
32
|
+
description: The relative time classification
|
|
33
|
+
range: RelativeTimeEnum
|
|
34
|
+
presence:
|
|
35
|
+
description: The presence classification
|
|
36
|
+
range: PresenceEnum
|
|
37
|
+
enums:
|
|
38
|
+
RelativeTimeEnum:
|
|
39
|
+
permissible_values:
|
|
40
|
+
BEFORE: null
|
|
41
|
+
AFTER: null
|
|
42
|
+
AT_SAME_TIME_AS: null
|
|
43
|
+
PresenceEnum:
|
|
44
|
+
permissible_values:
|
|
45
|
+
PRESENT:
|
|
46
|
+
description: The entity is present
|
|
47
|
+
ABSENT:
|
|
48
|
+
description: The entity is absent
|
|
49
|
+
BELOW_DETECTION_LIMIT:
|
|
50
|
+
description: The entity is below the detection limit
|
|
51
|
+
ABOVE_DETECTION_LIMIT:
|
|
52
|
+
description: The entity is above the detection limit
|
|
53
|
+
license: MIT
|
|
54
|
+
see_also:
|
|
55
|
+
- https://linkml.github.io/comet
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
name: data_absent_reason
|
|
2
|
+
id: http://terminology.hl7.org/CodeSystem/data-absent-reason#
|
|
3
|
+
prefixes:
|
|
4
|
+
fhir: http://hl7.org/fhir/
|
|
5
|
+
fhir_data_absent_reason: http://terminology.hl7.org/CodeSystem/data-absent-reason
|
|
6
|
+
valuesets: https://w3id.org/valuesets/
|
|
7
|
+
default_prefix: valuesets
|
|
8
|
+
slots:
|
|
9
|
+
data_absent:
|
|
10
|
+
description: Used to specify why the normally expected content of the data element is missing
|
|
11
|
+
range: DataAbsentEnum
|
|
12
|
+
enums:
|
|
13
|
+
DataAbsentEnum:
|
|
14
|
+
description: Used to specify why the normally expected content of the data element is missing.
|
|
15
|
+
permissible_values:
|
|
16
|
+
unknown:
|
|
17
|
+
description: The value is expected to exist but is not known.
|
|
18
|
+
meaning: fhir_data_absent_reason:unknown
|
|
19
|
+
title: Unknown
|
|
20
|
+
asked-unknown:
|
|
21
|
+
description: The source was asked but does not know the value.
|
|
22
|
+
meaning: fhir_data_absent_reason:asked-unknown
|
|
23
|
+
is_a: unknown
|
|
24
|
+
title: Asked But Unknown
|
|
25
|
+
temp-unknown:
|
|
26
|
+
description: There is reason to expect (from the workflow) that the value may become known.
|
|
27
|
+
meaning: fhir_data_absent_reason:temp-unknown
|
|
28
|
+
is_a: unknown
|
|
29
|
+
title: Temporarily Unknown
|
|
30
|
+
not-asked:
|
|
31
|
+
description: The workflow didn't lead to this value being known.
|
|
32
|
+
meaning: fhir_data_absent_reason:not-asked
|
|
33
|
+
is_a: unknown
|
|
34
|
+
title: Not Asked
|
|
35
|
+
asked-declined:
|
|
36
|
+
description: The source was asked but declined to answer.
|
|
37
|
+
meaning: fhir_data_absent_reason:asked-declined
|
|
38
|
+
is_a: unknown
|
|
39
|
+
title: Asked But Declined
|
|
40
|
+
masked:
|
|
41
|
+
description: The information is not available due to security, privacy or related reasons.
|
|
42
|
+
meaning: fhir_data_absent_reason:masked
|
|
43
|
+
title: Masked
|
|
44
|
+
not-applicable:
|
|
45
|
+
description: There is no proper value for this element (e.g. last menstrual period for a male).
|
|
46
|
+
meaning: fhir_data_absent_reason:not-applicable
|
|
47
|
+
title: Not Applicable
|
|
48
|
+
unsupported:
|
|
49
|
+
description: The source system wasn't capable of supporting this element.
|
|
50
|
+
meaning: fhir_data_absent_reason:unsupported
|
|
51
|
+
title: Unsupported
|
|
52
|
+
as-text:
|
|
53
|
+
description: The content of the data is represented in the resource narrative.
|
|
54
|
+
meaning: fhir_data_absent_reason:as-text
|
|
55
|
+
title: As Text
|
|
56
|
+
error:
|
|
57
|
+
description: Some system or workflow process error means that the information is not available.
|
|
58
|
+
meaning: fhir_data_absent_reason:error
|
|
59
|
+
title: Error
|
|
60
|
+
not-a-number:
|
|
61
|
+
description: The numeric value is undefined or unrepresentable due to a floating point processing error.
|
|
62
|
+
meaning: fhir_data_absent_reason:not-a-number
|
|
63
|
+
is_a: error
|
|
64
|
+
title: Not a Number (NaN)
|
|
65
|
+
negative-infinity:
|
|
66
|
+
description: The numeric value is excessively low and unrepresentable due to a floating point processing error.
|
|
67
|
+
meaning: fhir_data_absent_reason:negative-infinity
|
|
68
|
+
is_a: error
|
|
69
|
+
title: Negative Infinity (NINF)
|
|
70
|
+
positive-infinity:
|
|
71
|
+
description: The numeric value is excessively high and unrepresentable due to a floating point processing error.
|
|
72
|
+
meaning: fhir_data_absent_reason:positive-infinity
|
|
73
|
+
is_a: error
|
|
74
|
+
title: Positive Infinity (PINF)
|
|
75
|
+
not-performed:
|
|
76
|
+
description: The value is not available because the observation procedure (test, etc.) was not performed.
|
|
77
|
+
meaning: fhir_data_absent_reason:not-performed
|
|
78
|
+
title: Not Performed
|
|
79
|
+
not-permitted:
|
|
80
|
+
description: The value is not permitted in this context (e.g. due to profiles, or the base data types).
|
|
81
|
+
meaning: fhir_data_absent_reason:not-permitted
|
|
82
|
+
title: Not Permitted
|
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
name: binary_classification
|
|
2
|
+
id: https://w3id.org/linkml/valuesets/data_science/binary_classification
|
|
3
|
+
prefixes:
|
|
4
|
+
# linkml_common: https://w3id.org/linkml-common/
|
|
5
|
+
STATO: http://purl.obolibrary.org/obo/STATO_
|
|
6
|
+
NCIT: http://purl.obolibrary.org/obo/NCIT_
|
|
7
|
+
PATO: http://purl.obolibrary.org/obo/PATO_
|
|
8
|
+
GSSO: http://purl.obolibrary.org/obo/GSSO_
|
|
9
|
+
valuesets: https://w3id.org/valuesets/
|
|
10
|
+
default_prefix: valuesets
|
|
11
|
+
slots:
|
|
12
|
+
binary_classification:
|
|
13
|
+
description: Generic binary classification labels
|
|
14
|
+
range: BinaryClassificationEnum
|
|
15
|
+
spam_classification:
|
|
16
|
+
description: Standard labels for spam/ham email classification
|
|
17
|
+
range: SpamClassificationEnum
|
|
18
|
+
anomaly_detection:
|
|
19
|
+
description: Labels for anomaly detection tasks
|
|
20
|
+
range: AnomalyDetectionEnum
|
|
21
|
+
churn_classification:
|
|
22
|
+
description: Customer churn prediction labels
|
|
23
|
+
range: ChurnClassificationEnum
|
|
24
|
+
fraud_detection:
|
|
25
|
+
description: Fraud detection classification labels
|
|
26
|
+
range: FraudDetectionEnum
|
|
27
|
+
enums:
|
|
28
|
+
BinaryClassificationEnum:
|
|
29
|
+
description: Generic binary classification labels
|
|
30
|
+
permissible_values:
|
|
31
|
+
POSITIVE:
|
|
32
|
+
description: Positive class
|
|
33
|
+
title: Positive Finding
|
|
34
|
+
meaning: NCIT:C38758
|
|
35
|
+
aliases:
|
|
36
|
+
- '1'
|
|
37
|
+
- 'true'
|
|
38
|
+
- 'yes'
|
|
39
|
+
- T
|
|
40
|
+
NEGATIVE:
|
|
41
|
+
description: Negative class
|
|
42
|
+
title: Negative Test Result
|
|
43
|
+
meaning: NCIT:C35681
|
|
44
|
+
aliases:
|
|
45
|
+
- '0'
|
|
46
|
+
- 'false'
|
|
47
|
+
- 'no'
|
|
48
|
+
- F
|
|
49
|
+
SpamClassificationEnum:
|
|
50
|
+
description: Standard labels for spam/ham email classification
|
|
51
|
+
permissible_values:
|
|
52
|
+
SPAM:
|
|
53
|
+
description: Unwanted or unsolicited message
|
|
54
|
+
annotations:
|
|
55
|
+
note: No appropriate ontology term found for spam concept
|
|
56
|
+
aliases:
|
|
57
|
+
- junk
|
|
58
|
+
- '1'
|
|
59
|
+
HAM:
|
|
60
|
+
description: Legitimate, wanted message
|
|
61
|
+
annotations:
|
|
62
|
+
note: No appropriate ontology term found for ham concept
|
|
63
|
+
aliases:
|
|
64
|
+
- not_spam
|
|
65
|
+
- legitimate
|
|
66
|
+
- '0'
|
|
67
|
+
AnomalyDetectionEnum:
|
|
68
|
+
description: Labels for anomaly detection tasks
|
|
69
|
+
permissible_values:
|
|
70
|
+
NORMAL:
|
|
71
|
+
description: Normal, expected behavior or pattern
|
|
72
|
+
title: Normal
|
|
73
|
+
meaning: NCIT:C14165
|
|
74
|
+
aliases:
|
|
75
|
+
- inlier
|
|
76
|
+
- regular
|
|
77
|
+
- '0'
|
|
78
|
+
ANOMALY:
|
|
79
|
+
description: Abnormal, unexpected behavior or pattern
|
|
80
|
+
title: Anomaly
|
|
81
|
+
meaning: STATO:0000036
|
|
82
|
+
aliases:
|
|
83
|
+
- outlier
|
|
84
|
+
- abnormal
|
|
85
|
+
- irregular
|
|
86
|
+
- '1'
|
|
87
|
+
ChurnClassificationEnum:
|
|
88
|
+
description: Customer churn prediction labels
|
|
89
|
+
permissible_values:
|
|
90
|
+
RETAINED:
|
|
91
|
+
description: Customer continues using the service
|
|
92
|
+
annotations:
|
|
93
|
+
note: No appropriate ontology term found for customer retention
|
|
94
|
+
aliases:
|
|
95
|
+
- active
|
|
96
|
+
- staying
|
|
97
|
+
- '0'
|
|
98
|
+
CHURNED:
|
|
99
|
+
description: Customer stopped using the service
|
|
100
|
+
annotations:
|
|
101
|
+
note: No appropriate ontology term found for customer churn
|
|
102
|
+
aliases:
|
|
103
|
+
- lost
|
|
104
|
+
- inactive
|
|
105
|
+
- attrited
|
|
106
|
+
- '1'
|
|
107
|
+
FraudDetectionEnum:
|
|
108
|
+
description: Fraud detection classification labels
|
|
109
|
+
permissible_values:
|
|
110
|
+
LEGITIMATE:
|
|
111
|
+
description: Legitimate, non-fraudulent transaction or activity
|
|
112
|
+
title: Normal
|
|
113
|
+
meaning: NCIT:C14165
|
|
114
|
+
aliases:
|
|
115
|
+
- genuine
|
|
116
|
+
- valid
|
|
117
|
+
- '0'
|
|
118
|
+
FRAUDULENT:
|
|
119
|
+
description: Fraudulent transaction or activity
|
|
120
|
+
title: Fraudulently Obtained Product
|
|
121
|
+
meaning: NCIT:C121839
|
|
122
|
+
aliases:
|
|
123
|
+
- fraud
|
|
124
|
+
- invalid
|
|
125
|
+
- '1'
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
name: emotion_classification
|
|
2
|
+
id: https://w3id.org/linkml/valuesets/data_science/emotion_classification
|
|
3
|
+
prefixes:
|
|
4
|
+
# linkml_common: https://w3id.org/linkml-common/
|
|
5
|
+
MFOEM: http://purl.obolibrary.org/obo/MFOEM_
|
|
6
|
+
valuesets: https://w3id.org/valuesets/
|
|
7
|
+
default_prefix: valuesets
|
|
8
|
+
slots:
|
|
9
|
+
basic_emotion:
|
|
10
|
+
description: Ekman's six basic emotions commonly used in emotion recognition
|
|
11
|
+
range: BasicEmotionEnum
|
|
12
|
+
extended_emotion:
|
|
13
|
+
description: Extended emotion set including complex emotions
|
|
14
|
+
range: ExtendedEmotionEnum
|
|
15
|
+
enums:
|
|
16
|
+
BasicEmotionEnum:
|
|
17
|
+
description: Ekman's six basic emotions commonly used in emotion recognition
|
|
18
|
+
conforms_to: https://en.wikipedia.org/wiki/Basic_emotions
|
|
19
|
+
permissible_values:
|
|
20
|
+
ANGER:
|
|
21
|
+
description: Feeling of displeasure or hostility
|
|
22
|
+
title: Anger
|
|
23
|
+
meaning: MFOEM:000009
|
|
24
|
+
aliases:
|
|
25
|
+
- angry
|
|
26
|
+
- mad
|
|
27
|
+
DISGUST:
|
|
28
|
+
description: Feeling of revulsion or strong disapproval
|
|
29
|
+
title: Disgust
|
|
30
|
+
meaning: MFOEM:000019
|
|
31
|
+
aliases:
|
|
32
|
+
- disgusted
|
|
33
|
+
- repulsed
|
|
34
|
+
FEAR:
|
|
35
|
+
description: Feeling of anxiety or apprehension
|
|
36
|
+
title: Fear
|
|
37
|
+
meaning: MFOEM:000026
|
|
38
|
+
aliases:
|
|
39
|
+
- afraid
|
|
40
|
+
- scared
|
|
41
|
+
HAPPINESS:
|
|
42
|
+
description: Feeling of pleasure or contentment
|
|
43
|
+
title: Happiness
|
|
44
|
+
meaning: MFOEM:000042
|
|
45
|
+
aliases:
|
|
46
|
+
- happy
|
|
47
|
+
- joy
|
|
48
|
+
- joyful
|
|
49
|
+
SADNESS:
|
|
50
|
+
description: Feeling of sorrow or unhappiness
|
|
51
|
+
title: Sadness
|
|
52
|
+
meaning: MFOEM:000056
|
|
53
|
+
aliases:
|
|
54
|
+
- sad
|
|
55
|
+
- sorrow
|
|
56
|
+
SURPRISE:
|
|
57
|
+
description: Feeling of mild astonishment or shock
|
|
58
|
+
title: Surprise
|
|
59
|
+
meaning: MFOEM:000032
|
|
60
|
+
aliases:
|
|
61
|
+
- surprised
|
|
62
|
+
- shocked
|
|
63
|
+
ExtendedEmotionEnum:
|
|
64
|
+
description: Extended emotion set including complex emotions
|
|
65
|
+
conforms_to: https://en.wikipedia.org/wiki/Emotion_classification
|
|
66
|
+
permissible_values:
|
|
67
|
+
ANGER:
|
|
68
|
+
description: Feeling of displeasure or hostility
|
|
69
|
+
title: Anger
|
|
70
|
+
meaning: MFOEM:000009
|
|
71
|
+
DISGUST:
|
|
72
|
+
description: Feeling of revulsion
|
|
73
|
+
title: Disgust
|
|
74
|
+
meaning: MFOEM:000019
|
|
75
|
+
FEAR:
|
|
76
|
+
description: Feeling of anxiety
|
|
77
|
+
title: Fear
|
|
78
|
+
meaning: MFOEM:000026
|
|
79
|
+
HAPPINESS:
|
|
80
|
+
description: Feeling of pleasure
|
|
81
|
+
title: Happiness
|
|
82
|
+
meaning: MFOEM:000042
|
|
83
|
+
SADNESS:
|
|
84
|
+
description: Feeling of sorrow
|
|
85
|
+
title: Sadness
|
|
86
|
+
meaning: MFOEM:000056
|
|
87
|
+
SURPRISE:
|
|
88
|
+
description: Feeling of astonishment
|
|
89
|
+
title: Surprise
|
|
90
|
+
meaning: MFOEM:000032
|
|
91
|
+
CONTEMPT:
|
|
92
|
+
description: Feeling that something is worthless
|
|
93
|
+
title: Contempt
|
|
94
|
+
meaning: MFOEM:000018
|
|
95
|
+
ANTICIPATION:
|
|
96
|
+
description: Feeling of excitement about something that will happen
|
|
97
|
+
title: Erwartung
|
|
98
|
+
meaning: MFOEM:000175
|
|
99
|
+
aliases:
|
|
100
|
+
- expectation
|
|
101
|
+
- expectant
|
|
102
|
+
TRUST:
|
|
103
|
+
description: Feeling of confidence in someone or something
|
|
104
|
+
title: Trust
|
|
105
|
+
meaning: MFOEM:000224
|
|
106
|
+
LOVE:
|
|
107
|
+
description: Feeling of deep affection
|
|
108
|
+
title: Love
|
|
109
|
+
meaning: MFOEM:000048
|
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
name: priority_severity
|
|
2
|
+
id: https://w3id.org/linkml/valuesets/data_science/priority_severity
|
|
3
|
+
prefixes:
|
|
4
|
+
# linkml_common: https://w3id.org/linkml-common/
|
|
5
|
+
NCIT: http://purl.obolibrary.org/obo/NCIT_
|
|
6
|
+
STATO: http://purl.obolibrary.org/obo/STATO_
|
|
7
|
+
valuesets: https://w3id.org/valuesets/
|
|
8
|
+
default_prefix: valuesets
|
|
9
|
+
slots:
|
|
10
|
+
priority_level:
|
|
11
|
+
description: Standard priority levels for task/issue classification
|
|
12
|
+
range: PriorityLevelEnum
|
|
13
|
+
severity_level:
|
|
14
|
+
description: Severity levels for incident/bug classification
|
|
15
|
+
range: SeverityLevelEnum
|
|
16
|
+
confidence_level:
|
|
17
|
+
description: Confidence levels for predictions and classifications
|
|
18
|
+
range: ConfidenceLevelEnum
|
|
19
|
+
enums:
|
|
20
|
+
PriorityLevelEnum:
|
|
21
|
+
description: Standard priority levels for task/issue classification
|
|
22
|
+
permissible_values:
|
|
23
|
+
CRITICAL:
|
|
24
|
+
description: Highest priority, requires immediate attention
|
|
25
|
+
title: Critical
|
|
26
|
+
aliases:
|
|
27
|
+
- P0
|
|
28
|
+
- urgent
|
|
29
|
+
- blocker
|
|
30
|
+
- '1'
|
|
31
|
+
HIGH:
|
|
32
|
+
description: High priority, should be addressed soon
|
|
33
|
+
title: High
|
|
34
|
+
aliases:
|
|
35
|
+
- P1
|
|
36
|
+
- important
|
|
37
|
+
- '2'
|
|
38
|
+
MEDIUM:
|
|
39
|
+
description: Medium priority, normal workflow
|
|
40
|
+
title: Medium
|
|
41
|
+
aliases:
|
|
42
|
+
- P2
|
|
43
|
+
- normal
|
|
44
|
+
- '3'
|
|
45
|
+
LOW:
|
|
46
|
+
description: Low priority, can be deferred
|
|
47
|
+
title: Low
|
|
48
|
+
aliases:
|
|
49
|
+
- P3
|
|
50
|
+
- minor
|
|
51
|
+
- '4'
|
|
52
|
+
TRIVIAL:
|
|
53
|
+
description: Lowest priority, nice to have
|
|
54
|
+
title: Trivial
|
|
55
|
+
aliases:
|
|
56
|
+
- P4
|
|
57
|
+
- cosmetic
|
|
58
|
+
- '5'
|
|
59
|
+
SeverityLevelEnum:
|
|
60
|
+
description: Severity levels for incident/bug classification
|
|
61
|
+
permissible_values:
|
|
62
|
+
CRITICAL:
|
|
63
|
+
description: System is unusable, data loss possible
|
|
64
|
+
title: Critical
|
|
65
|
+
aliases:
|
|
66
|
+
- S1
|
|
67
|
+
- blocker
|
|
68
|
+
- showstopper
|
|
69
|
+
MAJOR:
|
|
70
|
+
description: Major functionality impaired
|
|
71
|
+
title: Major
|
|
72
|
+
aliases:
|
|
73
|
+
- S2
|
|
74
|
+
- severe
|
|
75
|
+
- high
|
|
76
|
+
MINOR:
|
|
77
|
+
description: Minor functionality impaired
|
|
78
|
+
title: Minor
|
|
79
|
+
aliases:
|
|
80
|
+
- S3
|
|
81
|
+
- moderate
|
|
82
|
+
- medium
|
|
83
|
+
TRIVIAL:
|
|
84
|
+
description: Cosmetic issue, minimal impact
|
|
85
|
+
title: Trivial
|
|
86
|
+
aliases:
|
|
87
|
+
- S4
|
|
88
|
+
- cosmetic
|
|
89
|
+
- low
|
|
90
|
+
ConfidenceLevelEnum:
|
|
91
|
+
description: Confidence levels for predictions and classifications
|
|
92
|
+
permissible_values:
|
|
93
|
+
VERY_HIGH:
|
|
94
|
+
description: Very high confidence (>95%)
|
|
95
|
+
title: Very High
|
|
96
|
+
aliases:
|
|
97
|
+
- certain
|
|
98
|
+
- '5'
|
|
99
|
+
HIGH:
|
|
100
|
+
description: High confidence (80-95%)
|
|
101
|
+
title: High
|
|
102
|
+
aliases:
|
|
103
|
+
- confident
|
|
104
|
+
- '4'
|
|
105
|
+
MEDIUM:
|
|
106
|
+
description: Medium confidence (60-80%)
|
|
107
|
+
title: Medium
|
|
108
|
+
aliases:
|
|
109
|
+
- moderate
|
|
110
|
+
- '3'
|
|
111
|
+
LOW:
|
|
112
|
+
description: Low confidence (40-60%)
|
|
113
|
+
title: Low
|
|
114
|
+
aliases:
|
|
115
|
+
- uncertain
|
|
116
|
+
- '2'
|
|
117
|
+
VERY_LOW:
|
|
118
|
+
description: Very low confidence (<40%)
|
|
119
|
+
title: Very Low
|
|
120
|
+
aliases:
|
|
121
|
+
- guess
|
|
122
|
+
- '1'
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
name: quality_control
|
|
2
|
+
id: https://w3id.org/linkml/valuesets/data_science/quality_control
|
|
3
|
+
prefixes:
|
|
4
|
+
# linkml_common: https://w3id.org/linkml-common/
|
|
5
|
+
NCIT: http://purl.obolibrary.org/obo/NCIT_
|
|
6
|
+
valuesets: https://w3id.org/valuesets/
|
|
7
|
+
default_prefix: valuesets
|
|
8
|
+
slots:
|
|
9
|
+
quality_control:
|
|
10
|
+
description: Quality control classification labels
|
|
11
|
+
range: QualityControlEnum
|
|
12
|
+
defect_classification:
|
|
13
|
+
description: Manufacturing defect classification
|
|
14
|
+
range: DefectClassificationEnum
|
|
15
|
+
enums:
|
|
16
|
+
QualityControlEnum:
|
|
17
|
+
description: Quality control classification labels
|
|
18
|
+
permissible_values:
|
|
19
|
+
PASS:
|
|
20
|
+
description: Item meets quality standards
|
|
21
|
+
title: Pass
|
|
22
|
+
meaning: NCIT:C81275
|
|
23
|
+
aliases:
|
|
24
|
+
- passed
|
|
25
|
+
- acceptable
|
|
26
|
+
- ok
|
|
27
|
+
- '1'
|
|
28
|
+
FAIL:
|
|
29
|
+
description: Item does not meet quality standards
|
|
30
|
+
title: Fail
|
|
31
|
+
meaning: NCIT:C44281
|
|
32
|
+
aliases:
|
|
33
|
+
- failed
|
|
34
|
+
- reject
|
|
35
|
+
- defective
|
|
36
|
+
- '0'
|
|
37
|
+
DefectClassificationEnum:
|
|
38
|
+
description: Manufacturing defect classification
|
|
39
|
+
permissible_values:
|
|
40
|
+
NO_DEFECT:
|
|
41
|
+
description: No defect detected
|
|
42
|
+
title: No Defect
|
|
43
|
+
meaning: NCIT:C14165
|
|
44
|
+
aliases:
|
|
45
|
+
- good
|
|
46
|
+
- normal
|
|
47
|
+
- '0'
|
|
48
|
+
MINOR_DEFECT:
|
|
49
|
+
description: Minor defect that doesn't affect functionality
|
|
50
|
+
title: Minor Defect
|
|
51
|
+
aliases:
|
|
52
|
+
- minor
|
|
53
|
+
- cosmetic
|
|
54
|
+
- '1'
|
|
55
|
+
MAJOR_DEFECT:
|
|
56
|
+
description: Major defect affecting functionality
|
|
57
|
+
title: Major Defect
|
|
58
|
+
aliases:
|
|
59
|
+
- major
|
|
60
|
+
- functional
|
|
61
|
+
- '2'
|
|
62
|
+
CRITICAL_DEFECT:
|
|
63
|
+
description: Critical defect rendering item unusable or unsafe
|
|
64
|
+
title: Critical Defect
|
|
65
|
+
aliases:
|
|
66
|
+
- critical
|
|
67
|
+
- severe
|
|
68
|
+
- '3'
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
name: sentiment_analysis
|
|
2
|
+
id: https://w3id.org/linkml/valuesets/data_science/sentiment_analysis
|
|
3
|
+
prefixes:
|
|
4
|
+
# linkml_common: https://w3id.org/linkml-common/
|
|
5
|
+
NCIT: http://purl.obolibrary.org/obo/NCIT_
|
|
6
|
+
valuesets: https://w3id.org/valuesets/
|
|
7
|
+
default_prefix: valuesets
|
|
8
|
+
slots:
|
|
9
|
+
sentiment_classification:
|
|
10
|
+
description: Standard labels for sentiment analysis classification tasks
|
|
11
|
+
range: SentimentClassificationEnum
|
|
12
|
+
fine_sentiment_classification:
|
|
13
|
+
description: Fine-grained sentiment analysis labels with intensity levels
|
|
14
|
+
range: FineSentimentClassificationEnum
|
|
15
|
+
enums:
|
|
16
|
+
SentimentClassificationEnum:
|
|
17
|
+
description: Standard labels for sentiment analysis classification tasks
|
|
18
|
+
permissible_values:
|
|
19
|
+
POSITIVE:
|
|
20
|
+
description: Positive sentiment or opinion
|
|
21
|
+
title: Positive Finding
|
|
22
|
+
meaning: NCIT:C38758
|
|
23
|
+
aliases:
|
|
24
|
+
- pos
|
|
25
|
+
- '1'
|
|
26
|
+
- +
|
|
27
|
+
NEGATIVE:
|
|
28
|
+
description: Negative sentiment or opinion
|
|
29
|
+
title: Negative Test Result
|
|
30
|
+
meaning: NCIT:C35681
|
|
31
|
+
aliases:
|
|
32
|
+
- neg
|
|
33
|
+
- '0'
|
|
34
|
+
- '-'
|
|
35
|
+
NEUTRAL:
|
|
36
|
+
description: Neutral sentiment, neither positive nor negative
|
|
37
|
+
title: Normal
|
|
38
|
+
meaning: NCIT:C14165
|
|
39
|
+
aliases:
|
|
40
|
+
- neu
|
|
41
|
+
- '2'
|
|
42
|
+
FineSentimentClassificationEnum:
|
|
43
|
+
description: Fine-grained sentiment analysis labels with intensity levels
|
|
44
|
+
permissible_values:
|
|
45
|
+
VERY_POSITIVE:
|
|
46
|
+
description: Strongly positive sentiment
|
|
47
|
+
title: Positive Finding
|
|
48
|
+
is_a: POSITIVE
|
|
49
|
+
meaning: NCIT:C38758
|
|
50
|
+
aliases:
|
|
51
|
+
- '5'
|
|
52
|
+
- ++
|
|
53
|
+
POSITIVE:
|
|
54
|
+
description: Positive sentiment
|
|
55
|
+
title: Positive Finding
|
|
56
|
+
meaning: NCIT:C38758
|
|
57
|
+
aliases:
|
|
58
|
+
- '4'
|
|
59
|
+
- +
|
|
60
|
+
NEUTRAL:
|
|
61
|
+
description: Neutral sentiment
|
|
62
|
+
title: Normal
|
|
63
|
+
meaning: NCIT:C14165
|
|
64
|
+
aliases:
|
|
65
|
+
- '3'
|
|
66
|
+
- '0'
|
|
67
|
+
NEGATIVE:
|
|
68
|
+
description: Negative sentiment
|
|
69
|
+
title: Negative Test Result
|
|
70
|
+
meaning: NCIT:C35681
|
|
71
|
+
aliases:
|
|
72
|
+
- '2'
|
|
73
|
+
- '-'
|
|
74
|
+
VERY_NEGATIVE:
|
|
75
|
+
description: Strongly negative sentiment
|
|
76
|
+
title: Negative Test Result
|
|
77
|
+
is_a: NEGATIVE
|
|
78
|
+
meaning: NCIT:C35681
|
|
79
|
+
aliases:
|
|
80
|
+
- '1'
|
|
81
|
+
- --
|