{ "$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-version-schema.json", "title": "PackageVersion", "description": "PackageVersion schema from Ballerina Central API", "type": "object", "properties": { "organization": { "type": "string" }, "name": { "type": "string" }, "version": { "type": "string" }, "platform": { "type": "string" }, "ballerinaVersion": { "type": "string" }, "description": { "type": "string" }, "createdDate": { "type": "string", "format": "date-time" }, "modules": { "type": "array", "items": { "$ref": "#/components/schemas/Module" } }, "dependencies": { "type": "array", "items": { "type": "object", "properties": { "org": { "type": "string" }, "name": { "type": "string" }, "version": { "type": "string" } } } } } }