create_question
Generate and manage predictive questions on Fatebook by defining titles, resolution dates, forecasts, tags, and sharing settings for collaborative forecasting and decision-making.
Instructions
Create a new Fatebook question
Input Schema
Name | Required | Description | Default |
---|---|---|---|
apiKey | No | ||
forecast | Yes | ||
hideForecastsUntil | No | ||
resolveBy | Yes | ||
sharePublicly | No | ||
shareWithEmail | No | ||
shareWithLists | No | ||
tags | No | ||
title | Yes |
Input Schema (JSON Schema)
{
"properties": {
"apiKey": {
"default": "",
"title": "Apikey",
"type": "string"
},
"forecast": {
"title": "Forecast",
"type": "number"
},
"hideForecastsUntil": {
"default": "",
"title": "Hideforecastsuntil",
"type": "string"
},
"resolveBy": {
"title": "Resolveby",
"type": "string"
},
"sharePublicly": {
"default": false,
"title": "Sharepublicly",
"type": "boolean"
},
"shareWithEmail": {
"default": [],
"items": {
"type": "string"
},
"title": "Sharewithemail",
"type": "array"
},
"shareWithLists": {
"default": [],
"items": {
"type": "string"
},
"title": "Sharewithlists",
"type": "array"
},
"tags": {
"default": [],
"items": {
"type": "string"
},
"title": "Tags",
"type": "array"
},
"title": {
"title": "Title",
"type": "string"
}
},
"required": [
"title",
"resolveBy",
"forecast"
],
"title": "create_questionArguments",
"type": "object"
}