Skip to content

Commit e8c7e2d

Browse files
authored
adding compression (#586)
* adding compression * metadata schema bump
1 parent 8885f2b commit e8c7e2d

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

examples/processing.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"describedBy": "https://raw.githubusercontent.com/AllenNeuralDynamics/aind-data-schema/main/src/aind_data_schema/processing.py",
3-
"schema_version": "0.3.0",
3+
"schema_version": "0.3.1",
44
"processing_pipeline": {
55
"data_processes": [
66
{

src/aind_data_schema/metadata.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class Metadata(AindCoreModel):
3737
"""The records in the Data Asset Collection needs to contain certain fields
3838
to easily query and index the data."""
3939

40-
schema_version: str = Field("0.0.5", description="schema version", title="Version", const=True)
40+
schema_version: str = Field("0.0.6", description="schema version", title="Version", const=True)
4141

4242
id: UUID = Field(
4343
default_factory=uuid4,

src/aind_data_schema/processing.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ class ProcessName(Enum):
1616
"""Data processing type labels"""
1717

1818
ANALYSIS = "Analysis"
19+
COMPRESSION = "Compression"
1920
DENOISING = "Denoising"
2021
EPHYS_CURATION = "Ephys curation"
2122
EPHYS_POSTPROCESSING = "Ephys postprocessing"
@@ -97,7 +98,7 @@ class Processing(AindCoreModel):
9798
"""Description of all processes run on data"""
9899

99100
schema_version: str = Field(
100-
"0.3.0",
101+
"0.3.1",
101102
description="Schema version",
102103
title="Schema version",
103104
const=True,

0 commit comments

Comments
 (0)