This repository provides a machine-readable list of Red Hat certification information, published in multiple formats (JSON, YAML, CSV).
Ideal for developers, instructors, and anyone who wants to programmatically access Red Hat's certification catalog.
このリポジトリは、Red Hat認定資格の一覧を機械可読な形式(JSON、YAML、CSV)で提供するものです。
開発者、講師、認定制度に関心のある方が、資格情報をプログラム的に活用できるように設計されています。
| Format | File Path |
|---|---|
| JSON | data/certifications.json |
| YAML | data/certifications.yaml |
| CSV | data/certifications.csv |
You can access these directly via GitHub Raw or use them in your own apps.
これらのファイルはGitHubのRawリンクを使って直接アクセスすることも、自作アプリケーションに組み込むことも可能です。
A simple browser interface is available at:
https://lab8010.github.io/redhat-certifications-api/
ブラウザで閲覧できる簡易インターフェースも上記URLで提供されています(GitHub Pagesを有効化してください)。
To run the HTML interface locally, start a local HTTP server:
ローカルでHTMLインターフェースを実行するには、ローカルHTTPサーバーを起動してください:
# Python 3の場合
cd docs
python3 -m http.server 8000
# Node.jsの場合(http-serverが必要)
cd docs
npx http-server -p 8000Then open http://localhost:8000/index.html in your browser.
その後、ブラウザで http://localhost:8000/index.html を開いてください。
Note: The HTML file uses fetch() to load JSON data, which requires an HTTP server. Opening the file directly (file://) will result in CORS errors.
注意: HTMLファイルはfetch()を使用してJSONデータを読み込むため、HTTPサーバーが必要です。ファイルを直接開く(file://)とCORSエラーが発生します。
- Build your own dashboard of certifications
- Create Slack bots or chat integrations
- Enable auto-fetch in training systems
- GitHub Actionsで定期的に更新して、常に最新の資格一覧を共有
- 資格カタログのAPIとして他のツールと連携
If you'd like to add more certifications, fix data, or improve formatting, feel free to open a pull request.
資格情報の追加や修正、フォーマットの改善など、どなたでもPull Requestで貢献いただけます。
This repository is provided under the MIT License.
(※必要に応じて適切なライセンスを明記してください)
Maintained by @Lab8010