decision-journal
Authentication
HTTP Authentication
Decisions
get/decisions
Get decisions with a query and optional filters as parameters. Refine results by status or whether or not they are due for review.
Path parameters
- Name
q
- Type
- string
- Name
status
- Type
- string
- Name
dueForReview
- Type
- boolean
- Name
limit
- Type
- integer
Response
{
"decisions": [
{
"id": "string",
"title": "string",
"tags": [
"string"
],
"status": "string",
"context": "string",
"expectedOutcome": "string",
"outcomeEstimates": [
{
"text": "string",
"probability": "string"
}
],
"skillLuckWeight": 0,
"decisionDate": "string",
"nextReviewDate": "string",
"lastReviewedOn": "string"
}
]
}
post/decisions
Create decisions with information about the decision (e.g. title, tags, expected outcomes, feelings, etc). Set the status to "published" when the decision has been made. All decisions not yet made should be "draft" status.
Body params
- Name
data
- Type
- object
- Name
title
- Type
- string
- Name
tags
- Type
- array[string]
- Description
- Tags for a decision to organize.
- Name
status
- Type
- string
- Description
- The status of a decision or review.
- Name
context
- Type
- string
- Name
expectedOutcome
- Type
- string
- Name
outcomeEstimates
- Type
- array[object]
- Name
text
- Type
- string
- Description
- A description of an outcome estimate.
- Name
probability
- Type
- string
- Description
- A probability of an outcome estimate.
- Name
skillLuckWeight
- Type
- number
- Description
- A number between 0 and 1 that represents the weight of skill vs luck in the outcome of the decision. 0 means the outcome was entirely due to skill, 1 means the outcome was entirely due to luck.
- Name
monthsToNextReview
- Type
- integer
Response
{
"id": "string",
"title": "string",
"tags": [
"string"
],
"status": "string",
"context": "string",
"expectedOutcome": "string",
"outcomeEstimates": [
{
"text": "string",
"probability": "string"
}
],
"skillLuckWeight": 0,
"decisionDate": "string",
"nextReviewDate": "string",
"lastReviewedOn": "string"
}
get/decisions/{decisionId}
Get a specific decision with its id.
Path parameters
- Name
decisionId
- Type
- string
- Required
Response
{
"id": "string",
"title": "string",
"tags": [
"string"
],
"status": "string",
"context": "string",
"expectedOutcome": "string",
"outcomeEstimates": [
{
"text": "string",
"probability": "string"
}
],
"skillLuckWeight": 0,
"decisionDate": "string",
"nextReviewDate": "string",
"lastReviewedOn": "string"
}
put/decisions/{decisionId}
Update a specific decision with information about the decision. Update the decision's status to "published" when the decision has been made.
Path parameters
- Name
decisionId
- Type
- string
- Required
Body params
- Name
data
- Type
- object
- Name
title
- Type
- string
- Name
tags
- Type
- array[string]
- Description
- Tags for a decision to organize.
- Name
status
- Type
- string
- Description
- The status of a decision or review.
- Name
context
- Type
- string
- Name
expectedOutcome
- Type
- string
- Name
outcomeEstimates
- Type
- array[object]
- Name
text
- Type
- string
- Description
- A description of an outcome estimate.
- Name
probability
- Type
- string
- Description
- A probability of an outcome estimate.
- Name
skillLuckWeight
- Type
- number
- Description
- A number between 0 and 1 that represents the weight of skill vs luck in the outcome of the decision. 0 means the outcome was entirely due to skill, 1 means the outcome was entirely due to luck.
- Name
monthsToNextReview
- Type
- integer
Response
{
"id": "string",
"title": "string",
"tags": [
"string"
],
"status": "string",
"context": "string",
"expectedOutcome": "string",
"outcomeEstimates": [
{
"text": "string",
"probability": "string"
}
],
"skillLuckWeight": 0,
"decisionDate": "string",
"nextReviewDate": "string",
"lastReviewedOn": "string"
}
put/decisions/{decisionId}/reviews
Update a review for a decision with information about the review (e.g. accuracy score, actual outcome, learnings, etc). Set the status to "published" when the review has been finalized. Otherwise, the status should be "draft".
Path parameters
- Name
decisionId
- Type
- string
- Required
Body params
- Name
data
- Type
- object
- Name
accuracyScore
- Type
- integer
- Name
actualOutcome
- Type
- string
- Name
learningsAndReview
- Type
- string
- Name
status
- Type
- string
- Description
- The status of a decision or review.
- Name
skillLuckWeight
- Type
- number
- Description
- A number between 0 and 1 that represents the weight of skill vs luck in the outcome of the decision. 0 means the outcome was entirely due to skill, 1 means the outcome was entirely due to luck.
- Name
monthsToNextReview
- Type
- integer
- Description
- The number of months until the next review of the parent decision.
- Name
outcomeEstimates
- Type
- array[object]
- Name
text
- Type
- string
- Description
- A description of an outcome estimate.
- Name
probability
- Type
- string
- Description
- A probability of an outcome estimate.
- Name
itHappened
- Type
- boolean
- Description
- Whether or not the outcome estimate happened.
Response
{
"id": "string",
"accuracyScore": 0,
"actualOutcome": "string",
"learningsAndReview": "string",
"status": "string",
"outcomeEstimates": [
{
"text": "string",
"probability": "string",
"itHappened": true
}
],
"skillLuckWeight": 0,
"reviewDate": "string"
}
post/decisions/{decisionId}/reviews
Create a review for a decision with information about the review (e.g. accuracy score, actual outcome, learnings, etc). Set the status to "published" when the review has been finalized. Otherwise, the status should be "draft".
Path parameters
- Name
decisionId
- Type
- string
- Required
Body params
- Name
data
- Type
- object
- Name
accuracyScore
- Type
- integer
- Name
actualOutcome
- Type
- string
- Name
learningsAndReview
- Type
- string
- Name
status
- Type
- string
- Description
- The status of a decision or review.
- Name
skillLuckWeight
- Type
- number
- Description
- A number between 0 and 1 that represents the weight of skill vs luck in the outcome of the decision. 0 means the outcome was entirely due to skill, 1 means the outcome was entirely due to luck.
- Name
monthsToNextReview
- Type
- integer
- Description
- The number of months until the next review of the parent decision.
- Name
outcomeEstimates
- Type
- array[object]
- Name
text
- Type
- string
- Description
- A description of an outcome estimate.
- Name
probability
- Type
- string
- Description
- A probability of an outcome estimate.
- Name
itHappened
- Type
- boolean
- Description
- Whether or not the outcome estimate happened.
Response
{
"id": "string",
"accuracyScore": 0,
"actualOutcome": "string",
"learningsAndReview": "string",
"status": "string",
"outcomeEstimates": [
{
"text": "string",
"probability": "string",
"itHappened": true
}
],
"skillLuckWeight": 0,
"reviewDate": "string"
}