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
name: search_logs
description: "Search application logs with optional filters"
input_schema:
type: object
properties:
query:
type: string
level:
type: string
enum:
limit:
type: integer
start_date:
type: string
output_schema:
type: object
required:
- results
properties:
results:
type: array
items:
type: object
required:
- message
- timestamp
properties:
message:
type: string
timestamp:
type: string
level:
type: string
total_count:
type: integer