-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The schemas now use an intermediate schema to resolve the hash using a ref. For more info, see: microsoft/vscode-json-languageservice#123 redhat-developer/yaml-language-server#585 redhat-developer/yaml-language-server#637 redhat-developer/yaml-language-server#823
- Loading branch information
1 parent
166136b
commit fcbea3d
Showing
4 changed files
with
18 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"$ref": "https://raw.githubusercontent.com/ansible/ansible-lint/main/src/ansiblelint/schemas/ansible.json#/$defs/playbook", | ||
"$schema": "http://json-schema.org/draft-04/schema#", | ||
"title": "Ansible Playbook" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"$ref": "https://raw.githubusercontent.com/ansible/ansible-lint/main/src/ansiblelint/schemas/ansible.json#/$defs/tasks", | ||
"$schema": "http://json-schema.org/draft-04/schema#", | ||
"title": "Ansible Tasks Schema" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"$ref": "https://appsemble.app/api.json#/components/schemas/AppDefinition", | ||
"$schema": "http://json-schema.org/draft-04/schema#", | ||
"title": "Appsemble app definition" | ||
} |