Skip to content

Commit

Permalink
pressure array
Browse files Browse the repository at this point in the history
  • Loading branch information
rossella.aversa committed Apr 23, 2024
1 parent ec477b7 commit 4387863
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 13 deletions.
27 changes: 16 additions & 11 deletions docs/precursor_interface/precursor_schema.js
Original file line number Diff line number Diff line change
Expand Up @@ -1080,17 +1080,22 @@ var dataModel = {
"gasAtmosphereOptions":
{
"description": "(Optional) - Type of inert gas required around the Precursor to handle it, due e.g. to the presence of a reactive top layer.",
"type":"string",
"enum":
[
"Not applicable",
"air",
"dry air",
"vacuum",
"Ar",
"N",
"other (please add in the comments)"
]
"type":"array",
"uniqueItems": true,
"items":
{
"type": "string",
"enum":
[
"Not applicable",
"air",
"dry air",
"vacuum",
"Ar",
"N",
"other (please add in the comments)"
]
}
},
"otherGasAtmosphere": {"type": "string"}
}
Expand Down
9 changes: 7 additions & 2 deletions docs/precursor_interface/ui-schema.js
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,11 @@ var uiSchema = {
{"title": "Clean Room Conditions", "key": "precursorHandlingPrecaution.precursorHandling.cleanRoomConditions"},
{"title": "Min Humidity", "key": "precursorHandlingPrecaution.precursorHandling.minHumidity"},
{"title": "Max Humidity", "key": "precursorHandlingPrecaution.precursorHandling.maxHumidity"},
{"title": "Gas Atmosphere", "key": "precursorHandlingPrecaution.precursorHandling.gasAtmosphere.gasAtmosphereOptions", "type": "radios"},
{
"title": "Gas Atmosphere",
"key": "precursorHandlingPrecaution.precursorHandling.gasAtmosphere.gasAtmosphereOptions",
"type": "checkboxes"
},
{"title": "Other Gas Atmosphere","key": "precursorHandlingPrecaution.precursorHandling.gasAtmosphere.otherGasAtmosphere"},
{"title": "Additional Notes", "key": "precursorHandlingPrecaution.precursorHandling.additionalNotes"},
]
Expand Down Expand Up @@ -426,7 +430,8 @@ var uiSchema = {
{
"title": "Storage Gas Atmosphere",
"key": "precursorHandlingPrecaution.storageConditions.storageGasAtmosphere.storageGasAtmosphereOptions",
"type": "checkboxes"},
"type": "checkboxes"
},
{"title": "Other Storage Gas Atmosphere","key": "precursorHandlingPrecaution.storageConditions.storageGasAtmosphere.otherStorageGasAtmosphere"},
{
"title": "Storage Equipment",
Expand Down

0 comments on commit 4387863

Please sign in to comment.