forked from springdoc/springdoc-openapi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp213.json
More file actions
83 lines (83 loc) · 1.94 KB
/
app213.json
File metadata and controls
83 lines (83 loc) · 1.94 KB
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
{
"openapi": "3.0.1",
"info": {
"title": "MKMTestWS (Test Microservice API)",
"description": "This API exposes endpoints for testing anything",
"termsOfService": "https://www.test.ca/terms",
"version": "1.0",
"x-x-amazon-apigateway-integration": {
"passthroughBehavior": "when_no_match",
"connectionId": "1rqafw",
"type": "http_proxy",
"httpMethod": "GET",
"uri": "http://my-vpc/nlb-link/testcontroller/getTest",
"connectionType": "VPC_LINK"
}
},
"servers": [
{
"url": "http://localhost:8080",
"description": "API Server"
}
],
"tags": [
{
"name": "Test Rest API",
"description": "Test Rest API"
}
],
"paths": {
"/testcontroller/": {
"post": {
"tags": [
"Test Rest API"
],
"summary": "Get Test",
"description": "Get Test",
"operationId": "queryMyDto",
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/PersonDTO"
}
}
}
}
},
"x-x-amazon-apigateway-integration": {
"passthroughBehavior": "when_no_match",
"connectionId": "1rqafw",
"type": "http_proxy",
"httpMethod": "GET",
"uri": "http://my-vpc/nlb-link/testcontroller/getTest",
"connectionType": "VPC_LINK",
"jsonProperty" : {
"key" : "value",
"key2" : "value2"
}
}
}
}
},
"components": {
"schemas": {
"PersonDTO": {
"type": "object",
"properties": {
"email": {
"type": "string"
},
"firstName": {
"type": "string"
},
"lastName": {
"type": "string"
}
}
}
}
}
}