{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://api-evangelist.github.io/benchling/json-schema/AssayRunsArchive.json", "title": "AssayRunsArchive", "additionalProperties": false, "description": "The request body for archiving Assay Runs.\n", "properties": { "assayRunIds": { "items": { "type": "string" }, "type": "array" }, "reason": { "description": "The reason for archiving the provided Assay Runs. Accepted reasons may differ based on tenant configuration.\n", "enum": [ "Archived", "Made in error", "Other" ], "type": "string" } }, "required": [ "reason", "assayRunIds" ], "type": "object" }