Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

JSON Schema and JSON Validation CI #99

Merged
merged 3 commits into from
Sep 18, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Added compilers schema (a basic array of name-package-version objects)
  • Loading branch information
CodeGat committed Sep 18, 2023
commit f17bda08b61c4e1273b54d40da09b46eff1d9512
22 changes: 22 additions & 0 deletions containers/compilers.schema.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Compilers",
"description": "A list of compilers that are supported",
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"package": {
"type": "string"
},
"version": {
"type": "string"
}
},
"required": [ "name", "package", "version" ],
"additionalProperties": false
}
}