generated from devkimchi/devcontainers-dotnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopenapi.json
95 lines (95 loc) · 2.19 KB
/
openapi.json
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
{
"openapi": "3.0.1",
"info": {
"title": "OpenAPI Document on Azure Functions",
"description": "This is the OpenAPI Document on Azure Functions",
"version": "1.0.0"
},
"servers": [
{
"url": "https://fncapp-dotnetconfstudent-b3fb.azurewebsites.net/api"
}
],
"paths": {
"/consumptions/water": {
"get": {
"tags": [
"consumptions"
],
"operationId": "GetWaterConsumptionData",
"parameters": [
{
"name": "start",
"in": "query",
"description": "The starting date to get the water consumption data for.",
"schema": {
"type": "string"
}
},
{
"name": "days",
"in": "query",
"description": "The number of days to get the water consumption data for.",
"schema": {
"type": "integer",
"format": "int32"
}
}
],
"responses": {
"200": {
"description": "The OK response",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/waterConsumptionModel"
}
}
}
}
},
"security": [
{
"function_key": [ ]
}
]
}
}
},
"components": {
"schemas": {
"waterConsumptionItemModel": {
"type": "object",
"properties": {
"date": {
"type": "string",
"format": "date-time"
},
"value": {
"type": "number",
"format": "double"
}
}
},
"waterConsumptionModel": {
"type": "object",
"properties": {
"data": {
"type": "array",
"items": {
"$ref": "#/components/schemas/waterConsumptionItemModel"
}
}
}
}
},
"securitySchemes": {
"function_key": {
"type": "apiKey",
"description": "API auth key through request header",
"name": "x-functions-key",
"in": "header"
}
}
}
}