-
Notifications
You must be signed in to change notification settings - Fork 1
POST adjusted‐story‐points
Justin Meyer edited this page Aug 1, 2024
·
4 revisions
The https://auto-scheduler.bitovi-jira.com/adjusted‐story‐points
endpoint takes a "median estimate" and "confidence" and returns how much the estimate should be adjusted to account for risk.
Example POST body:
{
"storyPointsMedian": 10,
"storyPointsConfidence": 20
}
Example response:
{
"adjustedStoryPoints": 26.44653598619911,
"extraStoryPoints": 16.44653598619911,
"roundedExtraStoryPoints": 16,
"roundedAdjustedStoryPoints": 26
}
-
storyPointsMedian
Number
- The median number of story points. Needs to be 0 or higher. -
storyPointsConfidence
Number
- The confidence on the median estimate. Needs to be between 0 and 100 inclusive.
-
riskThreshold
Number
- The percentage of outcomes you want theadjustedStoryPoints
to account for. Defaults to 80%.
-
adjustedStoryPoints
Number
- A floating point number of adjusted story points. -
extraStoryPoints
Number
- A floating point number of the extra points added. -
roundedExtraStoryPoints
Number
- The rounded number of points added. -
roundedAdjustedStoryPoints
Number
- The rounded adjusted story points.