-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapi.yaml
82 lines (82 loc) · 1.9 KB
/
api.yaml
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
---
openapi: 3.0.0
info:
title: Log analytics API
description: Log stream analysis API
contact:
email: [email protected]
license:
name: Apache 2.0
url: http://www.apache.org/licenses/LICENSE-2.0.html
version: 1.0.0
servers:
- url: https://virtserver.swaggerhub.com/Legal-One/BECodingTest/1.0.0
description: SwaggerHub API Auto Mocking
tags:
- name: analytics
description: Analytics functions
paths:
/count:
get:
tags:
- analytics
summary: searches logs and provides aggregated count of matches
description: |
Count all matching items in the logs.
operationId: searchLogs
parameters:
- name: serviceNames
in: query
description: array of service names
required: false
style: form
explode: true
schema:
type: array
items:
type: string
- name: startDate
in: query
description: start date
required: false
style: form
explode: true
schema:
type: string
format: dateTime
- name: endDate
in: query
description: end date
required: false
style: form
explode: true
schema:
type: string
format: dateTime
- name: statusCode
in: query
description: filter on request status code
required: false
style: form
explode: true
schema:
type: integer
responses:
"200":
description: count of matching results
content:
application/json:
schema:
$ref: '#/components/schemas/CountItem'
"400":
description: bad input parameter
components:
schemas:
CountItem:
required:
- counter
type: object
properties:
counter:
minimum: 0
type: integer