{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://api-evangelist.github.io/benchling/json-schema/Project.json", "title": "Project", "properties": { "archiveRecord": { "allOf": [ { "$ref": "#/components/schemas/ArchiveRecord" } ], "nullable": true }, "id": { "type": "string" }, "name": { "type": "string" }, "owner": { "anyOf": [ { "$ref": "#/components/schemas/Organization" }, { "$ref": "#/components/schemas/UserSummary" } ] } }, "type": "object" }