Update swagger
This commit is contained in:
parent
8e0b7a2ef9
commit
58fa1e7ecb
@ -45,7 +45,14 @@
|
||||
"summary": "Get current settings",
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "successful operation"
|
||||
"description": "successful operation",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": null
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -201,6 +208,19 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"/lights": {
|
||||
"get": {
|
||||
"tags": [
|
||||
"lights"
|
||||
],
|
||||
"summary": "Get LEDs status",
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "successful operation"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"/lights/{color}": {
|
||||
"get": {
|
||||
"tags": [
|
||||
@ -255,6 +275,26 @@
|
||||
},
|
||||
"components": {
|
||||
"schemas": {
|
||||
"ArrayOfLeds": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"red": {
|
||||
"type": "integer"
|
||||
},
|
||||
"green": {
|
||||
"type": "integer"
|
||||
},
|
||||
"blue": {
|
||||
"type": "integer"
|
||||
},
|
||||
"hex": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"Settings": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
|
@ -30,6 +30,10 @@ paths:
|
||||
responses:
|
||||
'200':
|
||||
description: successful operation
|
||||
content:
|
||||
application/json:
|
||||
schema:
|
||||
$ref: #/components/schemas/ArrayOfLeds
|
||||
post:
|
||||
tags:
|
||||
- system
|
||||
@ -123,6 +127,14 @@ paths:
|
||||
responses:
|
||||
'200':
|
||||
description: successful operation
|
||||
/lights:
|
||||
get:
|
||||
tags:
|
||||
- lights
|
||||
summary: Get LEDs status
|
||||
responses:
|
||||
'200':
|
||||
description: successful operation
|
||||
/lights/{color}:
|
||||
get:
|
||||
tags:
|
||||
@ -157,6 +169,19 @@ paths:
|
||||
description: successful operation
|
||||
components:
|
||||
schemas:
|
||||
ArrayOfLeds:
|
||||
type: array
|
||||
items:
|
||||
type: object
|
||||
properties:
|
||||
red:
|
||||
type: integer
|
||||
green:
|
||||
type: integer
|
||||
blue:
|
||||
type: integer
|
||||
hex:
|
||||
type: string
|
||||
Settings:
|
||||
type: object
|
||||
properties:
|
||||
|
Loading…
Reference in New Issue
Block a user