Skip to content

Commit

Permalink
feat: add format uri
Browse files Browse the repository at this point in the history
  • Loading branch information
RamyEB committed May 14, 2024
1 parent a76dc9d commit 6115085
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/manifest-validator/src/schema/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,17 +60,20 @@ export const schema = {
},
url: {
type: "string",
format: "uri",
},
homepageUrl: {
type: "string",
format: "uri",
},
supportUrl: {
type: "string",
format: "uri",
},
icon: {
type: "string",
format: "uri",
},

private: {
type: "boolean",
},
Expand Down Expand Up @@ -222,6 +225,7 @@ export const schema = {
properties: {
dappUrl: {
type: "string",
format: "uri",
},
nanoApp: {
minLength: 1,
Expand Down

0 comments on commit 6115085

Please sign in to comment.