-
Notifications
You must be signed in to change notification settings - Fork 16
/
klever-chatgpt-plugin-prod.herokuapp.com.yaml
44 lines (44 loc) · 1.75 KB
/
klever-chatgpt-plugin-prod.herokuapp.com.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
openapi: 3.0.1
info:
title: Product Development Knowledge API
description: |
The Product Development Knowledge API is designed to elevate your product development knowledge by providing access to curated best practices and insights from reputable sources. Use these best practices to enhance your product development skills and create well-documented, high-quality products.
version: "v1"
servers:
- url: https://klever-chatgpt-plugin-prod.herokuapp.com
paths:
/get-data:
get:
operationId: getData
summary: |
Retrieve a curated list of product development best practices.
description: |
This endpoint allows you to retrieve a curated list of product development best practices from reputable sources. By using this information, you can gain valuable insights to improve your product development skills and create well-documented, high-quality products.
parameters:
- in: query
name: userQuestion
schema:
type: string
required: true
description: The user's question that needs to be addressed.
responses:
"200":
description: OK
content:
application/json:
schema:
$ref: "#/components/schemas/getDataResponse"
components:
schemas:
getDataResponse:
type: object
properties:
url:
type: string
description: The URL of the source containing the best practice or insight.
title:
type: string
description: The title of the best practice or insight.
content:
type: string
description: The content of the best practice or insight, which can be used to respond to user queries or for reference purposes.