Skip to article frontmatterSkip to article content

well_strict

This document contains JSON examples for well_strict metadata layouts.

well_4fields

well_4fields.json
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
{
  "zarr_format": 3,
  "node_type": "group",
  "attributes": {
    "ome": {
      "version": "0.5",
      "well": {
        "images": [
          {
            "acquisition": 1,
            "path": "0"
          },
          {
            "acquisition": 1,
            "path": "1"
          },
          {
            "acquisition": 2,
            "path": "2"
          },
          {
            "acquisition": 2,
            "path": "3"
          }
        ]
      }
    }
  }
}

well_2fields

well_2fields.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
  "zarr_format": 3,
  "node_type": "group",
  "attributes": {
    "ome": {
      "version": "0.5",
      "well": {
        "images": [
          {
            "acquisition": 0,
            "path": "0"
          },
          {
            "acquisition": 3,
            "path": "1"
          }
        ]
      }
    }
  }
}