buburt commited on
Commit
c6b4e43
·
verified ·
1 Parent(s): 28d8261

Add 2 files

Browse files
Files changed (2) hide show
  1. Diva-La-Vie-Thai.yaml +240 -0
  2. images/Diva La Vie HD.jpg +3 -0
Diva-La-Vie-Thai.yaml ADDED
@@ -0,0 +1,240 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ openapi: 3.0.0
2
+ x-stoplight:
3
+ id: ggf47jqp2pt8h
4
+ info:
5
+ title: ~ดูหนังใหม่‼️+ ดีว่า..ราวี เต็มเรื่อง (UHD) พากย์ไทย/ซับไทย ดูฟรี
6
+ version: '1.0'
7
+ description: "ดูหนัง ดีว่า..ราวี (Diva La Vie) เต็มเรื่อง UHD พากย์ไทย/ซับไทย ภาพยนตร์มิวสิคัลคอมเมดี้ที่รวมเอาเสียงเพลง การเต้น และเรื่องราวสุดฮาของวงการบั.\r\n\r\nดูหนัง ➠ [ดีว่า..ราวี หนังออนไลน์ฟรี](https://t.co/SRtT92MXLb)\r\n\r\nดูหนัง ➠ [ดีว่า..ราวี หนังออนไลน์ฟรี](https://t.co/SRtT92MXLb)\r\n\r\nดูหนัง ดีว่า..ราวี (Diva La Vie) เต็มเรื่อง พากย์ไทย/ซับไทย UHD เรื่องราวดีว่ายุค 90 ปะทะไอดอล GEN Z ฮา ซึ้ง เพลงเพราะ ดูฟรี ภาพชัด Full HD\r\n\r\n+ดูหนัง ดีว่า..ราวี (2025) ดูหนังออนไลน์ฟรี พากย์ไทย HD บลูเรย์ |ดีว่า..ราวี “Diva La Vie” (2025) ดูหนังออนไลน์ฟรี คำบรรยายภาษาไทย ว็บ ดู หนัง ออนไลน์ ฟรี หนัง ใหม่ 2025"
8
+ license:
9
+ name: ''
10
+ servers:
11
+ - url: 'http://localhost:3020'
12
+ description: mthai
13
+ - url: 'https://stoplight.io/mocks/mmthai/diva-la-vie-thai/1482095553'
14
+ description: mthai2
15
+ paths:
16
+ '/users/{userId}':
17
+ parameters:
18
+ - schema:
19
+ type: integer
20
+ name: userId
21
+ in: path
22
+ required: true
23
+ description: Id of an existing user.
24
+ get:
25
+ summary: Get User Info by User ID
26
+ tags: []
27
+ responses:
28
+ '200':
29
+ description: User Found
30
+ content:
31
+ application/json:
32
+ schema:
33
+ $ref: '#/components/schemas/User'
34
+ examples:
35
+ Get User Alice Smith:
36
+ value:
37
+ id: 142
38
+ firstName: Alice
39
+ lastName: Smith
40
+ email: alice.smith@gmail.com
41
+ dateOfBirth: '1997-10-31'
42
+ emailVerified: true
43
+ signUpDate: '2019-08-24'
44
+ '404':
45
+ description: User Not Found
46
+ operationId: get-users-userId
47
+ description: Retrieve the information of the user with the matching user ID.
48
+ x-stoplight:
49
+ id: 15i1415nu7ls8
50
+ patch:
51
+ summary: Update User Information
52
+ operationId: patch-users-userId
53
+ responses:
54
+ '200':
55
+ description: User Updated
56
+ content:
57
+ application/json:
58
+ schema:
59
+ $ref: '#/components/schemas/User'
60
+ examples:
61
+ Updated User Rebecca Baker:
62
+ value:
63
+ id: 13
64
+ firstName: Rebecca
65
+ lastName: Baker
66
+ email: rebecca@gmail.com
67
+ dateOfBirth: '1985-10-02'
68
+ emailVerified: false
69
+ createDate: '2019-08-24'
70
+ '404':
71
+ description: User Not Found
72
+ '409':
73
+ description: Email Already Taken
74
+ description: Update the information of an existing user.
75
+ requestBody:
76
+ content:
77
+ application/json:
78
+ schema:
79
+ type: object
80
+ properties:
81
+ firstName:
82
+ type: string
83
+ lastName:
84
+ type: string
85
+ email:
86
+ type: string
87
+ description: 'If a new email is given, the user''s email verified property will be set to false.'
88
+ dateOfBirth:
89
+ type: string
90
+ examples:
91
+ Update First Name:
92
+ value:
93
+ firstName: Rebecca
94
+ Update Email:
95
+ value:
96
+ email: rebecca@gmail.com
97
+ Update Last Name & Date of Birth:
98
+ value:
99
+ lastName: Baker
100
+ dateOfBirth: '1985-10-02'
101
+ description: Patch user properties to update.
102
+ x-stoplight:
103
+ id: srtofzv33cxep
104
+ /user:
105
+ post:
106
+ summary: Create New User
107
+ operationId: post-user
108
+ responses:
109
+ '200':
110
+ description: User Created
111
+ content:
112
+ application/json:
113
+ schema:
114
+ $ref: '#/components/schemas/User'
115
+ examples:
116
+ New User Bob Fellow:
117
+ value:
118
+ id: 12
119
+ firstName: Bob
120
+ lastName: Fellow
121
+ email: bob.fellow@gmail.com
122
+ dateOfBirth: '1996-08-24'
123
+ emailVerified: false
124
+ createDate: '2020-11-18'
125
+ '400':
126
+ description: Missing Required Information
127
+ '409':
128
+ description: Email Already Taken
129
+ requestBody:
130
+ content:
131
+ application/json:
132
+ schema:
133
+ type: object
134
+ properties:
135
+ firstName:
136
+ type: string
137
+ lastName:
138
+ type: string
139
+ email:
140
+ type: string
141
+ dateOfBirth:
142
+ type: string
143
+ format: date
144
+ required:
145
+ - firstName
146
+ - lastName
147
+ - email
148
+ - dateOfBirth
149
+ examples:
150
+ Create User Bob Fellow:
151
+ value:
152
+ firstName: Bob
153
+ lastName: Fellow
154
+ email: bob.fellow@gmail.com
155
+ dateOfBirth: '1996-08-24'
156
+ description: Post the necessary fields for the API to create a new user.
157
+ description: Create a new user.
158
+ x-stoplight:
159
+ id: 6ltc6k7cln6lv
160
+ components:
161
+ schemas:
162
+ User:
163
+ title: User
164
+ type: object
165
+ description: ''
166
+ x-examples:
167
+ Alice Smith:
168
+ id: 142
169
+ firstName: Alice
170
+ lastName: Smith
171
+ email: alice.smith@gmail.com
172
+ dateOfBirth: '1997-10-31'
173
+ emailVerified: true
174
+ signUpDate: '2019-08-24'
175
+ properties:
176
+ id:
177
+ type: integer
178
+ description: Unique identifier for the given user.
179
+ x-stoplight:
180
+ id: 9s6v2azjqr6tr
181
+ firstName:
182
+ type: string
183
+ x-stoplight:
184
+ id: 7465tcavfzp3a
185
+ lastName:
186
+ type: string
187
+ x-stoplight:
188
+ id: u3j9wyvh0ndoa
189
+ email:
190
+ type: string
191
+ format: email
192
+ x-stoplight:
193
+ id: z3ti20qpfa13z
194
+ dateOfBirth:
195
+ type: string
196
+ format: date
197
+ example: '1997-10-31'
198
+ x-stoplight:
199
+ id: vcfzr42lq8pp5
200
+ emailVerified:
201
+ type: boolean
202
+ description: Set to true if the user's email has been verified.
203
+ x-stoplight:
204
+ id: pfydl5vbjiekh
205
+ createDate:
206
+ type: string
207
+ format: date
208
+ description: The date that the user was created.
209
+ x-stoplight:
210
+ id: 5bbqs1b5evqtb
211
+ required:
212
+ - id
213
+ - firstName
214
+ - lastName
215
+ - email
216
+ - emailVerified
217
+ x-stoplight:
218
+ id: e0zqz6obvi5y4
219
+ Diva-La-Vie:
220
+ title: Diva-La-Vie
221
+ x-stoplight:
222
+ id: 0klhrkz35nrv1
223
+ x-tags:
224
+ - Diva La Vie
225
+ type: object
226
+ properties:
227
+ id:
228
+ type: string
229
+ x-stoplight:
230
+ id: s6is0mcubjf7a
231
+ securitySchemes:
232
+ apiKey_1:
233
+ name: apiKey
234
+ type: apiKey
235
+ in: header
236
+ security:
237
+ - {}
238
+ - apiKey_1: []
239
+ tags:
240
+ - name: Diva La Vie
images/Diva La Vie HD.jpg ADDED

Git LFS Details

  • SHA256: 51628e9d38b90ef929abf5ea6bc2a2a55b65dd80b211af76fc0159631803a7ef
  • Pointer size: 131 Bytes
  • Size of remote file: 230 kB