{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://api-evangelist.github.io/benchling/json-schema/FeaturesPaginatedList.json", "title": "FeaturesPaginatedList", "allOf": [ { "$ref": "#/components/schemas/Pagination" }, { "properties": { "features": { "description": "List of features for the page", "items": { "$ref": "#/components/schemas/Feature" }, "type": "array" } } } ], "description": "A paginated list of features", "type": "object" }