forked from ome/ngff
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(rebuild): RFC-1: note explicit step of needing to adjust Status…
… of RFC upon draft merge To avoid fixup PRs like - ome#244 SHA: a71832a Reason: push, by @yarikoptic Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
- Loading branch information
1 parent
2b35700
commit 3e15c05
Showing
27 changed files
with
3,800 additions
and
741 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,112 @@ | ||
{ | ||
"$schema": "https://json-schema.org/draft/2020-12/schema", | ||
"$id": "https://ngff.openmicroscopy.org/0.1/schemas/plate.schema", | ||
"title": "OME-NGFF plate schema", | ||
"description": "JSON from OME-NGFF Plate .zattrs", | ||
"type": "object", | ||
"properties": { | ||
"plate": { | ||
"type": "object", | ||
"properties": { | ||
"version": { | ||
"type": "string", | ||
"enum": [ | ||
"0.1" | ||
] | ||
}, | ||
"name": { | ||
"type": "string" | ||
}, | ||
"columns": { | ||
"description": "Columns of the Plate grid", | ||
"type": "array", | ||
"items": { | ||
"type": "object", | ||
"properties": { | ||
"name": { | ||
"type": "string" | ||
} | ||
}, | ||
"required": [ | ||
"name" | ||
] | ||
}, | ||
"minItems": 1, | ||
"uniqueItems": true | ||
}, | ||
"rows": { | ||
"description": "Rows of the Plate grid", | ||
"type": "array", | ||
"items": { | ||
"type": "object", | ||
"properties": { | ||
"name": { | ||
"type": "string" | ||
} | ||
}, | ||
"required": [ | ||
"name" | ||
] | ||
}, | ||
"minItems": 1, | ||
"uniqueItems": true | ||
}, | ||
"wells": { | ||
"description": "Rows of the Plate grid", | ||
"type": "array", | ||
"items": { | ||
"type": "object", | ||
"properties": { | ||
"path": { | ||
"type": "string" | ||
} | ||
}, | ||
"required": [ | ||
"path" | ||
] | ||
}, | ||
"minItems": 1, | ||
"uniqueItems": true | ||
}, | ||
"field_count": { | ||
"description": "Maximum number of fields per view across all wells." | ||
}, | ||
"acquisitions": { | ||
"description": "Rows of the Plate grid", | ||
"type": "array", | ||
"items": { | ||
"type": "object", | ||
"properties": { | ||
"id": { | ||
"type": "number" | ||
}, | ||
"maximumfieldcount": { | ||
"type": "number" | ||
}, | ||
"name": { | ||
"type": "string" | ||
}, | ||
"description": { | ||
"type": "string" | ||
}, | ||
"starttime": { | ||
"type": "number" | ||
} | ||
}, | ||
"required": [ | ||
"id" | ||
] | ||
}, | ||
"minItems": 1, | ||
"uniqueItems": true | ||
} | ||
}, | ||
"required": [ | ||
"version", "columns", "rows", "wells" | ||
] | ||
} | ||
}, | ||
"required": [ | ||
"plate" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
{ | ||
"$schema": "https://json-schema.org/draft/2020-12/schema", | ||
"$id": "https://ngff.openmicroscopy.org/0.1/schemas/well.schema", | ||
"title": "OME-NGFF well schema", | ||
"description": "JSON from OME-NGFF .zattrs", | ||
"type": "object", | ||
"properties": { | ||
"well": { | ||
"type": "object", | ||
"properties": { | ||
"images": { | ||
"description": "The fields of view for this well", | ||
"type": "array", | ||
"items": { | ||
"type": "object", | ||
"properties": { | ||
"acquisition": { | ||
"description": "A unique identifier within the context of the plate", | ||
"type": "integer" | ||
}, | ||
"path": { | ||
"description": "The path for this field of view subgroup", | ||
"type": "string", | ||
"pattern": "^[A-Za-z0-9]+$" | ||
} | ||
}, | ||
"required": [ | ||
"path" | ||
] | ||
}, | ||
"minItems": 1, | ||
"uniqueItems": true | ||
}, | ||
"version": { | ||
"description": "The version of the specification", | ||
"type": "string", | ||
"enum": [ | ||
"0.1" | ||
] | ||
} | ||
}, | ||
"required": [ | ||
"images" | ||
] | ||
} | ||
} | ||
} |
Oops, something went wrong.