{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://api-evangelist.github.io/benchling/json-schema/Schema.json", "title": "Schema", "properties": { "archiveRecord": { "allOf": [ { "$ref": "#/components/schemas/ArchiveRecord" } ], "nullable": true }, "fieldDefinitions": { "items": { "oneOf": [ { "$ref": "#/components/schemas/SimpleFieldDefinition" }, { "$ref": "#/components/schemas/IntegerFieldDefinition" }, { "$ref": "#/components/schemas/FloatFieldDefinition" }, { "$ref": "#/components/schemas/DropdownFieldDefinition" }, { "$ref": "#/components/schemas/SchemaLinkFieldDefinition" } ] }, "type": "array" }, "id": { "type": "string" }, "name": { "type": "string" }, "type": { "type": "string" } }, "type": "object" }