Skip to content

Commit

Permalink
Merge pull request #3154 from alphagov/content-modelling/909-pension-…
Browse files Browse the repository at this point in the history
…rate-cadence

change content block pension rate cadence
  • Loading branch information
Harriethw authored Feb 21, 2025
2 parents de093bc + 9ffd6e9 commit a2d06c9
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -408,8 +408,10 @@
"cadence": {
"type": "string",
"enum": [
"weekly",
"monthly"
"a day",
"a week",
"a month",
"a year"
]
},
"description": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -225,8 +225,10 @@
"cadence": {
"type": "string",
"enum": [
"weekly",
"monthly"
"a day",
"a week",
"a month",
"a year"
]
},
"description": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"rate-1": {
"name": "Rate 1",
"amount": "£221.20",
"cadence": "weekly",
"cadence": "a week",
"description": "Your weekly pension amount"
}
}
Expand Down
2 changes: 1 addition & 1 deletion content_schemas/formats/content_block_pension.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ local utils = import "shared/utils/content_block_utils.jsonnet";
},
cadence: {
type: "string",
enum: ["weekly", "monthly"],
enum: ["a day", "a week", "a month", "a year"],
},
description: {
type: "string",
Expand Down

0 comments on commit a2d06c9

Please sign in to comment.