Create a REST API that returns JSON data:
- /api/ -- Return repositories
- /api/{repository}/ -- Return projects
- /api/{repository}/{project}/ -- return a list of releases
- /api/{repository}/{project}/{release}/ -- return metadata for the specified release
And if I feel like it at the time... do the following:
- /api/{repository}/{project}/latest -- return metadata for the latest release
- /api/{repository}/{project}/stable -- return metadata for the stable release
Create a REST API that returns JSON data:
And if I feel like it at the time... do the following: