Skip to content

Commit

Permalink
schema structure changes
Browse files Browse the repository at this point in the history
  • Loading branch information
caila-marashaj committed Aug 26, 2024
1 parent 88a2b3f commit 008b36e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion shared-data/labware/schemas/3.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@
},
"CircularCrossSection": {
"type": "object",
"required": ["shape", "diameter"],
"properties": {
"shape": {
"type": "string",
Expand All @@ -79,6 +80,7 @@
},
"RectangularCrossSection": {
"type": "object",
"required": ["shape", "xDimension", "yDimension"],
"properties": {
"shape": {
"type": "string",
Expand All @@ -94,6 +96,7 @@
},
"SphericalSegment": {
"type": "object",
"required": ["shape", "radiusOfCurvature", "depth"],
"properties": {
"shape": {
"type": "string",
Expand Down Expand Up @@ -462,7 +465,7 @@
"description": "Recommended Z-height, from labware bottom to the center of gripper pads, when gripping the labware."
},
"innerLabwareGeometry": {
"type": "object",
"type": ["object", "null"],
"description": "A dictionary holding all unique inner well geometries in a labware.",
"additionalProperties": {
"$ref": "#/definitions/InnerWellGeometry"
Expand Down
2 changes: 1 addition & 1 deletion shared-data/python/tests/labware/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ def get_ot_defs_3() -> List[Tuple[str, int]]:
Path(__file__).parent / ".." / ".." / ".." / "labware" / "definitions" / "3"
).glob("**/*.json")
return [(f.parent.name, int(f.stem)) for f in def_files]
"""
"""

0 comments on commit 008b36e

Please sign in to comment.