https://github.com/pegasystems/pega-dev-components
Pega Development Components
https://github.com/pegasystems/pega-dev-components
Last synced: 5 months ago
JSON representation
Pega Development Components
- Host: GitHub
- URL: https://github.com/pegasystems/pega-dev-components
- Owner: pegasystems
- Created: 2025-06-18T15:26:00.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2026-01-21T22:18:11.000Z (6 months ago)
- Last Synced: 2026-01-21T23:07:33.970Z (6 months ago)
- Language: HTML
- Homepage: https://pegasystems.github.io/pega-dev-components/
- Size: 81.9 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Security: SECURITY.md
Awesome Lists containing this project
README
# Pegasystems Development Components
This repository hosts the link to the latest version of development components used by the Pega Platform.
To view the list of components: [https://pegasystems.github.io/pega-dev-components](https://pegasystems.github.io/pega-dev-components/)
For API access, use : [https://pegasystems.github.io/pega-dev-components/index.json](https://pegasystems.github.io/pega-dev-components/index.json)
## index.json Schema
The [index.json](https://github.com/pegasystems/pega-dev-components/index.json) file contains information about available packages, their versions, and associated resources.
```json
{
"packages": [
// Array of package definitions
{
"name": "name", // Friendly name of the package to display to user
"package": "package-name", // Name of the package - use dash for word separation - all lowercase (e.g., "blueprint-import")
"versions": [
// Array of available versions for this package
{
// Compatibility with Pega Platform version (e.g., "23.1.0" or "23.1")
// For multi-version support, use a comma separated list like "8.8,23.1,...
"platformVersion": "xx.x.x",
"latestVersion": "x.x.x", // Latest version of this package (e.g., "1.0.1")
"updateDate": "YYYY-MM-DD", // Date when package was last updated
"binaries": [
// Array of downloadable binary files - You should have at least one entry in the array
{
// Name of the binary ("MAIN" is required)
// You can include other types of binaries with link if needed
"name": "binary-name",
"url": "binary-url" // URL to download the binary file
}
],
"documentation": [
// Array of documentation resources
{
// Name of the documentation ("README" is required for documentation)
// You can include other types of documentations and link if needed
"name": "doc-name",
"url": "doc-url" // URL to access the documentation - could be from this repo or from a different domain
}
]
}
]
}
]
}
```
Each package can have multiple versions supporting different Pega Platform releases, with their respective binaries and documentation links.