Description
Hi I wanted to add a function inside the custom gpt, for some reason it gave me an error mesage.
This is the function i wanted to include :
{
"openapi": "3.1.0",
"info": {
"title": "BoardApp Dashboard API",
"version": "1.0.0",
"description": "API specification for retrieving dashboard data from BoardApp"
},
"servers": [
{
"url": "https://boardapp.nl"
}
],
"paths": {
"/dashboards/bol.json": {
"get": {
"operationId": "getBolData",
"summary": "Retrieve dashboard data",
"description": "Get the dashboard data for BoardApp",
"responses": {
"200": {
"description": "Successful response",
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"data": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"data": {
"type": "object"
}
}
}
}
}
}
}
}
}
}
}
}
}
}
Maybe you guys no how to rewrite so that it can chat with it