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,631 @@
|
|
|
1
|
+
name: file_formats
|
|
2
|
+
title: File Formats and Protocols Value Sets
|
|
3
|
+
description: 'Value sets for file formats, data formats, and communication protocols commonly used in computing and data exchange.
|
|
4
|
+
|
|
5
|
+
'
|
|
6
|
+
id: https://w3id.org/valuesets/computing/file_formats
|
|
7
|
+
imports:
|
|
8
|
+
- linkml:types
|
|
9
|
+
prefixes:
|
|
10
|
+
linkml: https://w3id.org/linkml/
|
|
11
|
+
EDAM: http://edamontology.org/
|
|
12
|
+
IAO: http://purl.obolibrary.org/obo/IAO_
|
|
13
|
+
SWO: http://purl.obolibrary.org/obo/SWO_
|
|
14
|
+
valuesets: https://w3id.org/valuesets/
|
|
15
|
+
default_prefix: valuesets
|
|
16
|
+
slots:
|
|
17
|
+
image_file_format:
|
|
18
|
+
description: Common image file formats
|
|
19
|
+
range: ImageFileFormatEnum
|
|
20
|
+
document_format:
|
|
21
|
+
description: Document and text file formats
|
|
22
|
+
range: DocumentFormatEnum
|
|
23
|
+
data_format:
|
|
24
|
+
description: Structured data file formats
|
|
25
|
+
range: DataFormatEnum
|
|
26
|
+
archive_format:
|
|
27
|
+
description: Archive and compression formats
|
|
28
|
+
range: ArchiveFormatEnum
|
|
29
|
+
video_format:
|
|
30
|
+
description: Video file formats
|
|
31
|
+
range: VideoFormatEnum
|
|
32
|
+
audio_format:
|
|
33
|
+
description: Audio file formats
|
|
34
|
+
range: AudioFormatEnum
|
|
35
|
+
programming_language_file:
|
|
36
|
+
description: Programming language source file extensions
|
|
37
|
+
range: ProgrammingLanguageFileEnum
|
|
38
|
+
network_protocol:
|
|
39
|
+
description: Network communication protocols
|
|
40
|
+
range: NetworkProtocolEnum
|
|
41
|
+
enums:
|
|
42
|
+
ImageFileFormatEnum:
|
|
43
|
+
description: Common image file formats
|
|
44
|
+
permissible_values:
|
|
45
|
+
JPEG:
|
|
46
|
+
description: Joint Photographic Experts Group
|
|
47
|
+
title: JPEG
|
|
48
|
+
meaning: EDAM:format_3579
|
|
49
|
+
aliases:
|
|
50
|
+
- JPG
|
|
51
|
+
annotations:
|
|
52
|
+
extension: .jpg, .jpeg
|
|
53
|
+
mime_type: image/jpeg
|
|
54
|
+
compression: lossy
|
|
55
|
+
PNG:
|
|
56
|
+
description: Portable Network Graphics
|
|
57
|
+
meaning: EDAM:format_3603
|
|
58
|
+
annotations:
|
|
59
|
+
extension: .png
|
|
60
|
+
mime_type: image/png
|
|
61
|
+
compression: lossless
|
|
62
|
+
GIF:
|
|
63
|
+
description: Graphics Interchange Format
|
|
64
|
+
meaning: EDAM:format_3467
|
|
65
|
+
annotations:
|
|
66
|
+
extension: .gif
|
|
67
|
+
mime_type: image/gif
|
|
68
|
+
features: animation support
|
|
69
|
+
BMP:
|
|
70
|
+
description: Bitmap Image File
|
|
71
|
+
meaning: EDAM:format_3592
|
|
72
|
+
annotations:
|
|
73
|
+
extension: .bmp
|
|
74
|
+
mime_type: image/bmp
|
|
75
|
+
compression: uncompressed
|
|
76
|
+
TIFF:
|
|
77
|
+
description: Tagged Image File Format
|
|
78
|
+
meaning: EDAM:format_3591
|
|
79
|
+
annotations:
|
|
80
|
+
extension: .tif, .tiff
|
|
81
|
+
mime_type: image/tiff
|
|
82
|
+
use: professional photography, scanning
|
|
83
|
+
SVG:
|
|
84
|
+
description: Scalable Vector Graphics
|
|
85
|
+
meaning: EDAM:format_3604
|
|
86
|
+
annotations:
|
|
87
|
+
extension: .svg
|
|
88
|
+
mime_type: image/svg+xml
|
|
89
|
+
type: vector
|
|
90
|
+
WEBP:
|
|
91
|
+
description: WebP image format
|
|
92
|
+
annotations:
|
|
93
|
+
extension: .webp
|
|
94
|
+
mime_type: image/webp
|
|
95
|
+
compression: lossy and lossless
|
|
96
|
+
HEIC:
|
|
97
|
+
description: High Efficiency Image Container
|
|
98
|
+
annotations:
|
|
99
|
+
extension: .heic, .heif
|
|
100
|
+
mime_type: image/heic
|
|
101
|
+
use: Apple devices
|
|
102
|
+
RAW:
|
|
103
|
+
description: Raw image format
|
|
104
|
+
annotations:
|
|
105
|
+
extension: .raw, .cr2, .nef, .arw
|
|
106
|
+
type: unprocessed sensor data
|
|
107
|
+
ICO:
|
|
108
|
+
description: Icon file format
|
|
109
|
+
annotations:
|
|
110
|
+
extension: .ico
|
|
111
|
+
mime_type: image/x-icon
|
|
112
|
+
use: favicons, app icons
|
|
113
|
+
DocumentFormatEnum:
|
|
114
|
+
description: Document and text file formats
|
|
115
|
+
permissible_values:
|
|
116
|
+
PDF:
|
|
117
|
+
description: Portable Document Format
|
|
118
|
+
meaning: EDAM:format_3508
|
|
119
|
+
annotations:
|
|
120
|
+
extension: .pdf
|
|
121
|
+
mime_type: application/pdf
|
|
122
|
+
creator: Adobe
|
|
123
|
+
DOCX:
|
|
124
|
+
description: Microsoft Word Open XML
|
|
125
|
+
annotations:
|
|
126
|
+
extension: .docx
|
|
127
|
+
mime_type: application/vnd.openxmlformats-officedocument.wordprocessingml.document
|
|
128
|
+
application: Microsoft Word
|
|
129
|
+
DOC:
|
|
130
|
+
description: Microsoft Word legacy format
|
|
131
|
+
annotations:
|
|
132
|
+
extension: .doc
|
|
133
|
+
mime_type: application/msword
|
|
134
|
+
application: Microsoft Word (legacy)
|
|
135
|
+
TXT:
|
|
136
|
+
description: Plain text file
|
|
137
|
+
title: TXT
|
|
138
|
+
meaning: EDAM:format_1964
|
|
139
|
+
aliases:
|
|
140
|
+
- plain text format (unformatted)
|
|
141
|
+
annotations:
|
|
142
|
+
extension: .txt
|
|
143
|
+
mime_type: text/plain
|
|
144
|
+
encoding: UTF-8, ASCII
|
|
145
|
+
RTF:
|
|
146
|
+
description: Rich Text Format
|
|
147
|
+
annotations:
|
|
148
|
+
extension: .rtf
|
|
149
|
+
mime_type: application/rtf
|
|
150
|
+
ODT:
|
|
151
|
+
description: OpenDocument Text
|
|
152
|
+
annotations:
|
|
153
|
+
extension: .odt
|
|
154
|
+
mime_type: application/vnd.oasis.opendocument.text
|
|
155
|
+
application: LibreOffice, OpenOffice
|
|
156
|
+
LATEX:
|
|
157
|
+
description: LaTeX document
|
|
158
|
+
title: LATEX
|
|
159
|
+
meaning: EDAM:format_3817
|
|
160
|
+
aliases:
|
|
161
|
+
- latex
|
|
162
|
+
- LaTeX
|
|
163
|
+
annotations:
|
|
164
|
+
extension: .tex
|
|
165
|
+
mime_type: application/x-latex
|
|
166
|
+
use: scientific documents
|
|
167
|
+
MARKDOWN:
|
|
168
|
+
description: Markdown formatted text
|
|
169
|
+
annotations:
|
|
170
|
+
extension: .md, .markdown
|
|
171
|
+
mime_type: text/markdown
|
|
172
|
+
HTML:
|
|
173
|
+
description: HyperText Markup Language
|
|
174
|
+
meaning: EDAM:format_2331
|
|
175
|
+
annotations:
|
|
176
|
+
extension: .html, .htm
|
|
177
|
+
mime_type: text/html
|
|
178
|
+
XML:
|
|
179
|
+
description: Extensible Markup Language
|
|
180
|
+
meaning: EDAM:format_2332
|
|
181
|
+
annotations:
|
|
182
|
+
extension: .xml
|
|
183
|
+
mime_type: application/xml
|
|
184
|
+
EPUB:
|
|
185
|
+
description: Electronic Publication
|
|
186
|
+
annotations:
|
|
187
|
+
extension: .epub
|
|
188
|
+
mime_type: application/epub+zip
|
|
189
|
+
use: e-books
|
|
190
|
+
DataFormatEnum:
|
|
191
|
+
description: Structured data file formats
|
|
192
|
+
permissible_values:
|
|
193
|
+
JSON:
|
|
194
|
+
description: JavaScript Object Notation
|
|
195
|
+
meaning: EDAM:format_3464
|
|
196
|
+
annotations:
|
|
197
|
+
extension: .json
|
|
198
|
+
mime_type: application/json
|
|
199
|
+
type: text-based
|
|
200
|
+
CSV:
|
|
201
|
+
description: Comma-Separated Values
|
|
202
|
+
title: CSV
|
|
203
|
+
meaning: EDAM:format_3752
|
|
204
|
+
annotations:
|
|
205
|
+
extension: .csv
|
|
206
|
+
mime_type: text/csv
|
|
207
|
+
delimiter: comma
|
|
208
|
+
TSV:
|
|
209
|
+
description: Tab-Separated Values
|
|
210
|
+
meaning: EDAM:format_3475
|
|
211
|
+
annotations:
|
|
212
|
+
extension: .tsv, .tab
|
|
213
|
+
mime_type: text/tab-separated-values
|
|
214
|
+
delimiter: tab
|
|
215
|
+
YAML:
|
|
216
|
+
description: YAML Ain't Markup Language
|
|
217
|
+
meaning: EDAM:format_3750
|
|
218
|
+
annotations:
|
|
219
|
+
extension: .yaml, .yml
|
|
220
|
+
mime_type: application/x-yaml
|
|
221
|
+
TOML:
|
|
222
|
+
description: Tom's Obvious Minimal Language
|
|
223
|
+
annotations:
|
|
224
|
+
extension: .toml
|
|
225
|
+
mime_type: application/toml
|
|
226
|
+
use: configuration files
|
|
227
|
+
XLSX:
|
|
228
|
+
description: Microsoft Excel Open XML
|
|
229
|
+
annotations:
|
|
230
|
+
extension: .xlsx
|
|
231
|
+
mime_type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet
|
|
232
|
+
XLS:
|
|
233
|
+
description: Microsoft Excel legacy format
|
|
234
|
+
annotations:
|
|
235
|
+
extension: .xls
|
|
236
|
+
mime_type: application/vnd.ms-excel
|
|
237
|
+
ODS:
|
|
238
|
+
description: OpenDocument Spreadsheet
|
|
239
|
+
annotations:
|
|
240
|
+
extension: .ods
|
|
241
|
+
mime_type: application/vnd.oasis.opendocument.spreadsheet
|
|
242
|
+
PARQUET:
|
|
243
|
+
description: Apache Parquet columnar format
|
|
244
|
+
annotations:
|
|
245
|
+
extension: .parquet
|
|
246
|
+
mime_type: application/parquet
|
|
247
|
+
type: columnar storage
|
|
248
|
+
AVRO:
|
|
249
|
+
description: Apache Avro data serialization
|
|
250
|
+
annotations:
|
|
251
|
+
extension: .avro
|
|
252
|
+
mime_type: application/avro
|
|
253
|
+
features: schema evolution
|
|
254
|
+
HDF5:
|
|
255
|
+
description: Hierarchical Data Format version 5
|
|
256
|
+
meaning: EDAM:format_3590
|
|
257
|
+
annotations:
|
|
258
|
+
extension: .h5, .hdf5
|
|
259
|
+
mime_type: application/x-hdf
|
|
260
|
+
use: scientific data
|
|
261
|
+
NETCDF:
|
|
262
|
+
description: Network Common Data Form
|
|
263
|
+
meaning: EDAM:format_3650
|
|
264
|
+
annotations:
|
|
265
|
+
extension: .nc, .nc4
|
|
266
|
+
mime_type: application/x-netcdf
|
|
267
|
+
use: array-oriented scientific data
|
|
268
|
+
SQLITE:
|
|
269
|
+
description: SQLite database
|
|
270
|
+
annotations:
|
|
271
|
+
extension: .db, .sqlite, .sqlite3
|
|
272
|
+
mime_type: application/x-sqlite3
|
|
273
|
+
type: embedded database
|
|
274
|
+
ArchiveFormatEnum:
|
|
275
|
+
description: Archive and compression formats
|
|
276
|
+
permissible_values:
|
|
277
|
+
ZIP:
|
|
278
|
+
description: ZIP archive
|
|
279
|
+
annotations:
|
|
280
|
+
extension: .zip
|
|
281
|
+
mime_type: application/zip
|
|
282
|
+
compression: DEFLATE
|
|
283
|
+
TAR:
|
|
284
|
+
description: Tape Archive
|
|
285
|
+
annotations:
|
|
286
|
+
extension: .tar
|
|
287
|
+
mime_type: application/x-tar
|
|
288
|
+
compression: none (archive only)
|
|
289
|
+
GZIP:
|
|
290
|
+
description: GNU zip
|
|
291
|
+
annotations:
|
|
292
|
+
extension: .gz
|
|
293
|
+
mime_type: application/gzip
|
|
294
|
+
compression: DEFLATE
|
|
295
|
+
TAR_GZ:
|
|
296
|
+
description: Gzipped tar archive
|
|
297
|
+
annotations:
|
|
298
|
+
extension: .tar.gz, .tgz
|
|
299
|
+
mime_type: application/x-gtar
|
|
300
|
+
compression: tar + gzip
|
|
301
|
+
BZIP2:
|
|
302
|
+
description: Bzip2 compression
|
|
303
|
+
annotations:
|
|
304
|
+
extension: .bz2
|
|
305
|
+
mime_type: application/x-bzip2
|
|
306
|
+
compression: Burrows-Wheeler
|
|
307
|
+
TAR_BZ2:
|
|
308
|
+
description: Bzip2 compressed tar archive
|
|
309
|
+
annotations:
|
|
310
|
+
extension: .tar.bz2, .tbz2
|
|
311
|
+
mime_type: application/x-bzip2
|
|
312
|
+
XZ:
|
|
313
|
+
description: XZ compression
|
|
314
|
+
annotations:
|
|
315
|
+
extension: .xz
|
|
316
|
+
mime_type: application/x-xz
|
|
317
|
+
compression: LZMA2
|
|
318
|
+
TAR_XZ:
|
|
319
|
+
description: XZ compressed tar archive
|
|
320
|
+
annotations:
|
|
321
|
+
extension: .tar.xz, .txz
|
|
322
|
+
mime_type: application/x-xz
|
|
323
|
+
SEVEN_ZIP:
|
|
324
|
+
description: 7-Zip archive
|
|
325
|
+
annotations:
|
|
326
|
+
extension: .7z
|
|
327
|
+
mime_type: application/x-7z-compressed
|
|
328
|
+
compression: LZMA
|
|
329
|
+
RAR:
|
|
330
|
+
description: RAR archive
|
|
331
|
+
annotations:
|
|
332
|
+
extension: .rar
|
|
333
|
+
mime_type: application/vnd.rar
|
|
334
|
+
proprietary: 'true'
|
|
335
|
+
VideoFormatEnum:
|
|
336
|
+
description: Video file formats
|
|
337
|
+
permissible_values:
|
|
338
|
+
MP4:
|
|
339
|
+
description: MPEG-4 Part 14
|
|
340
|
+
annotations:
|
|
341
|
+
extension: .mp4
|
|
342
|
+
mime_type: video/mp4
|
|
343
|
+
codec: H.264, H.265
|
|
344
|
+
AVI:
|
|
345
|
+
description: Audio Video Interleave
|
|
346
|
+
annotations:
|
|
347
|
+
extension: .avi
|
|
348
|
+
mime_type: video/x-msvideo
|
|
349
|
+
creator: Microsoft
|
|
350
|
+
MOV:
|
|
351
|
+
description: QuickTime Movie
|
|
352
|
+
annotations:
|
|
353
|
+
extension: .mov
|
|
354
|
+
mime_type: video/quicktime
|
|
355
|
+
creator: Apple
|
|
356
|
+
MKV:
|
|
357
|
+
description: Matroska Video
|
|
358
|
+
annotations:
|
|
359
|
+
extension: .mkv
|
|
360
|
+
mime_type: video/x-matroska
|
|
361
|
+
features: multiple tracks
|
|
362
|
+
WEBM:
|
|
363
|
+
description: WebM video
|
|
364
|
+
annotations:
|
|
365
|
+
extension: .webm
|
|
366
|
+
mime_type: video/webm
|
|
367
|
+
codec: VP8, VP9
|
|
368
|
+
FLV:
|
|
369
|
+
description: Flash Video
|
|
370
|
+
annotations:
|
|
371
|
+
extension: .flv
|
|
372
|
+
mime_type: video/x-flv
|
|
373
|
+
status: legacy
|
|
374
|
+
WMV:
|
|
375
|
+
description: Windows Media Video
|
|
376
|
+
annotations:
|
|
377
|
+
extension: .wmv
|
|
378
|
+
mime_type: video/x-ms-wmv
|
|
379
|
+
creator: Microsoft
|
|
380
|
+
MPEG:
|
|
381
|
+
description: Moving Picture Experts Group
|
|
382
|
+
annotations:
|
|
383
|
+
extension: .mpeg, .mpg
|
|
384
|
+
mime_type: video/mpeg
|
|
385
|
+
AudioFormatEnum:
|
|
386
|
+
description: Audio file formats
|
|
387
|
+
permissible_values:
|
|
388
|
+
MP3:
|
|
389
|
+
description: MPEG Audio Layer 3
|
|
390
|
+
annotations:
|
|
391
|
+
extension: .mp3
|
|
392
|
+
mime_type: audio/mpeg
|
|
393
|
+
compression: lossy
|
|
394
|
+
WAV:
|
|
395
|
+
description: Waveform Audio File Format
|
|
396
|
+
annotations:
|
|
397
|
+
extension: .wav
|
|
398
|
+
mime_type: audio/wav
|
|
399
|
+
compression: uncompressed
|
|
400
|
+
FLAC:
|
|
401
|
+
description: Free Lossless Audio Codec
|
|
402
|
+
annotations:
|
|
403
|
+
extension: .flac
|
|
404
|
+
mime_type: audio/flac
|
|
405
|
+
compression: lossless
|
|
406
|
+
AAC:
|
|
407
|
+
description: Advanced Audio Coding
|
|
408
|
+
annotations:
|
|
409
|
+
extension: .aac
|
|
410
|
+
mime_type: audio/aac
|
|
411
|
+
compression: lossy
|
|
412
|
+
OGG:
|
|
413
|
+
description: Ogg Vorbis
|
|
414
|
+
annotations:
|
|
415
|
+
extension: .ogg
|
|
416
|
+
mime_type: audio/ogg
|
|
417
|
+
compression: lossy
|
|
418
|
+
M4A:
|
|
419
|
+
description: MPEG-4 Audio
|
|
420
|
+
annotations:
|
|
421
|
+
extension: .m4a
|
|
422
|
+
mime_type: audio/mp4
|
|
423
|
+
compression: lossy or lossless
|
|
424
|
+
WMA:
|
|
425
|
+
description: Windows Media Audio
|
|
426
|
+
annotations:
|
|
427
|
+
extension: .wma
|
|
428
|
+
mime_type: audio/x-ms-wma
|
|
429
|
+
creator: Microsoft
|
|
430
|
+
OPUS:
|
|
431
|
+
description: Opus Interactive Audio Codec
|
|
432
|
+
annotations:
|
|
433
|
+
extension: .opus
|
|
434
|
+
mime_type: audio/opus
|
|
435
|
+
use: streaming, VoIP
|
|
436
|
+
AIFF:
|
|
437
|
+
description: Audio Interchange File Format
|
|
438
|
+
annotations:
|
|
439
|
+
extension: .aiff, .aif
|
|
440
|
+
mime_type: audio/aiff
|
|
441
|
+
creator: Apple
|
|
442
|
+
ProgrammingLanguageFileEnum:
|
|
443
|
+
description: Programming language source file extensions
|
|
444
|
+
permissible_values:
|
|
445
|
+
PYTHON:
|
|
446
|
+
description: Python source file
|
|
447
|
+
annotations:
|
|
448
|
+
extension: .py
|
|
449
|
+
mime_type: text/x-python
|
|
450
|
+
JAVASCRIPT:
|
|
451
|
+
description: JavaScript source file
|
|
452
|
+
annotations:
|
|
453
|
+
extension: .js
|
|
454
|
+
mime_type: text/javascript
|
|
455
|
+
TYPESCRIPT:
|
|
456
|
+
description: TypeScript source file
|
|
457
|
+
annotations:
|
|
458
|
+
extension: .ts
|
|
459
|
+
mime_type: text/typescript
|
|
460
|
+
JAVA:
|
|
461
|
+
description: Java source file
|
|
462
|
+
annotations:
|
|
463
|
+
extension: .java
|
|
464
|
+
mime_type: text/x-java-source
|
|
465
|
+
C:
|
|
466
|
+
description: C source file
|
|
467
|
+
annotations:
|
|
468
|
+
extension: .c
|
|
469
|
+
mime_type: text/x-c
|
|
470
|
+
CPP:
|
|
471
|
+
description: C++ source file
|
|
472
|
+
annotations:
|
|
473
|
+
extension: .cpp, .cc, .cxx
|
|
474
|
+
mime_type: text/x-c++
|
|
475
|
+
C_SHARP:
|
|
476
|
+
description: C# source file
|
|
477
|
+
annotations:
|
|
478
|
+
extension: .cs
|
|
479
|
+
mime_type: text/x-csharp
|
|
480
|
+
GO:
|
|
481
|
+
description: Go source file
|
|
482
|
+
annotations:
|
|
483
|
+
extension: .go
|
|
484
|
+
mime_type: text/x-go
|
|
485
|
+
RUST:
|
|
486
|
+
description: Rust source file
|
|
487
|
+
annotations:
|
|
488
|
+
extension: .rs
|
|
489
|
+
mime_type: text/x-rust
|
|
490
|
+
RUBY:
|
|
491
|
+
description: Ruby source file
|
|
492
|
+
annotations:
|
|
493
|
+
extension: .rb
|
|
494
|
+
mime_type: text/x-ruby
|
|
495
|
+
PHP:
|
|
496
|
+
description: PHP source file
|
|
497
|
+
annotations:
|
|
498
|
+
extension: .php
|
|
499
|
+
mime_type: text/x-php
|
|
500
|
+
SWIFT:
|
|
501
|
+
description: Swift source file
|
|
502
|
+
annotations:
|
|
503
|
+
extension: .swift
|
|
504
|
+
mime_type: text/x-swift
|
|
505
|
+
KOTLIN:
|
|
506
|
+
description: Kotlin source file
|
|
507
|
+
annotations:
|
|
508
|
+
extension: .kt
|
|
509
|
+
mime_type: text/x-kotlin
|
|
510
|
+
R:
|
|
511
|
+
description: R source file
|
|
512
|
+
annotations:
|
|
513
|
+
extension: .r, .R
|
|
514
|
+
mime_type: text/x-r
|
|
515
|
+
MATLAB:
|
|
516
|
+
description: MATLAB source file
|
|
517
|
+
annotations:
|
|
518
|
+
extension: .m
|
|
519
|
+
mime_type: text/x-matlab
|
|
520
|
+
JULIA:
|
|
521
|
+
description: Julia source file
|
|
522
|
+
annotations:
|
|
523
|
+
extension: .jl
|
|
524
|
+
mime_type: text/x-julia
|
|
525
|
+
SHELL:
|
|
526
|
+
description: Shell script
|
|
527
|
+
annotations:
|
|
528
|
+
extension: .sh, .bash
|
|
529
|
+
mime_type: text/x-shellscript
|
|
530
|
+
NetworkProtocolEnum:
|
|
531
|
+
description: Network communication protocols
|
|
532
|
+
permissible_values:
|
|
533
|
+
HTTP:
|
|
534
|
+
description: Hypertext Transfer Protocol
|
|
535
|
+
annotations:
|
|
536
|
+
port: '80'
|
|
537
|
+
layer: application
|
|
538
|
+
version: 1.0, 1.1, 2, 3
|
|
539
|
+
HTTPS:
|
|
540
|
+
description: HTTP Secure
|
|
541
|
+
annotations:
|
|
542
|
+
port: '443'
|
|
543
|
+
layer: application
|
|
544
|
+
encryption: TLS/SSL
|
|
545
|
+
FTP:
|
|
546
|
+
description: File Transfer Protocol
|
|
547
|
+
annotations:
|
|
548
|
+
port: '21'
|
|
549
|
+
layer: application
|
|
550
|
+
use: file transfer
|
|
551
|
+
SFTP:
|
|
552
|
+
description: SSH File Transfer Protocol
|
|
553
|
+
annotations:
|
|
554
|
+
port: '22'
|
|
555
|
+
layer: application
|
|
556
|
+
encryption: SSH
|
|
557
|
+
SSH:
|
|
558
|
+
description: Secure Shell
|
|
559
|
+
annotations:
|
|
560
|
+
port: '22'
|
|
561
|
+
layer: application
|
|
562
|
+
use: secure remote access
|
|
563
|
+
TELNET:
|
|
564
|
+
description: Telnet protocol
|
|
565
|
+
annotations:
|
|
566
|
+
port: '23'
|
|
567
|
+
layer: application
|
|
568
|
+
security: unencrypted
|
|
569
|
+
SMTP:
|
|
570
|
+
description: Simple Mail Transfer Protocol
|
|
571
|
+
annotations:
|
|
572
|
+
port: 25, 587
|
|
573
|
+
layer: application
|
|
574
|
+
use: email sending
|
|
575
|
+
POP3:
|
|
576
|
+
description: Post Office Protocol version 3
|
|
577
|
+
annotations:
|
|
578
|
+
port: 110, 995
|
|
579
|
+
layer: application
|
|
580
|
+
use: email retrieval
|
|
581
|
+
IMAP:
|
|
582
|
+
description: Internet Message Access Protocol
|
|
583
|
+
annotations:
|
|
584
|
+
port: 143, 993
|
|
585
|
+
layer: application
|
|
586
|
+
use: email access
|
|
587
|
+
DNS:
|
|
588
|
+
description: Domain Name System
|
|
589
|
+
annotations:
|
|
590
|
+
port: '53'
|
|
591
|
+
layer: application
|
|
592
|
+
use: name resolution
|
|
593
|
+
DHCP:
|
|
594
|
+
description: Dynamic Host Configuration Protocol
|
|
595
|
+
annotations:
|
|
596
|
+
port: 67, 68
|
|
597
|
+
layer: application
|
|
598
|
+
use: IP assignment
|
|
599
|
+
TCP:
|
|
600
|
+
description: Transmission Control Protocol
|
|
601
|
+
annotations:
|
|
602
|
+
layer: transport
|
|
603
|
+
type: connection-oriented
|
|
604
|
+
UDP:
|
|
605
|
+
description: User Datagram Protocol
|
|
606
|
+
annotations:
|
|
607
|
+
layer: transport
|
|
608
|
+
type: connectionless
|
|
609
|
+
WEBSOCKET:
|
|
610
|
+
description: WebSocket protocol
|
|
611
|
+
annotations:
|
|
612
|
+
port: 80, 443
|
|
613
|
+
layer: application
|
|
614
|
+
use: bidirectional communication
|
|
615
|
+
MQTT:
|
|
616
|
+
description: Message Queuing Telemetry Transport
|
|
617
|
+
annotations:
|
|
618
|
+
port: 1883, 8883
|
|
619
|
+
layer: application
|
|
620
|
+
use: IoT messaging
|
|
621
|
+
AMQP:
|
|
622
|
+
description: Advanced Message Queuing Protocol
|
|
623
|
+
annotations:
|
|
624
|
+
port: '5672'
|
|
625
|
+
layer: application
|
|
626
|
+
use: message queuing
|
|
627
|
+
GRPC:
|
|
628
|
+
description: gRPC Remote Procedure Call
|
|
629
|
+
annotations:
|
|
630
|
+
transport: HTTP/2
|
|
631
|
+
use: RPC framework
|