Skip to content

Commit

Permalink
feat: remove "isChainHalted" property from
Browse files Browse the repository at this point in the history
"swap-rotating-banner" schema and add
"isChainHalted" property to
"top-announcement-banner" schema
  • Loading branch information
JoseRFelix committed Jan 8, 2024
1 parent c42453d commit 974e257
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
5 changes: 1 addition & 4 deletions schemas/swap-rotating-banner.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"isChainHalted": {
"type": "boolean"
},
"banners": {
"type": "array",
"items": {
Expand Down Expand Up @@ -67,5 +64,5 @@
}
}
},
"required": ["banners", "isChainHalted"]
"required": ["banners"]
}
5 changes: 4 additions & 1 deletion schemas/top-announcement-banner.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"isChainHalted": {
"type": "boolean"
},
"banner": {
"type": ["object", "null"],
"properties": {
Expand Down Expand Up @@ -60,5 +63,5 @@
"required": ["enTextOrLocalizationPath"]
}
},
"required": ["banner"]
"required": ["banner", "isChainHalted"]
}

0 comments on commit 974e257

Please sign in to comment.