Ballerina · Schema
PackageVersion
PackageVersion schema from Ballerina Central API
IntegrationsOrchestrationsOpen SourceProgramming Language
Properties
| Name | Type | Description |
|---|---|---|
| organization | string | |
| name | string | |
| version | string | |
| platform | string | |
| ballerinaVersion | string | |
| description | string | |
| createdDate | string | |
| modules | array | |
| dependencies | array |
JSON Schema
{
"$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"
}
}
}
}
}
}