well_strict Examples#
This document contains JSON examples for well_strict metadata layouts.
well_4fields#
1{
2 "zarr_format": 3,
3 "node_type": "group",
4 "attributes": {
5 "ome": {
6 "version": "0.6.dev3",
7 "well": {
8 "images": [
9 {
10 "acquisition": 1,
11 "path": "0"
12 },
13 {
14 "acquisition": 1,
15 "path": "1"
16 },
17 {
18 "acquisition": 2,
19 "path": "2"
20 },
21 {
22 "acquisition": 2,
23 "path": "3"
24 }
25 ]
26 }
27 }
28 }
29}
well_2fields#
1{
2 "zarr_format": 3,
3 "node_type": "group",
4 "attributes": {
5 "ome": {
6 "version": "0.6.dev3",
7 "well": {
8 "images": [
9 {
10 "acquisition": 0,
11 "path": "0"
12 },
13 {
14 "acquisition": 3,
15 "path": "1"
16 }
17 ]
18 }
19 }
20 }
21}