Ballerina · Schema
Package
Package schema from Ballerina Central API
IntegrationsOrchestrationsOpen SourceProgramming Language
Properties
| Name | Type | Description |
|---|---|---|
| organization | string | |
| name | string | |
| version | string | |
| description | string | |
| pullCount | integer | |
| createdDate | string | |
| keywords | array | |
| license | string | |
| authors | array | |
| repositoryURL | string | |
| readme | string | |
| modules | array | |
| versions | 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-schema.json",
"title": "Package",
"description": "Package schema from Ballerina Central API",
"type": "object",
"properties": {
"organization": {
"type": "string"
},
"name": {
"type": "string"
},
"version": {
"type": "string"
},
"description": {
"type": "string"
},
"pullCount": {
"type": "integer"
},
"createdDate": {
"type": "string",
"format": "date-time"
},
"keywords": {
"type": "array",
"items": {
"type": "string"
}
},
"license": {
"type": "string"
},
"authors": {
"type": "array",
"items": {
"type": "string"
}
},
"repositoryURL": {
"type": "string",
"format": "uri"
},
"readme": {
"type": "string"
},
"modules": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Module"
}
},
"versions": {
"type": "array",
"items": {
"type": "string"
}
}
}
}