Skip to content

Commit cfced59

Browse files
fix(schema): ids (#4081)
1 parent 3eadf78 commit cfced59

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

src/api/json/catalog.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6877,25 +6877,25 @@
68776877
"name": "Application list for a WinUtil",
68786878
"description": "Application list for a WinUtil",
68796879
"fileMatch": ["**/*winutil*/config/applications.json"],
6880-
"url": "https://raw.githubusercontent.com/winutil-applications.json"
6880+
"url": "https://json.schemastore.org/winutil-applications.json"
68816881
},
68826882
{
68836883
"name": "Preset list for a WinUtil",
68846884
"description": "Preset list for a WinUtil",
68856885
"fileMatch": ["**/*winutil*/config/preset.json"],
6886-
"url": "https://raw.githubusercontent.com/winutil-preset.json"
6886+
"url": "https://json.schemastore.org/winutil-preset.json"
68876887
},
68886888
{
68896889
"name": "Tab list for a LinUtil",
68906890
"description": "Tab list for a LinUtil",
68916891
"fileMatch": ["**/*linutil*/**/tabs.toml"],
6892-
"url": "https://raw.githubusercontent.com/linutil-tabs.json"
6892+
"url": "https://json.schemastore.org/linutil-tabs.json"
68936893
},
68946894
{
68956895
"name": "Tab data for a LinUtil",
68966896
"description": "Tab data for a LinUtil",
68976897
"fileMatch": ["**/*linutil*/**/tab_data.toml"],
6898-
"url": "https://raw.githubusercontent.com/linutil-tab-data.json"
6898+
"url": "https://json.schemastore.org/linutil-tab-data.json"
68996899
}
69006900
]
69016901
}

src/schemas/json/linutil-tab-data.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "http://json-schema.org/draft-04/schema#",
3-
"id": "https://raw.githubusercontent.com/linutil-tab-data.json",
3+
"id": "https://json.schemastore.org/linutil-tab-data.json",
44
"definitions": {
55
"string-property": {
66
"type": "string",

src/schemas/json/linutil-tabs.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "http://json-schema.org/draft-04/schema#",
3-
"id": "https://raw.githubusercontent.com/linutil-tabs.json",
3+
"id": "https://json.schemastore.org/linutil-tabs.json",
44
"title": "tab data",
55
"description": "Tab data",
66
"type": "object",

src/schemas/json/winutil-applications.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "http://json-schema.org/draft-07/schema#",
3-
"$id": "https://raw.githubusercontent.com/winutil-applications.json",
3+
"$id": "https://json.schemastore.org/winutil-applications.json",
44
"definitions": {
55
"string-property": {
66
"type": "string",

src/schemas/json/winutil-presets.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "http://json-schema.org/draft-07/schema#",
3-
"$id": "https://raw.githubusercontent.com/winutil-presets.json",
3+
"$id": "https://json.schemastore.org/winutil-presets.json",
44
"title": "presets",
55
"description": "Presets\nhttps://github.com/ChrisTitusTech/winutil/blob/main/config/preset.json",
66
"type": "object",

0 commit comments

Comments
 (0)