Skip to content
Snippets Groups Projects
Commit a052cb8a authored by David Schwarzmann's avatar David Schwarzmann
Browse files

fix(api#87): Pagniation for the event log

parent 5f40cc48
No related branches found
No related tags found
No related merge requests found
...@@ -4,7 +4,25 @@ type: object ...@@ -4,7 +4,25 @@ type: object
required: required:
- eventLog - eventLog
properties: properties:
count:
type: integer
format: int32
description: Anzahl zurückgegebener Events
maximum: 500
minimum: 0
offset:
type: integer
format: int32
description: Startpunkt in der Gesamtanzahl der Events
minimum: 0
totalCount:
type: integer
format: int32
description: Gesamtanzahl der Events
minimum: 0
eventLog: eventLog:
type: array type: array
items: items:
$ref: './security-event-token.yaml' $ref: './security-event-token.yaml'
maxItems: 500
minItems: 0
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment