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