{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/ballerina/refs/heads/main/json-schema/central-api-package-search-response-schema.json", "title": "PackageSearchResponse", "description": "PackageSearchResponse schema from Ballerina Central API", "type": "object", "properties": { "packages": { "type": "array", "items": { "$ref": "#/components/schemas/PackageSummary" } }, "count": { "type": "integer", "description": "Total number of matching packages" }, "offset": { "type": "integer" }, "limit": { "type": "integer" } } }