-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathswaggerOptions.js
executable file
·96 lines (91 loc) · 1.89 KB
/
swaggerOptions.js
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
const swaggerDefinition = {
openapi: "3.0.0",
info: {
title: "Portfolio API",
version: "1.0.0",
description: "API for managing portfolio projects and timeline entries",
},
servers: [
{
url: "http://localhost:3000",
description: "Local server",
},
],
};
const Project = {
type: "object",
properties: {
_id: {
type: "string",
description: "The auto-generated ID of the project",
},
title: {
type: "string",
description: "The title of the project",
},
description: {
type: "string",
description: "The description of the project",
},
tags: {
type: "array",
items: {
type: "string",
},
description: "List of tags associated with the project",
},
images: {
type: "array",
items: {
type: "string",
},
description: "List of image URLs",
},
liveUrl: {
type: "string",
description: "URL to the live website",
},
sourceUrl: {
type: "string",
description: "URL to the source code",
},
},
};
const Timeline = {
type: "object",
properties: {
_id: {
type: "string",
description: "The auto-generated ID of the timeline",
},
year: {
type: "number",
description: "The year of the timeline/milestone",
default: "The current year",
},
timeline: {
type: "string",
description: "The title of the timeline",
},
duration: {
type: "string",
description: "The duration of the timeline",
},
details: {
type: "string",
description: "A detailed description of the timeline",
},
},
};
const components = {
schemas: {
Project,
Timeline,
},
};
const swaggerOptions = {
swaggerDefinition,
components,
apis: ["./routes/project.route.js", "./routes/timeline.route.js"],
};
module.exports = swaggerOptions;