{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://api-evangelist.github.io/benchling/json-schema/Folder.json", "title": "Folder", "properties": { "archiveRecord": { "allOf": [ { "$ref": "#/components/schemas/ArchiveRecord" } ], "nullable": true, "readOnly": true }, "id": { "readOnly": true, "type": "string" }, "name": { "type": "string" }, "parentFolderId": { "description": "ID of the parent folder, if it exists", "nullable": true, "type": "string" }, "projectId": { "description": "ID of the containing project", "readOnly": true, "type": "string" } } }