-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b514273
commit 7c126fb
Showing
1 changed file
with
16 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,10 @@ | ||
openapi: 3.0.2 | ||
openapi: 3.1.0 | ||
info: | ||
title: Artemis REST API | ||
version: 1.1.0 | ||
license: | ||
name: MIT License | ||
identifier: MIT | ||
contact: | ||
email: "[email protected]" | ||
tags: | ||
|
@@ -21,6 +24,12 @@ tags: | |
description: User actions | ||
- name: whitelist | ||
description: Whitelist actions | ||
servers: | ||
- url: https://{host}/api/v1 | ||
variables: | ||
host: | ||
default: localhost | ||
description: API host | ||
paths: | ||
"/{service}": | ||
parameters: | ||
|
@@ -2122,8 +2131,9 @@ components: | |
default: false | ||
diff_base: | ||
description: Commit hash or branch name to use for diff-based reporting | ||
type: string | ||
nullable: true | ||
type: | ||
- string | ||
- "null" | ||
minLength: 1 | ||
maxLength: 256 | ||
batch_id: | ||
|
@@ -3227,8 +3237,9 @@ components: | |
type: string | ||
error: | ||
description: Error encountered when testing connection from Artemis to service | ||
type: string | ||
nullable: true | ||
type: | ||
- string | ||
- "null" | ||
|
||
SystemServiceStats: | ||
type: object | ||
|