From 9603f0b08632f5ddbb378e07157049db27b8660f Mon Sep 17 00:00:00 2001 From: Sonarr Date: Sun, 15 Sep 2024 17:22:49 +0000 Subject: [PATCH] Automated API Docs update ignore-downstream --- src/Sonarr.Api.V3/openapi.json | 43 ++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) diff --git a/src/Sonarr.Api.V3/openapi.json b/src/Sonarr.Api.V3/openapi.json index 399e3f6ed..5db55798e 100644 --- a/src/Sonarr.Api.V3/openapi.json +++ b/src/Sonarr.Api.V3/openapi.json @@ -5482,6 +5482,35 @@ } } }, + "/api/v3/qualitydefinition/limits": { + "get": { + "tags": [ + "QualityDefinition" + ], + "responses": { + "200": { + "description": "OK", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/QualityDefinitionLimitsResource" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/QualityDefinitionLimitsResource" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/QualityDefinitionLimitsResource" + } + } + } + } + } + } + }, "/api/v3/qualityprofile": { "post": { "tags": [ @@ -10565,6 +10594,20 @@ }, "additionalProperties": false }, + "QualityDefinitionLimitsResource": { + "type": "object", + "properties": { + "min": { + "type": "integer", + "format": "int32" + }, + "max": { + "type": "integer", + "format": "int32" + } + }, + "additionalProperties": false + }, "QualityDefinitionResource": { "type": "object", "properties": {