Skip to content

Commit

Permalink
Remove URL hashes in catalog
Browse files Browse the repository at this point in the history
  • Loading branch information
remcohaszing committed Mar 27, 2023
1 parent 166136b commit 223ba96
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/api/json/catalog.json
Expand Up @@ -143,7 +143,7 @@
{
"name": "Ansible Tasks File",
"description": "Ansible tasks file",
"url": "https://raw.githubusercontent.com/ansible/ansible-lint/main/src/ansiblelint/schemas/ansible.json#/$defs/tasks",
"url": "https://json.schemastore.org/ansible-tasks.json",
"fileMatch": [
"**/tasks/*.yml",
"**/tasks/*.yaml",
Expand All @@ -154,7 +154,7 @@
{
"name": "Ansible Playbook",
"description": "Ansible playbook files",
"url": "https://raw.githubusercontent.com/ansible/ansible-lint/main/src/ansiblelint/schemas/ansible.json#/$defs/playbook",
"url": "https://json.schemastore.org/ansible-tasks.json",
"fileMatch": [
"playbook.yml",
"playbook.yaml",
Expand Down Expand Up @@ -211,7 +211,7 @@
"name": "app-definition.yaml",
"description": "Appsemble app definition",
"fileMatch": ["app-definition.yaml"],
"url": "https://appsemble.app/api.json#/components/schemas/AppDefinition"
"url": "https://json.schemastore.org/app-definition.json"
},
{
"name": ".appsemblerc.yaml",
Expand Down
5 changes: 5 additions & 0 deletions src/schemas/json/ansible-playbook.json
@@ -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"
}
5 changes: 5 additions & 0 deletions src/schemas/json/ansible-tasks.json
@@ -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"
}
5 changes: 5 additions & 0 deletions src/schemas/json/app-definition.json
@@ -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"
}

0 comments on commit 223ba96

Please sign in to comment.