forked from zircote/swagger-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmisc-api.php
47 lines (43 loc) · 1.09 KB
/
misc-api.php
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
<?php
/**
* @OA\Info(
* title="Testing annotations from bugreports",
* version="1.0.0"
* )
*/
/**
* @OA\Get(
* path="/api/endpoint",
* @OA\Parameter(name="filter",in="query", @OA\JsonContent(
* @OA\Property(property="type", type="string"),
* @OA\Property(property="color", type="string"),
* )),
* @OA\Response(response=200, description="Success")
* )
*/
/**
* @OA\Server(
* url="{schema}://host.dev",
* description="OpenApi parameters",
* @OA\ServerVariable(
* serverVariable="schema",
* enum={"https", "http"},
* default="https"
* )
* )
*/
/**
* @OA\Response(
* response=200,
* description="",
* @OA\MediaType(
* mediaType="application/json",
* @OA\Schema(
* @OA\Property(property="name", type="integer", description="demo")
* ),
* @OA\Examples(example=200, summary="", value={"name":1}),
* @OA\Examples(example=300, summary="", value={"name":1}),
* @OA\Examples(example=400, summary="", value={"name":1})
* )
* )
*/