{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://api-evangelist.github.io/benchling/json-schema/FeatureLibrary.json", "title": "FeatureLibrary", "allOf": [ { "$ref": "#/components/schemas/FeatureLibraryBase" }, { "properties": { "createdAt": { "description": "DateTime the Feature Library was created", "format": "date-time", "type": "string" }, "id": { "description": "The id of the feature library", "example": "featlib_6ZVdX98t", "type": "string" }, "modifiedAt": { "description": "DateTime the Feature Library was last modified", "format": "date-time", "type": "string" }, "owner": { "anyOf": [ { "$ref": "#/components/schemas/Organization" }, { "$ref": "#/components/schemas/UserSummary" } ] }, "webURL": { "description": "The Benchling web UI url to view the Feature Library", "format": "uri", "type": "string" } } } ], "description": "A feature library", "type": "object" }