forked from ome/ngff-spec
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbf2raw.schema
More file actions
32 lines (32 loc) · 861 Bytes
/
bf2raw.schema
File metadata and controls
32 lines (32 loc) · 861 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://ngff.openmicroscopy.org/0.6dev2/schemas/bf2raw.schema",
"title": "OME-Zarr container produced by bioformats2raw",
"description": "The zarr.json attributes key",
"type": "object",
"properties": {
"ome": {
"description": "The versioned OME-Zarr Metadata namespace",
"type": "object",
"properties": {
"bioformats2raw.layout": {
"description": "The top-level identifier metadata added by bioformats2raw",
"type": "number",
"enum": [
3
]
},
"version": {
"$ref": "https://ngff.openmicroscopy.org/0.6dev2/schemas/_version.schema"
}
},
"required": [
"bioformats2raw.layout",
"version"
]
}
},
"required": [
"ome"
]
}