{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://api-evangelist.github.io/benchling/json-schema/EntriesArchive.json", "title": "EntriesArchive", "additionalProperties": false, "properties": { "entryIds": { "description": "Array of entry IDs", "items": { "type": "string" }, "type": "array" }, "reason": { "description": "Reason that entries are being archived. One of [\"Made in error\", \"Retired\", \"Other\"].\n", "enum": [ "Made in error", "Retired", "Other" ], "type": "string" } }, "required": [ "entryIds", "reason" ], "type": "object" }