Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

OPENAPI spec #37

Open
milandiekstra opened this issue Aug 16, 2024 · 0 comments
Open

OPENAPI spec #37

milandiekstra opened this issue Aug 16, 2024 · 0 comments

Comments

@milandiekstra
Copy link

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant