{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PaginatedDatabaseEngineList", "title": "PaginatedDatabaseEngineList", "allOf": [ { "$ref": "#/components/schemas/Pagination" }, { "type": "object", "properties": { "data": { "type": "array", "items": { "type": "object", "properties": { "engine": { "type": "string" }, "id": { "type": "string" }, "version": { "type": "string" } } } } } } ] }