Skip to content

Commit

Permalink
docs: update JSON Schema
Browse files Browse the repository at this point in the history
  • Loading branch information
suzuki-shunsuke committed Nov 2, 2024
1 parent 578c71a commit 494bacb
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions json-schema/aqua-yaml.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,25 @@
"additionalProperties": false,
"type": "object"
},
"CommandAlias": {
"properties": {
"command": {
"type": "string"
},
"alias": {
"type": "string"
},
"no_link": {
"type": "boolean"
}
},
"additionalProperties": false,
"type": "object",
"required": [
"command",
"alias"
]
},
"Config": {
"properties": {
"packages": {
Expand Down Expand Up @@ -80,6 +99,12 @@
},
"vars": {
"type": "object"
},
"command_aliases": {
"items": {
"$ref": "#/$defs/CommandAlias"
},
"type": "array"
}
},
"additionalProperties": false,
Expand Down

0 comments on commit 494bacb

Please sign in to comment.