Skip to content

Commit

Permalink
fix(schema): ids (#4081)
Browse files Browse the repository at this point in the history
  • Loading branch information
EmilyGraceSeville7cf authored Sep 17, 2024
1 parent 3eadf78 commit cfced59
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions src/api/json/catalog.json
Original file line number Diff line number Diff line change
Expand Up @@ -6877,25 +6877,25 @@
"name": "Application list for a WinUtil",
"description": "Application list for a WinUtil",
"fileMatch": ["**/*winutil*/config/applications.json"],
"url": "https://raw.githubusercontent.com/winutil-applications.json"
"url": "https://json.schemastore.org/winutil-applications.json"
},
{
"name": "Preset list for a WinUtil",
"description": "Preset list for a WinUtil",
"fileMatch": ["**/*winutil*/config/preset.json"],
"url": "https://raw.githubusercontent.com/winutil-preset.json"
"url": "https://json.schemastore.org/winutil-preset.json"
},
{
"name": "Tab list for a LinUtil",
"description": "Tab list for a LinUtil",
"fileMatch": ["**/*linutil*/**/tabs.toml"],
"url": "https://raw.githubusercontent.com/linutil-tabs.json"
"url": "https://json.schemastore.org/linutil-tabs.json"
},
{
"name": "Tab data for a LinUtil",
"description": "Tab data for a LinUtil",
"fileMatch": ["**/*linutil*/**/tab_data.toml"],
"url": "https://raw.githubusercontent.com/linutil-tab-data.json"
"url": "https://json.schemastore.org/linutil-tab-data.json"
}
]
}
2 changes: 1 addition & 1 deletion src/schemas/json/linutil-tab-data.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "https://raw.githubusercontent.com/linutil-tab-data.json",
"id": "https://json.schemastore.org/linutil-tab-data.json",
"definitions": {
"string-property": {
"type": "string",
Expand Down
2 changes: 1 addition & 1 deletion src/schemas/json/linutil-tabs.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"id": "https://raw.githubusercontent.com/linutil-tabs.json",
"id": "https://json.schemastore.org/linutil-tabs.json",
"title": "tab data",
"description": "Tab data",
"type": "object",
Expand Down
2 changes: 1 addition & 1 deletion src/schemas/json/winutil-applications.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://raw.githubusercontent.com/winutil-applications.json",
"$id": "https://json.schemastore.org/winutil-applications.json",
"definitions": {
"string-property": {
"type": "string",
Expand Down
2 changes: 1 addition & 1 deletion src/schemas/json/winutil-presets.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://raw.githubusercontent.com/winutil-presets.json",
"$id": "https://json.schemastore.org/winutil-presets.json",
"title": "presets",
"description": "Presets\nhttps://github.com/ChrisTitusTech/winutil/blob/main/config/preset.json",
"type": "object",
Expand Down

0 comments on commit cfced59

Please sign in to comment.