Skip to content

Commit 62a70bd

Browse files
committed
fix: fix url format in schemas
1 parent ec4b257 commit 62a70bd

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

resources/schemas/cli.config.schema.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -192,22 +192,22 @@ properties:
192192
- type: object
193193
properties:
194194
location: { enum: [/, /docs] }
195-
aliases: { type: object, additionalProperties: { type: string, format: uri } }
195+
aliases: { type: object, additionalProperties: { type: string, format: url } }
196196

197197
app:
198198
type: object
199199
properties:
200200
api:
201201
type: object
202202
properties:
203-
url: { type: string, format: uri }
203+
url: { type: string, format: url }
204204

205205
additionalProperties: false
206206
required: [url]
207207
rpc:
208208
type: object
209209
properties:
210-
url: { type: string, format: uri }
210+
url: { type: string, format: url }
211211

212212
additionalProperties: false
213213
required: [url]
@@ -218,25 +218,25 @@ properties:
218218
changelog:
219219
anyOf:
220220
- { type: boolean }
221-
- { type: string, format: uri }
221+
- { type: string, format: url }
222222

223223
favicon: { type: string }
224224
generateReadme: { type: boolean }
225225
logo:
226226
anyOf:
227227
- { type: boolean }
228-
- { type: string, format: uri }
228+
- { type: string, format: url }
229229
- type: object
230230
properties:
231-
href: { type: string, format: uri }
231+
href: { type: string, format: url }
232232
width: { type: integer, minimum: 32 }
233233
height: { type: integer, minimum: 32 }
234234

235235
additionalProperties: false
236236
required: [href]
237237

238238
name: { type: string }
239-
siteURL: { type: string, format: uri }
239+
siteURL: { type: string, format: url }
240240
subMaxLevel: { type: integer, minimum: 0 }
241241
types:
242242
anyOf:

0 commit comments

Comments
 (0)