Skip to content

Commit

Permalink
chore(rebuild): RFC-1: note explicit step of needing to adjust Status…
Browse files Browse the repository at this point in the history
… 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
yarikoptic and github-actions[bot] committed Jun 10, 2024
1 parent 2b35700 commit 3e15c05
Show file tree
Hide file tree
Showing 27 changed files with 3,800 additions and 741 deletions.
275 changes: 227 additions & 48 deletions 0.1/index.html

Large diffs are not rendered by default.

112 changes: 112 additions & 0 deletions 0.1/schemas/plate.schema
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"
]
}
1 change: 1 addition & 0 deletions 0.1/schemas/strict_image.schema
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"$id": "https://ngff.openmicroscopy.org/0.1/schemas/strict_image.schema",
"allOf": [
{
"$ref": "https://ngff.openmicroscopy.org/0.1/schemas/image.schema"
Expand Down
47 changes: 47 additions & 0 deletions 0.1/schemas/well.schema
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"
]
}
}
}
Loading

0 comments on commit 3e15c05

Please sign in to comment.