Skip to content

Commit

Permalink
apply review suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
odscjen committed Dec 4, 2023
1 parent b4c5de5 commit 44e9073
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ The following JSON snippet models a contracting process with a participation fee
"win"
],
"relativeValue": {
"percentage": 0.05,
"proportion": 0.05,
"monetaryValue": "award"
},
"description": "Fee payable on acceptance of award.",
Expand Down
12 changes: 6 additions & 6 deletions release-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
},
"relativeValue": {
"title": "Relative value",
"description": "The value of the participation fee, as a percentage of the monetary value.",
"description": "The value of the participation fee, as a proportion of the monetary value.",
"$ref": "#/definitions/RelativeValue"
},
"description": {
Expand Down Expand Up @@ -81,16 +81,16 @@
},
"RelativeValue": {
"title": "Relative value",
"description": "The value of the participation fee, as a percentage of a monetary value.",
"description": "The value of the participation fee, as a proportion of a monetary value.",
"type": "object",
"required": [
"percentage",
"proportion",
"monetaryValue"
],
"properties": {
"percentage": {
"title": "Percentage",
"description": "The percentage of the monetary value.",
"proportion": {
"title": "Proportion",
"description": "The percentage of the monetary value, expressed as a decimal proportion between 0 and 1.",
"type": [
"number"
],
Expand Down

0 comments on commit 44e9073

Please sign in to comment.