Skip to content

Commit

Permalink
Migrate to OpenAPI 3.1.0. (#355)
Browse files Browse the repository at this point in the history
  • Loading branch information
ZoogieZork authored Nov 13, 2024
1 parent b514273 commit 7c126fb
Showing 1 changed file with 16 additions and 5 deletions.
21 changes: 16 additions & 5 deletions backend/lambdas/api/spec.yaml
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:
Expand All @@ -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:
Expand Down Expand Up @@ -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:
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 7c126fb

Please sign in to comment.