Skip to content

Commit b0ef2a4

Browse files
committed
feat: Added descriptions to all JSON schemas
1 parent c62dc89 commit b0ef2a4

25 files changed

+55
-14
lines changed

src/resources/android/android-studio-schema.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,16 @@
33
"$id": "https://www.codifycli.com/pgcli.json",
44
"title": "Android studios resource",
55
"type": "object",
6+
"description": "Install Android Studios.",
67
"properties": {
78
"version": {
89
"type": "string",
910
"description": "Android studios version. Visit: https://developer.android.com/studio/releases for version info"
1011
},
1112
"directory": {
12-
13+
"type": "string",
14+
"description": "The directory to install Android Studios into. Defaults to /Applications",
15+
"default": "/Applications"
1316
}
1417
},
1518
"additionalProperties": false

src/resources/asdf/asdf-global-schema.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"$id": "https://www.codifycli.com/asdf-global-schema.json",
44
"title": "Asdf plugin global resource",
55
"type": "object",
6+
"description": "Manage the asdf global version for a tool. An asdf-global or asdf-local resource must be specified before a tool installed with asdf is active in the shell.",
67
"properties": {
78
"plugin": {
89
"type": "string",

src/resources/asdf/asdf-install-schema.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"$id": "https://www.codifycli.com/asdf-install-schema.json",
44
"title": "Asdf plugin resource",
55
"type": "object",
6+
"description": "Install a .tools-version file or directly install an asdf plugin + tool version.",
67
"properties": {
78
"plugin": {
89
"type": "string",

src/resources/asdf/asdf-local-schema.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"$schema": "http://json-schema.org/draft-07/schema",
33
"$id": "https://www.codifycli.com/asdf-local-schema.json",
44
"title": "Asdf plugin local resource",
5+
"description": "Manage the asdf local version for a tool. An asdf-global or asdf-local resource must be specified before a tool installed with asdf is active in the shell.",
56
"type": "object",
67
"properties": {
78
"plugin": {

src/resources/asdf/asdf-plugin-schema.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"$schema": "http://json-schema.org/draft-07/schema",
33
"$id": "https://www.codifycli.com/asdf-plugin-schema.json",
44
"title": "Asdf plugin resource",
5+
"description": "Installs a plugin and manages specific tool versions.",
56
"type": "object",
67
"properties": {
78
"plugin": {

src/resources/asdf/asdf-schema.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"$id": "https://www.codifycli.com/asdf-schema.json",
44
"title": "Asdf resource",
55
"type": "object",
6+
"description": "Installs asdf and manages asdf plugins. Use 'asdf-install' or 'asdf-plugin' to install the actual tool. Use 'asdf-global' or 'asdf-local' to activate the tool in the shell.",
67
"properties": {
78
"plugins": {
89
"type": "array",

src/resources/aws-cli/cli/aws-cli-schema.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"$id": "https://www.codifycli.com/aws-cli.json",
44
"title": "Aws-CLI resource",
55
"type": "object",
6+
"description": "Installs aws-cli.",
67
"properties": {},
78
"additionalProperties": false
89
}

src/resources/aws-cli/profile/aws-profile-schema.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"$id": "https://www.codifycli.com/aws-profile.json",
44
"title": "Aws-CLI configure resource",
55
"type": "object",
6+
"description": "Configures AWS profiles.",
67
"properties": {
78
"profile": {
89
"type": "string",

src/resources/git/clone/git-clone-schema.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"$schema": "http://json-schema.org/draft-07/schema",
33
"$id": "https://www.codifycli.com/git-clone.json",
44
"title": "Git-clone resource",
5+
"description": "Git clone a repository. Choose either to specify the exact directory to clone into or the parent directory (it deduces the folder name using the repository name).",
56
"type": "object",
67
"properties": {
78
"repository": {

src/resources/git/git/git-schema.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"$schema": "http://json-schema.org/draft-07/schema",
33
"$id": "https://www.codifycli.com/git.json",
44
"title": "Git resource",
5+
"description": "Set and manage global git settings (email and username)",
56
"type": "object",
67
"properties": {
78
"email": {

0 commit comments

Comments
 (0)