diff --git a/.github/workflows/ci-main.yml b/.github/workflows/ci-main.yml index a0934e631..d10b21a2a 100644 --- a/.github/workflows/ci-main.yml +++ b/.github/workflows/ci-main.yml @@ -139,7 +139,7 @@ jobs: working-directory: web run: | npm ci - make -C .. gen-client-web + make -C .. gen-client-ts npm run build - name: run e2e run: | @@ -173,7 +173,7 @@ jobs: working-directory: web/ run: | npm ci - make -C .. gen-client-web + make -C .. gen-client-ts npm run build - name: run e2e run: | diff --git a/.github/workflows/ci-web.yml b/.github/workflows/ci-web.yml index 3c85479fa..b708ec6be 100644 --- a/.github/workflows/ci-web.yml +++ b/.github/workflows/ci-web.yml @@ -23,7 +23,7 @@ jobs: - working-directory: web/ run: npm ci - name: Generate API - run: make gen-client-web + run: make gen-client-ts - name: Eslint working-directory: web/ run: npm run lint @@ -39,7 +39,7 @@ jobs: - working-directory: web/ run: npm ci - name: Generate API - run: make gen-client-web + run: make gen-client-ts - name: prettier working-directory: web/ run: npm run prettier-check @@ -60,7 +60,7 @@ jobs: cd node_modules/@goauthentik ln -s ../../src/ web - name: Generate API - run: make gen-client-web + run: make gen-client-ts - name: lit-analyse working-directory: web/ run: npm run lit-analyse @@ -86,7 +86,7 @@ jobs: - working-directory: web/ run: npm ci - name: Generate API - run: make gen-client-web + run: make gen-client-ts - name: build working-directory: web/ run: npm run build diff --git a/.github/workflows/web-api-publish.yml b/.github/workflows/web-api-publish.yml index 276b8ccdc..3f3cd6676 100644 --- a/.github/workflows/web-api-publish.yml +++ b/.github/workflows/web-api-publish.yml @@ -16,7 +16,7 @@ jobs: node-version: '16' registry-url: 'https://registry.npmjs.org' - name: Generate API Client - run: make gen-client-web + run: make gen-client-ts - name: Publish package working-directory: gen-ts-api/ run: | diff --git a/Makefile b/Makefile index e014ac6ab..824db0c3c 100644 --- a/Makefile +++ b/Makefile @@ -49,24 +49,44 @@ lint: bandit -r authentik tests lifecycle -x node_modules golangci-lint run -v +migrate: + python -m lifecycle.migrate + +run: + go run -v cmd/server/main.go + i18n-extract: i18n-extract-core web-extract i18n-extract-core: ak makemessages --ignore web --ignore internal --ignore web --ignore web-api --ignore website -l en +######################### +## API Schema +######################### + gen-build: AUTHENTIK_DEBUG=true ak make_blueprint_schema > blueprints/schema.json AUTHENTIK_DEBUG=true ak spectacular --file schema.yml +gen-diff: + git show $(shell git tag -l | tail -n 1):schema.yml > old_schema.yml + docker run \ + --rm -v ${PWD}:/local \ + --user ${UID}:${GID} \ + docker.io/openapitools/openapi-diff:2.0.1 \ + --markdown /local/diff.md \ + /local/old_schema.yml /local/schema.yml + rm old_schema.yml + gen-clean: rm -rf web/api/src/ rm -rf api/ -gen-client-web: +gen-client-ts: docker run \ --rm -v ${PWD}:/local \ --user ${UID}:${GID} \ - openapitools/openapi-generator-cli:v6.0.0 generate \ + docker.io/openapitools/openapi-generator-cli:v6.0.0 generate \ -i /local/schema.yml \ -g typescript-fetch \ -o /local/gen-ts-api \ @@ -84,7 +104,7 @@ gen-client-go: docker run \ --rm -v ${PWD}:/local \ --user ${UID}:${GID} \ - openapitools/openapi-generator-cli:v6.0.0 generate \ + docker.io/openapitools/openapi-generator-cli:v6.0.0 generate \ -i /local/schema.yml \ -g go \ -o /local/gen-go-api \ @@ -95,13 +115,7 @@ gen-client-go: gen-dev-config: python -m scripts.generate_config -gen: gen-build gen-clean gen-client-web - -migrate: - python -m lifecycle.migrate - -run: - go run -v cmd/server/main.go +gen: gen-build gen-clean gen-client-ts ######################### ## Web diff --git a/authentik/admin/api/meta.py b/authentik/admin/api/meta.py index 36c3edab1..17a83ec1e 100644 --- a/authentik/admin/api/meta.py +++ b/authentik/admin/api/meta.py @@ -18,13 +18,13 @@ class AppSerializer(PassiveSerializer): class AppsViewSet(ViewSet): - """Read-only view set list all installed apps""" + """Read-only view list all installed apps""" permission_classes = [IsAdminUser] @extend_schema(responses={200: AppSerializer(many=True)}) def list(self, request: Request) -> Response: - """List current messages and pass into Serializer""" + """Read-only view list all installed apps""" data = [] for app in sorted(get_apps(), key=lambda app: app.name): data.append({"name": app.name, "label": app.verbose_name}) diff --git a/authentik/api/schema.py b/authentik/api/schema.py index 127d20eae..1b2663be6 100644 --- a/authentik/api/schema.py +++ b/authentik/api/schema.py @@ -60,8 +60,28 @@ def postprocess_schema_responses(result, generator, **kwargs): # noqa: W0613 for path in result["paths"].values(): for method in path.values(): - method["responses"].setdefault("400", validation_error.ref) - method["responses"].setdefault("403", generic_error.ref) + method["responses"].setdefault( + "400", + { + "content": { + "application/json": { + "schema": validation_error.ref, + } + }, + "description": "", + }, + ) + method["responses"].setdefault( + "403", + { + "content": { + "application/json": { + "schema": generic_error.ref, + } + }, + "description": "", + }, + ) result["components"] = generator.registry.build(spectacular_settings.APPEND_COMPONENTS) diff --git a/schema.yml b/schema.yml index 9b61bac28..b90de7dac 100644 --- a/schema.yml +++ b/schema.yml @@ -12,7 +12,7 @@ paths: /admin/apps/: get: operationId: admin_apps_list - description: List current messages and pass into Serializer + description: Read-only view list all installed apps tags: - admin security: @@ -27,9 +27,17 @@ paths: $ref: '#/components/schemas/App' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /admin/metrics/: get: operationId: admin_metrics_retrieve @@ -46,9 +54,17 @@ paths: $ref: '#/components/schemas/LoginMetrics' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /admin/system/: get: operationId: admin_system_retrieve @@ -65,9 +81,17 @@ paths: $ref: '#/components/schemas/System' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /admin/system_tasks/: get: operationId: admin_system_tasks_list @@ -86,9 +110,17 @@ paths: $ref: '#/components/schemas/Task' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /admin/system_tasks/{id}/: get: operationId: admin_system_tasks_retrieve @@ -113,9 +145,17 @@ paths: '404': description: Task not found '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /admin/system_tasks/{id}/retry/: post: operationId: admin_system_tasks_retry_create @@ -138,9 +178,17 @@ paths: '500': description: Failed to retry task '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /admin/version/: get: operationId: admin_version_retrieve @@ -157,9 +205,17 @@ paths: $ref: '#/components/schemas/Version' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /admin/workers/: get: operationId: admin_workers_retrieve @@ -176,9 +232,17 @@ paths: $ref: '#/components/schemas/Workers' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /authenticators/admin/all/: get: operationId: authenticators_admin_all_list @@ -202,9 +266,17 @@ paths: $ref: '#/components/schemas/Device' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /authenticators/admin/duo/: get: operationId: authenticators_admin_duo_list @@ -250,9 +322,17 @@ paths: $ref: '#/components/schemas/PaginatedDuoDeviceList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' post: operationId: authenticators_admin_duo_create description: Viewset for Duo authenticator devices (for admins) @@ -274,9 +354,17 @@ paths: $ref: '#/components/schemas/DuoDevice' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /authenticators/admin/duo/{id}/: get: operationId: authenticators_admin_duo_retrieve @@ -300,9 +388,17 @@ paths: $ref: '#/components/schemas/DuoDevice' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' put: operationId: authenticators_admin_duo_update description: Viewset for Duo authenticator devices (for admins) @@ -331,9 +427,17 @@ paths: $ref: '#/components/schemas/DuoDevice' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' patch: operationId: authenticators_admin_duo_partial_update description: Viewset for Duo authenticator devices (for admins) @@ -361,9 +465,17 @@ paths: $ref: '#/components/schemas/DuoDevice' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: authenticators_admin_duo_destroy description: Viewset for Duo authenticator devices (for admins) @@ -382,9 +494,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /authenticators/admin/sms/: get: operationId: authenticators_admin_sms_list @@ -430,9 +550,17 @@ paths: $ref: '#/components/schemas/PaginatedSMSDeviceList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' post: operationId: authenticators_admin_sms_create description: Viewset for sms authenticator devices (for admins) @@ -454,9 +582,17 @@ paths: $ref: '#/components/schemas/SMSDevice' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /authenticators/admin/sms/{id}/: get: operationId: authenticators_admin_sms_retrieve @@ -480,9 +616,17 @@ paths: $ref: '#/components/schemas/SMSDevice' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' put: operationId: authenticators_admin_sms_update description: Viewset for sms authenticator devices (for admins) @@ -511,9 +655,17 @@ paths: $ref: '#/components/schemas/SMSDevice' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' patch: operationId: authenticators_admin_sms_partial_update description: Viewset for sms authenticator devices (for admins) @@ -541,9 +693,17 @@ paths: $ref: '#/components/schemas/SMSDevice' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: authenticators_admin_sms_destroy description: Viewset for sms authenticator devices (for admins) @@ -562,9 +722,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /authenticators/admin/static/: get: operationId: authenticators_admin_static_list @@ -610,9 +778,17 @@ paths: $ref: '#/components/schemas/PaginatedStaticDeviceList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' post: operationId: authenticators_admin_static_create description: Viewset for static authenticator devices (for admins) @@ -634,9 +810,17 @@ paths: $ref: '#/components/schemas/StaticDevice' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /authenticators/admin/static/{id}/: get: operationId: authenticators_admin_static_retrieve @@ -660,9 +844,17 @@ paths: $ref: '#/components/schemas/StaticDevice' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' put: operationId: authenticators_admin_static_update description: Viewset for static authenticator devices (for admins) @@ -691,9 +883,17 @@ paths: $ref: '#/components/schemas/StaticDevice' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' patch: operationId: authenticators_admin_static_partial_update description: Viewset for static authenticator devices (for admins) @@ -721,9 +921,17 @@ paths: $ref: '#/components/schemas/StaticDevice' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: authenticators_admin_static_destroy description: Viewset for static authenticator devices (for admins) @@ -742,9 +950,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /authenticators/admin/totp/: get: operationId: authenticators_admin_totp_list @@ -790,9 +1006,17 @@ paths: $ref: '#/components/schemas/PaginatedTOTPDeviceList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' post: operationId: authenticators_admin_totp_create description: Viewset for totp authenticator devices (for admins) @@ -814,9 +1038,17 @@ paths: $ref: '#/components/schemas/TOTPDevice' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /authenticators/admin/totp/{id}/: get: operationId: authenticators_admin_totp_retrieve @@ -840,9 +1072,17 @@ paths: $ref: '#/components/schemas/TOTPDevice' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' put: operationId: authenticators_admin_totp_update description: Viewset for totp authenticator devices (for admins) @@ -871,9 +1111,17 @@ paths: $ref: '#/components/schemas/TOTPDevice' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' patch: operationId: authenticators_admin_totp_partial_update description: Viewset for totp authenticator devices (for admins) @@ -901,9 +1149,17 @@ paths: $ref: '#/components/schemas/TOTPDevice' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: authenticators_admin_totp_destroy description: Viewset for totp authenticator devices (for admins) @@ -922,9 +1178,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /authenticators/admin/webauthn/: get: operationId: authenticators_admin_webauthn_list @@ -970,9 +1234,17 @@ paths: $ref: '#/components/schemas/PaginatedWebAuthnDeviceList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' post: operationId: authenticators_admin_webauthn_create description: Viewset for WebAuthn authenticator devices (for admins) @@ -994,9 +1266,17 @@ paths: $ref: '#/components/schemas/WebAuthnDevice' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /authenticators/admin/webauthn/{id}/: get: operationId: authenticators_admin_webauthn_retrieve @@ -1020,9 +1300,17 @@ paths: $ref: '#/components/schemas/WebAuthnDevice' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' put: operationId: authenticators_admin_webauthn_update description: Viewset for WebAuthn authenticator devices (for admins) @@ -1051,9 +1339,17 @@ paths: $ref: '#/components/schemas/WebAuthnDevice' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' patch: operationId: authenticators_admin_webauthn_partial_update description: Viewset for WebAuthn authenticator devices (for admins) @@ -1081,9 +1377,17 @@ paths: $ref: '#/components/schemas/WebAuthnDevice' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: authenticators_admin_webauthn_destroy description: Viewset for WebAuthn authenticator devices (for admins) @@ -1102,9 +1406,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /authenticators/all/: get: operationId: authenticators_all_list @@ -1123,9 +1435,17 @@ paths: $ref: '#/components/schemas/Device' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /authenticators/duo/: get: operationId: authenticators_duo_list @@ -1171,9 +1491,17 @@ paths: $ref: '#/components/schemas/PaginatedDuoDeviceList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /authenticators/duo/{id}/: get: operationId: authenticators_duo_retrieve @@ -1197,9 +1525,17 @@ paths: $ref: '#/components/schemas/DuoDevice' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' put: operationId: authenticators_duo_update description: Viewset for Duo authenticator devices @@ -1228,9 +1564,17 @@ paths: $ref: '#/components/schemas/DuoDevice' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' patch: operationId: authenticators_duo_partial_update description: Viewset for Duo authenticator devices @@ -1258,9 +1602,17 @@ paths: $ref: '#/components/schemas/DuoDevice' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: authenticators_duo_destroy description: Viewset for Duo authenticator devices @@ -1279,9 +1631,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /authenticators/duo/{id}/used_by/: get: operationId: authenticators_duo_used_by_list @@ -1307,9 +1667,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /authenticators/sms/: get: operationId: authenticators_sms_list @@ -1355,9 +1723,17 @@ paths: $ref: '#/components/schemas/PaginatedSMSDeviceList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /authenticators/sms/{id}/: get: operationId: authenticators_sms_retrieve @@ -1381,9 +1757,17 @@ paths: $ref: '#/components/schemas/SMSDevice' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' put: operationId: authenticators_sms_update description: Viewset for sms authenticator devices @@ -1412,9 +1796,17 @@ paths: $ref: '#/components/schemas/SMSDevice' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' patch: operationId: authenticators_sms_partial_update description: Viewset for sms authenticator devices @@ -1442,9 +1834,17 @@ paths: $ref: '#/components/schemas/SMSDevice' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: authenticators_sms_destroy description: Viewset for sms authenticator devices @@ -1463,9 +1863,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /authenticators/sms/{id}/used_by/: get: operationId: authenticators_sms_used_by_list @@ -1491,9 +1899,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /authenticators/static/: get: operationId: authenticators_static_list @@ -1539,9 +1955,17 @@ paths: $ref: '#/components/schemas/PaginatedStaticDeviceList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /authenticators/static/{id}/: get: operationId: authenticators_static_retrieve @@ -1565,9 +1989,17 @@ paths: $ref: '#/components/schemas/StaticDevice' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' put: operationId: authenticators_static_update description: Viewset for static authenticator devices @@ -1596,9 +2028,17 @@ paths: $ref: '#/components/schemas/StaticDevice' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' patch: operationId: authenticators_static_partial_update description: Viewset for static authenticator devices @@ -1626,9 +2066,17 @@ paths: $ref: '#/components/schemas/StaticDevice' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: authenticators_static_destroy description: Viewset for static authenticator devices @@ -1647,9 +2095,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /authenticators/static/{id}/used_by/: get: operationId: authenticators_static_used_by_list @@ -1675,9 +2131,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /authenticators/totp/: get: operationId: authenticators_totp_list @@ -1723,9 +2187,17 @@ paths: $ref: '#/components/schemas/PaginatedTOTPDeviceList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /authenticators/totp/{id}/: get: operationId: authenticators_totp_retrieve @@ -1749,9 +2221,17 @@ paths: $ref: '#/components/schemas/TOTPDevice' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' put: operationId: authenticators_totp_update description: Viewset for totp authenticator devices @@ -1780,9 +2260,17 @@ paths: $ref: '#/components/schemas/TOTPDevice' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' patch: operationId: authenticators_totp_partial_update description: Viewset for totp authenticator devices @@ -1810,9 +2298,17 @@ paths: $ref: '#/components/schemas/TOTPDevice' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: authenticators_totp_destroy description: Viewset for totp authenticator devices @@ -1831,9 +2327,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /authenticators/totp/{id}/used_by/: get: operationId: authenticators_totp_used_by_list @@ -1859,9 +2363,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /authenticators/webauthn/: get: operationId: authenticators_webauthn_list @@ -1907,9 +2419,17 @@ paths: $ref: '#/components/schemas/PaginatedWebAuthnDeviceList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /authenticators/webauthn/{id}/: get: operationId: authenticators_webauthn_retrieve @@ -1933,9 +2453,17 @@ paths: $ref: '#/components/schemas/WebAuthnDevice' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' put: operationId: authenticators_webauthn_update description: Viewset for WebAuthn authenticator devices @@ -1964,9 +2492,17 @@ paths: $ref: '#/components/schemas/WebAuthnDevice' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' patch: operationId: authenticators_webauthn_partial_update description: Viewset for WebAuthn authenticator devices @@ -1994,9 +2530,17 @@ paths: $ref: '#/components/schemas/WebAuthnDevice' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: authenticators_webauthn_destroy description: Viewset for WebAuthn authenticator devices @@ -2015,9 +2559,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /authenticators/webauthn/{id}/used_by/: get: operationId: authenticators_webauthn_used_by_list @@ -2043,9 +2595,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /core/applications/: get: operationId: core_applications_list @@ -2115,9 +2675,17 @@ paths: $ref: '#/components/schemas/PaginatedApplicationList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' post: operationId: core_applications_create description: Application Viewset @@ -2139,9 +2707,17 @@ paths: $ref: '#/components/schemas/Application' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /core/applications/{slug}/: get: operationId: core_applications_retrieve @@ -2165,9 +2741,17 @@ paths: $ref: '#/components/schemas/Application' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' put: operationId: core_applications_update description: Application Viewset @@ -2196,9 +2780,17 @@ paths: $ref: '#/components/schemas/Application' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' patch: operationId: core_applications_partial_update description: Application Viewset @@ -2226,9 +2818,17 @@ paths: $ref: '#/components/schemas/Application' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: core_applications_destroy description: Application Viewset @@ -2247,9 +2847,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /core/applications/{slug}/check_access/: get: operationId: core_applications_check_access_retrieve @@ -2279,9 +2887,17 @@ paths: '404': description: for_user user not found '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /core/applications/{slug}/metrics/: get: operationId: core_applications_metrics_list @@ -2307,9 +2923,17 @@ paths: $ref: '#/components/schemas/Coordinate' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /core/applications/{slug}/set_icon/: post: operationId: core_applications_set_icon_create @@ -2336,7 +2960,11 @@ paths: '400': description: Bad request '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /core/applications/{slug}/set_icon_url/: post: operationId: core_applications_set_icon_url_create @@ -2364,7 +2992,11 @@ paths: '400': description: Bad request '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /core/applications/{slug}/used_by/: get: operationId: core_applications_used_by_list @@ -2390,9 +3022,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /core/authenticated_sessions/: get: operationId: core_authenticated_sessions_list @@ -2446,9 +3086,17 @@ paths: $ref: '#/components/schemas/PaginatedAuthenticatedSessionList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /core/authenticated_sessions/{uuid}/: get: operationId: core_authenticated_sessions_retrieve @@ -2473,9 +3121,17 @@ paths: $ref: '#/components/schemas/AuthenticatedSession' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: core_authenticated_sessions_destroy description: AuthenticatedSession Viewset @@ -2495,9 +3151,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /core/authenticated_sessions/{uuid}/used_by/: get: operationId: core_authenticated_sessions_used_by_list @@ -2524,9 +3188,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /core/groups/: get: operationId: core_groups_list @@ -2599,9 +3271,17 @@ paths: $ref: '#/components/schemas/PaginatedGroupList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' post: operationId: core_groups_create description: Group Viewset @@ -2623,9 +3303,17 @@ paths: $ref: '#/components/schemas/Group' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /core/groups/{group_uuid}/: get: operationId: core_groups_retrieve @@ -2650,9 +3338,17 @@ paths: $ref: '#/components/schemas/Group' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' put: operationId: core_groups_update description: Group Viewset @@ -2682,9 +3378,17 @@ paths: $ref: '#/components/schemas/Group' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' patch: operationId: core_groups_partial_update description: Group Viewset @@ -2713,9 +3417,17 @@ paths: $ref: '#/components/schemas/Group' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: core_groups_destroy description: Group Viewset @@ -2735,9 +3447,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /core/groups/{group_uuid}/used_by/: get: operationId: core_groups_used_by_list @@ -2764,9 +3484,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /core/tenants/: get: operationId: core_tenants_list @@ -2867,9 +3595,17 @@ paths: $ref: '#/components/schemas/PaginatedTenantList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' post: operationId: core_tenants_create description: Tenant Viewset @@ -2891,9 +3627,17 @@ paths: $ref: '#/components/schemas/Tenant' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /core/tenants/{tenant_uuid}/: get: operationId: core_tenants_retrieve @@ -2918,9 +3662,17 @@ paths: $ref: '#/components/schemas/Tenant' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' put: operationId: core_tenants_update description: Tenant Viewset @@ -2950,9 +3702,17 @@ paths: $ref: '#/components/schemas/Tenant' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' patch: operationId: core_tenants_partial_update description: Tenant Viewset @@ -2981,9 +3741,17 @@ paths: $ref: '#/components/schemas/Tenant' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: core_tenants_destroy description: Tenant Viewset @@ -3003,9 +3771,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /core/tenants/{tenant_uuid}/used_by/: get: operationId: core_tenants_used_by_list @@ -3032,9 +3808,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /core/tenants/current/: get: operationId: core_tenants_current_retrieve @@ -3052,9 +3836,17 @@ paths: $ref: '#/components/schemas/CurrentTenant' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /core/tokens/: get: operationId: core_tokens_list @@ -3130,9 +3922,17 @@ paths: $ref: '#/components/schemas/PaginatedTokenList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' post: operationId: core_tokens_create description: Token Viewset @@ -3154,9 +3954,17 @@ paths: $ref: '#/components/schemas/Token' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /core/tokens/{identifier}/: get: operationId: core_tokens_retrieve @@ -3179,9 +3987,17 @@ paths: $ref: '#/components/schemas/Token' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' put: operationId: core_tokens_update description: Token Viewset @@ -3209,9 +4025,17 @@ paths: $ref: '#/components/schemas/Token' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' patch: operationId: core_tokens_partial_update description: Token Viewset @@ -3238,9 +4062,17 @@ paths: $ref: '#/components/schemas/Token' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: core_tokens_destroy description: Token Viewset @@ -3258,9 +4090,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /core/tokens/{identifier}/set_key/: post: operationId: core_tokens_set_key_create @@ -3289,7 +4129,11 @@ paths: '404': description: Token not found or expired '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /core/tokens/{identifier}/used_by/: get: operationId: core_tokens_used_by_list @@ -3314,9 +4158,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /core/tokens/{identifier}/view_key/: get: operationId: core_tokens_view_key_retrieve @@ -3341,9 +4193,17 @@ paths: '404': description: Token not found or expired '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /core/user_consent/: get: operationId: core_user_consent_list @@ -3394,9 +4254,17 @@ paths: $ref: '#/components/schemas/PaginatedUserConsentList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /core/user_consent/{id}/: get: operationId: core_user_consent_retrieve @@ -3420,9 +4288,17 @@ paths: $ref: '#/components/schemas/UserConsent' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: core_user_consent_destroy description: UserConsent Viewset @@ -3441,9 +4317,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /core/user_consent/{id}/used_by/: get: operationId: core_user_consent_used_by_list @@ -3469,9 +4353,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /core/users/: get: operationId: core_users_list @@ -3567,9 +4459,17 @@ paths: $ref: '#/components/schemas/PaginatedUserList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' post: operationId: core_users_create description: User Viewset @@ -3591,9 +4491,17 @@ paths: $ref: '#/components/schemas/User' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /core/users/{id}/: get: operationId: core_users_retrieve @@ -3617,9 +4525,17 @@ paths: $ref: '#/components/schemas/User' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' put: operationId: core_users_update description: User Viewset @@ -3648,9 +4564,17 @@ paths: $ref: '#/components/schemas/User' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' patch: operationId: core_users_partial_update description: User Viewset @@ -3678,9 +4602,17 @@ paths: $ref: '#/components/schemas/User' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: core_users_destroy description: User Viewset @@ -3699,9 +4631,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /core/users/{id}/metrics/: get: operationId: core_users_metrics_retrieve @@ -3725,9 +4665,17 @@ paths: $ref: '#/components/schemas/UserMetrics' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /core/users/{id}/recovery/: get: operationId: core_users_recovery_retrieve @@ -3757,9 +4705,17 @@ paths: $ref: '#/components/schemas/Link' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /core/users/{id}/recovery_email/: get: operationId: core_users_recovery_email_retrieve @@ -3786,9 +4742,17 @@ paths: '404': description: Bad request '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /core/users/{id}/set_password/: post: operationId: core_users_set_password_create @@ -3816,7 +4780,11 @@ paths: '400': description: Bad request '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /core/users/{id}/used_by/: get: operationId: core_users_used_by_list @@ -3842,9 +4810,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /core/users/me/: get: operationId: core_users_me_retrieve @@ -3861,9 +4837,17 @@ paths: $ref: '#/components/schemas/SessionUser' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /core/users/paths/: get: operationId: core_users_paths_retrieve @@ -3885,9 +4869,17 @@ paths: $ref: '#/components/schemas/UserPath' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /core/users/service_account/: post: operationId: core_users_service_account_create @@ -3910,9 +4902,17 @@ paths: $ref: '#/components/schemas/UserServiceAccountResponse' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /crypto/certificatekeypairs/: get: operationId: crypto_certificatekeypairs_list @@ -3967,9 +4967,17 @@ paths: $ref: '#/components/schemas/PaginatedCertificateKeyPairList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' post: operationId: crypto_certificatekeypairs_create description: CertificateKeyPair Viewset @@ -3991,9 +4999,17 @@ paths: $ref: '#/components/schemas/CertificateKeyPair' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /crypto/certificatekeypairs/{kp_uuid}/: get: operationId: crypto_certificatekeypairs_retrieve @@ -4018,9 +5034,17 @@ paths: $ref: '#/components/schemas/CertificateKeyPair' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' put: operationId: crypto_certificatekeypairs_update description: CertificateKeyPair Viewset @@ -4050,9 +5074,17 @@ paths: $ref: '#/components/schemas/CertificateKeyPair' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' patch: operationId: crypto_certificatekeypairs_partial_update description: CertificateKeyPair Viewset @@ -4081,9 +5113,17 @@ paths: $ref: '#/components/schemas/CertificateKeyPair' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: crypto_certificatekeypairs_destroy description: CertificateKeyPair Viewset @@ -4103,9 +5143,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /crypto/certificatekeypairs/{kp_uuid}/used_by/: get: operationId: crypto_certificatekeypairs_used_by_list @@ -4132,9 +5180,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /crypto/certificatekeypairs/{kp_uuid}/view_certificate/: get: operationId: crypto_certificatekeypairs_view_certificate_retrieve @@ -4163,9 +5219,17 @@ paths: $ref: '#/components/schemas/CertificateData' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /crypto/certificatekeypairs/{kp_uuid}/view_private_key/: get: operationId: crypto_certificatekeypairs_view_private_key_retrieve @@ -4194,9 +5258,17 @@ paths: $ref: '#/components/schemas/CertificateData' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /crypto/certificatekeypairs/generate/: post: operationId: crypto_certificatekeypairs_generate_create @@ -4221,7 +5293,11 @@ paths: '400': description: Bad request '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /events/events/: get: operationId: events_events_list @@ -4301,9 +5377,17 @@ paths: $ref: '#/components/schemas/PaginatedEventList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' post: operationId: events_events_create description: Event Read-Only Viewset @@ -4325,9 +5409,17 @@ paths: $ref: '#/components/schemas/Event' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /events/events/{event_uuid}/: get: operationId: events_events_retrieve @@ -4352,9 +5444,17 @@ paths: $ref: '#/components/schemas/Event' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' put: operationId: events_events_update description: Event Read-Only Viewset @@ -4384,9 +5484,17 @@ paths: $ref: '#/components/schemas/Event' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' patch: operationId: events_events_partial_update description: Event Read-Only Viewset @@ -4415,9 +5523,17 @@ paths: $ref: '#/components/schemas/Event' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: events_events_destroy description: Event Read-Only Viewset @@ -4437,9 +5553,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /events/events/actions/: get: operationId: events_events_actions_list @@ -4458,9 +5582,17 @@ paths: $ref: '#/components/schemas/TypeCreate' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /events/events/per_month/: get: operationId: events_events_per_month_list @@ -4488,9 +5620,17 @@ paths: $ref: '#/components/schemas/Coordinate' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /events/events/top_per_user/: get: operationId: events_events_top_per_user_list @@ -4518,9 +5658,17 @@ paths: $ref: '#/components/schemas/EventTopPerUser' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /events/notifications/: get: operationId: events_notifications_list @@ -4592,9 +5740,17 @@ paths: $ref: '#/components/schemas/PaginatedNotificationList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /events/notifications/{uuid}/: get: operationId: events_notifications_retrieve @@ -4619,9 +5775,17 @@ paths: $ref: '#/components/schemas/Notification' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' put: operationId: events_notifications_update description: Notification Viewset @@ -4650,9 +5814,17 @@ paths: $ref: '#/components/schemas/Notification' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' patch: operationId: events_notifications_partial_update description: Notification Viewset @@ -4681,9 +5853,17 @@ paths: $ref: '#/components/schemas/Notification' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: events_notifications_destroy description: Notification Viewset @@ -4703,9 +5883,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /events/notifications/{uuid}/used_by/: get: operationId: events_notifications_used_by_list @@ -4732,9 +5920,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /events/notifications/mark_all_seen/: post: operationId: events_notifications_mark_all_seen_create @@ -4747,9 +5943,17 @@ paths: '204': description: Marked tasks as read successfully. '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /events/rules/: get: operationId: events_rules_list @@ -4809,9 +6013,17 @@ paths: $ref: '#/components/schemas/PaginatedNotificationRuleList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' post: operationId: events_rules_create description: NotificationRule Viewset @@ -4833,9 +6045,17 @@ paths: $ref: '#/components/schemas/NotificationRule' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /events/rules/{pbm_uuid}/: get: operationId: events_rules_retrieve @@ -4860,9 +6080,17 @@ paths: $ref: '#/components/schemas/NotificationRule' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' put: operationId: events_rules_update description: NotificationRule Viewset @@ -4892,9 +6120,17 @@ paths: $ref: '#/components/schemas/NotificationRule' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' patch: operationId: events_rules_partial_update description: NotificationRule Viewset @@ -4923,9 +6159,17 @@ paths: $ref: '#/components/schemas/NotificationRule' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: events_rules_destroy description: NotificationRule Viewset @@ -4945,9 +6189,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /events/rules/{pbm_uuid}/used_by/: get: operationId: events_rules_used_by_list @@ -4974,9 +6226,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /events/transports/: get: operationId: events_transports_list @@ -5039,9 +6299,17 @@ paths: $ref: '#/components/schemas/PaginatedNotificationTransportList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' post: operationId: events_transports_create description: NotificationTransport Viewset @@ -5063,9 +6331,17 @@ paths: $ref: '#/components/schemas/NotificationTransport' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /events/transports/{uuid}/: get: operationId: events_transports_retrieve @@ -5090,9 +6366,17 @@ paths: $ref: '#/components/schemas/NotificationTransport' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' put: operationId: events_transports_update description: NotificationTransport Viewset @@ -5122,9 +6406,17 @@ paths: $ref: '#/components/schemas/NotificationTransport' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' patch: operationId: events_transports_partial_update description: NotificationTransport Viewset @@ -5153,9 +6445,17 @@ paths: $ref: '#/components/schemas/NotificationTransport' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: events_transports_destroy description: NotificationTransport Viewset @@ -5175,9 +6475,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /events/transports/{uuid}/test/: post: operationId: events_transports_test_create @@ -5206,9 +6514,17 @@ paths: '500': description: Failed to test transport '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /events/transports/{uuid}/used_by/: get: operationId: events_transports_used_by_list @@ -5235,9 +6551,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /flows/bindings/: get: operationId: flows_bindings_list @@ -5339,9 +6663,17 @@ paths: $ref: '#/components/schemas/PaginatedFlowStageBindingList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' post: operationId: flows_bindings_create description: FlowStageBinding Viewset @@ -5363,9 +6695,17 @@ paths: $ref: '#/components/schemas/FlowStageBinding' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /flows/bindings/{fsb_uuid}/: get: operationId: flows_bindings_retrieve @@ -5390,9 +6730,17 @@ paths: $ref: '#/components/schemas/FlowStageBinding' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' put: operationId: flows_bindings_update description: FlowStageBinding Viewset @@ -5422,9 +6770,17 @@ paths: $ref: '#/components/schemas/FlowStageBinding' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' patch: operationId: flows_bindings_partial_update description: FlowStageBinding Viewset @@ -5453,9 +6809,17 @@ paths: $ref: '#/components/schemas/FlowStageBinding' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: flows_bindings_destroy description: FlowStageBinding Viewset @@ -5475,9 +6839,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /flows/bindings/{fsb_uuid}/used_by/: get: operationId: flows_bindings_used_by_list @@ -5504,9 +6876,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /flows/executor/{flow_slug}/: get: operationId: flows_executor_get @@ -5536,9 +6916,17 @@ paths: $ref: '#/components/schemas/ChallengeTypes' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' post: operationId: flows_executor_solve description: Solve the previously retrieved challenge and advanced to the next @@ -5573,9 +6961,17 @@ paths: $ref: '#/components/schemas/ChallengeTypes' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /flows/inspector/{flow_slug}/: get: operationId: flows_inspector_get @@ -5600,7 +6996,11 @@ paths: '400': description: No flow plan in session. '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /flows/instances/: get: operationId: flows_instances_list @@ -5678,9 +7078,17 @@ paths: $ref: '#/components/schemas/PaginatedFlowList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' post: operationId: flows_instances_create description: Flow Viewset @@ -5702,9 +7110,17 @@ paths: $ref: '#/components/schemas/Flow' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /flows/instances/{slug}/: get: operationId: flows_instances_retrieve @@ -5728,9 +7144,17 @@ paths: $ref: '#/components/schemas/Flow' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' put: operationId: flows_instances_update description: Flow Viewset @@ -5759,9 +7183,17 @@ paths: $ref: '#/components/schemas/Flow' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' patch: operationId: flows_instances_partial_update description: Flow Viewset @@ -5789,9 +7221,17 @@ paths: $ref: '#/components/schemas/Flow' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: flows_instances_destroy description: Flow Viewset @@ -5810,9 +7250,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /flows/instances/{slug}/diagram/: get: operationId: flows_instances_diagram_retrieve @@ -5837,9 +7285,17 @@ paths: $ref: '#/components/schemas/FlowDiagram' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /flows/instances/{slug}/execute/: get: operationId: flows_instances_execute_retrieve @@ -5865,7 +7321,11 @@ paths: '400': description: Flow not applicable '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /flows/instances/{slug}/export/: get: operationId: flows_instances_export_retrieve @@ -5890,9 +7350,17 @@ paths: format: binary description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /flows/instances/{slug}/set_background/: post: operationId: flows_instances_set_background_create @@ -5919,7 +7387,11 @@ paths: '400': description: Bad request '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /flows/instances/{slug}/set_background_url/: post: operationId: flows_instances_set_background_url_create @@ -5947,7 +7419,11 @@ paths: '400': description: Bad request '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /flows/instances/{slug}/used_by/: get: operationId: flows_instances_used_by_list @@ -5973,9 +7449,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /flows/instances/cache_clear/: post: operationId: flows_instances_cache_clear_create @@ -5990,7 +7474,11 @@ paths: '400': description: Bad request '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /flows/instances/cache_info/: get: operationId: flows_instances_cache_info_retrieve @@ -6007,9 +7495,17 @@ paths: $ref: '#/components/schemas/Cache' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /flows/instances/import_flow/: post: operationId: flows_instances_import_flow_create @@ -6029,7 +7525,11 @@ paths: '400': description: Bad request '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /managed/blueprints/: get: operationId: managed_blueprints_list @@ -6079,9 +7579,17 @@ paths: $ref: '#/components/schemas/PaginatedBlueprintInstanceList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' post: operationId: managed_blueprints_create description: Blueprint instances @@ -6103,9 +7611,17 @@ paths: $ref: '#/components/schemas/BlueprintInstance' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /managed/blueprints/{instance_uuid}/: get: operationId: managed_blueprints_retrieve @@ -6130,9 +7646,17 @@ paths: $ref: '#/components/schemas/BlueprintInstance' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' put: operationId: managed_blueprints_update description: Blueprint instances @@ -6162,9 +7686,17 @@ paths: $ref: '#/components/schemas/BlueprintInstance' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' patch: operationId: managed_blueprints_partial_update description: Blueprint instances @@ -6193,9 +7725,17 @@ paths: $ref: '#/components/schemas/BlueprintInstance' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: managed_blueprints_destroy description: Blueprint instances @@ -6215,9 +7755,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /managed/blueprints/{instance_uuid}/apply/: post: operationId: managed_blueprints_apply_create @@ -6242,9 +7790,17 @@ paths: $ref: '#/components/schemas/BlueprintInstance' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /managed/blueprints/{instance_uuid}/used_by/: get: operationId: managed_blueprints_used_by_list @@ -6271,9 +7827,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /managed/blueprints/available/: get: operationId: managed_blueprints_available_list @@ -6292,9 +7856,17 @@ paths: $ref: '#/components/schemas/BlueprintFile' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /oauth2/authorization_codes/: get: operationId: oauth2_authorization_codes_list @@ -6344,9 +7916,17 @@ paths: $ref: '#/components/schemas/PaginatedExpiringBaseGrantModelList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /oauth2/authorization_codes/{id}/: get: operationId: oauth2_authorization_codes_retrieve @@ -6370,9 +7950,17 @@ paths: $ref: '#/components/schemas/ExpiringBaseGrantModel' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: oauth2_authorization_codes_destroy description: AuthorizationCode Viewset @@ -6391,9 +7979,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /oauth2/authorization_codes/{id}/used_by/: get: operationId: oauth2_authorization_codes_used_by_list @@ -6419,9 +8015,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /oauth2/refresh_tokens/: get: operationId: oauth2_refresh_tokens_list @@ -6471,9 +8075,17 @@ paths: $ref: '#/components/schemas/PaginatedRefreshTokenModelList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /oauth2/refresh_tokens/{id}/: get: operationId: oauth2_refresh_tokens_retrieve @@ -6497,9 +8109,17 @@ paths: $ref: '#/components/schemas/RefreshTokenModel' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: oauth2_refresh_tokens_destroy description: RefreshToken Viewset @@ -6518,9 +8138,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /oauth2/refresh_tokens/{id}/used_by/: get: operationId: oauth2_refresh_tokens_used_by_list @@ -6546,9 +8174,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /outposts/instances/: get: operationId: outposts_instances_list @@ -6626,9 +8262,17 @@ paths: $ref: '#/components/schemas/PaginatedOutpostList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' post: operationId: outposts_instances_create description: Outpost Viewset @@ -6650,9 +8294,17 @@ paths: $ref: '#/components/schemas/Outpost' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /outposts/instances/{uuid}/: get: operationId: outposts_instances_retrieve @@ -6677,9 +8329,17 @@ paths: $ref: '#/components/schemas/Outpost' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' put: operationId: outposts_instances_update description: Outpost Viewset @@ -6709,9 +8369,17 @@ paths: $ref: '#/components/schemas/Outpost' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' patch: operationId: outposts_instances_partial_update description: Outpost Viewset @@ -6740,9 +8408,17 @@ paths: $ref: '#/components/schemas/Outpost' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: outposts_instances_destroy description: Outpost Viewset @@ -6762,9 +8438,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /outposts/instances/{uuid}/health/: get: operationId: outposts_instances_health_list @@ -6839,9 +8523,17 @@ paths: $ref: '#/components/schemas/OutpostHealth' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /outposts/instances/{uuid}/used_by/: get: operationId: outposts_instances_used_by_list @@ -6868,9 +8560,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /outposts/instances/default_settings/: get: operationId: outposts_instances_default_settings_retrieve @@ -6887,9 +8587,17 @@ paths: $ref: '#/components/schemas/OutpostDefaultConfig' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /outposts/ldap/: get: operationId: outposts_ldap_list @@ -6935,9 +8643,17 @@ paths: $ref: '#/components/schemas/PaginatedLDAPOutpostConfigList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /outposts/ldap/{id}/: get: operationId: outposts_ldap_retrieve @@ -6961,9 +8677,17 @@ paths: $ref: '#/components/schemas/LDAPOutpostConfig' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /outposts/proxy/: get: operationId: outposts_proxy_list @@ -7009,9 +8733,17 @@ paths: $ref: '#/components/schemas/PaginatedProxyOutpostConfigList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /outposts/proxy/{id}/: get: operationId: outposts_proxy_retrieve @@ -7035,9 +8767,17 @@ paths: $ref: '#/components/schemas/ProxyOutpostConfig' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /outposts/service_connections/all/: get: operationId: outposts_service_connections_all_list @@ -7083,9 +8823,17 @@ paths: $ref: '#/components/schemas/PaginatedServiceConnectionList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /outposts/service_connections/all/{uuid}/: get: operationId: outposts_service_connections_all_retrieve @@ -7110,9 +8858,17 @@ paths: $ref: '#/components/schemas/ServiceConnection' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: outposts_service_connections_all_destroy description: ServiceConnection Viewset @@ -7132,9 +8888,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /outposts/service_connections/all/{uuid}/state/: get: operationId: outposts_service_connections_all_state_retrieve @@ -7159,9 +8923,17 @@ paths: $ref: '#/components/schemas/ServiceConnectionState' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /outposts/service_connections/all/{uuid}/used_by/: get: operationId: outposts_service_connections_all_used_by_list @@ -7188,9 +8960,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /outposts/service_connections/all/types/: get: operationId: outposts_service_connections_all_types_list @@ -7209,9 +8989,17 @@ paths: $ref: '#/components/schemas/TypeCreate' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /outposts/service_connections/docker/: get: operationId: outposts_service_connections_docker_list @@ -7275,9 +9063,17 @@ paths: $ref: '#/components/schemas/PaginatedDockerServiceConnectionList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' post: operationId: outposts_service_connections_docker_create description: DockerServiceConnection Viewset @@ -7299,9 +9095,17 @@ paths: $ref: '#/components/schemas/DockerServiceConnection' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /outposts/service_connections/docker/{uuid}/: get: operationId: outposts_service_connections_docker_retrieve @@ -7326,9 +9130,17 @@ paths: $ref: '#/components/schemas/DockerServiceConnection' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' put: operationId: outposts_service_connections_docker_update description: DockerServiceConnection Viewset @@ -7358,9 +9170,17 @@ paths: $ref: '#/components/schemas/DockerServiceConnection' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' patch: operationId: outposts_service_connections_docker_partial_update description: DockerServiceConnection Viewset @@ -7389,9 +9209,17 @@ paths: $ref: '#/components/schemas/DockerServiceConnection' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: outposts_service_connections_docker_destroy description: DockerServiceConnection Viewset @@ -7411,9 +9239,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /outposts/service_connections/docker/{uuid}/used_by/: get: operationId: outposts_service_connections_docker_used_by_list @@ -7440,9 +9276,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /outposts/service_connections/kubernetes/: get: operationId: outposts_service_connections_kubernetes_list @@ -7492,9 +9336,17 @@ paths: $ref: '#/components/schemas/PaginatedKubernetesServiceConnectionList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' post: operationId: outposts_service_connections_kubernetes_create description: KubernetesServiceConnection Viewset @@ -7516,9 +9368,17 @@ paths: $ref: '#/components/schemas/KubernetesServiceConnection' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /outposts/service_connections/kubernetes/{uuid}/: get: operationId: outposts_service_connections_kubernetes_retrieve @@ -7543,9 +9403,17 @@ paths: $ref: '#/components/schemas/KubernetesServiceConnection' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' put: operationId: outposts_service_connections_kubernetes_update description: KubernetesServiceConnection Viewset @@ -7575,9 +9443,17 @@ paths: $ref: '#/components/schemas/KubernetesServiceConnection' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' patch: operationId: outposts_service_connections_kubernetes_partial_update description: KubernetesServiceConnection Viewset @@ -7606,9 +9482,17 @@ paths: $ref: '#/components/schemas/KubernetesServiceConnection' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: outposts_service_connections_kubernetes_destroy description: KubernetesServiceConnection Viewset @@ -7628,9 +9512,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /outposts/service_connections/kubernetes/{uuid}/used_by/: get: operationId: outposts_service_connections_kubernetes_used_by_list @@ -7657,9 +9549,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /policies/all/: get: operationId: policies_all_list @@ -7709,9 +9609,17 @@ paths: $ref: '#/components/schemas/PaginatedPolicyList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /policies/all/{policy_uuid}/: get: operationId: policies_all_retrieve @@ -7736,9 +9644,17 @@ paths: $ref: '#/components/schemas/Policy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: policies_all_destroy description: Policy Viewset @@ -7758,9 +9674,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /policies/all/{policy_uuid}/test/: post: operationId: policies_all_test_create @@ -7793,7 +9717,11 @@ paths: '400': description: Invalid parameters '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /policies/all/{policy_uuid}/used_by/: get: operationId: policies_all_used_by_list @@ -7820,9 +9748,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /policies/all/cache_clear/: post: operationId: policies_all_cache_clear_create @@ -7837,7 +9773,11 @@ paths: '400': description: Bad request '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /policies/all/cache_info/: get: operationId: policies_all_cache_info_retrieve @@ -7854,9 +9794,17 @@ paths: $ref: '#/components/schemas/Cache' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /policies/all/types/: get: operationId: policies_all_types_list @@ -7875,9 +9823,17 @@ paths: $ref: '#/components/schemas/TypeCreate' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /policies/bindings/: get: operationId: policies_bindings_list @@ -7954,9 +9910,17 @@ paths: $ref: '#/components/schemas/PaginatedPolicyBindingList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' post: operationId: policies_bindings_create description: PolicyBinding Viewset @@ -7978,9 +9942,17 @@ paths: $ref: '#/components/schemas/PolicyBinding' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /policies/bindings/{policy_binding_uuid}/: get: operationId: policies_bindings_retrieve @@ -8005,9 +9977,17 @@ paths: $ref: '#/components/schemas/PolicyBinding' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' put: operationId: policies_bindings_update description: PolicyBinding Viewset @@ -8037,9 +10017,17 @@ paths: $ref: '#/components/schemas/PolicyBinding' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' patch: operationId: policies_bindings_partial_update description: PolicyBinding Viewset @@ -8068,9 +10056,17 @@ paths: $ref: '#/components/schemas/PolicyBinding' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: policies_bindings_destroy description: PolicyBinding Viewset @@ -8090,9 +10086,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /policies/bindings/{policy_binding_uuid}/used_by/: get: operationId: policies_bindings_used_by_list @@ -8119,9 +10123,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /policies/dummy/: get: operationId: policies_dummy_list @@ -8198,9 +10210,17 @@ paths: $ref: '#/components/schemas/PaginatedDummyPolicyList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' post: operationId: policies_dummy_create description: Dummy Viewset @@ -8221,9 +10241,17 @@ paths: $ref: '#/components/schemas/DummyPolicy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /policies/dummy/{policy_uuid}/: get: operationId: policies_dummy_retrieve @@ -8248,9 +10276,17 @@ paths: $ref: '#/components/schemas/DummyPolicy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' put: operationId: policies_dummy_update description: Dummy Viewset @@ -8279,9 +10315,17 @@ paths: $ref: '#/components/schemas/DummyPolicy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' patch: operationId: policies_dummy_partial_update description: Dummy Viewset @@ -8310,9 +10354,17 @@ paths: $ref: '#/components/schemas/DummyPolicy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: policies_dummy_destroy description: Dummy Viewset @@ -8332,9 +10384,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /policies/dummy/{policy_uuid}/used_by/: get: operationId: policies_dummy_used_by_list @@ -8361,9 +10421,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /policies/event_matcher/: get: operationId: policies_event_matcher_list @@ -8519,9 +10587,17 @@ paths: $ref: '#/components/schemas/PaginatedEventMatcherPolicyList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' post: operationId: policies_event_matcher_create description: Event Matcher Policy Viewset @@ -8542,9 +10618,17 @@ paths: $ref: '#/components/schemas/EventMatcherPolicy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /policies/event_matcher/{policy_uuid}/: get: operationId: policies_event_matcher_retrieve @@ -8569,9 +10653,17 @@ paths: $ref: '#/components/schemas/EventMatcherPolicy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' put: operationId: policies_event_matcher_update description: Event Matcher Policy Viewset @@ -8600,9 +10692,17 @@ paths: $ref: '#/components/schemas/EventMatcherPolicy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' patch: operationId: policies_event_matcher_partial_update description: Event Matcher Policy Viewset @@ -8631,9 +10731,17 @@ paths: $ref: '#/components/schemas/EventMatcherPolicy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: policies_event_matcher_destroy description: Event Matcher Policy Viewset @@ -8653,9 +10761,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /policies/event_matcher/{policy_uuid}/used_by/: get: operationId: policies_event_matcher_used_by_list @@ -8682,9 +10798,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /policies/expression/: get: operationId: policies_expression_list @@ -8753,9 +10877,17 @@ paths: $ref: '#/components/schemas/PaginatedExpressionPolicyList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' post: operationId: policies_expression_create description: Source Viewset @@ -8777,9 +10909,17 @@ paths: $ref: '#/components/schemas/ExpressionPolicy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /policies/expression/{policy_uuid}/: get: operationId: policies_expression_retrieve @@ -8804,9 +10944,17 @@ paths: $ref: '#/components/schemas/ExpressionPolicy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' put: operationId: policies_expression_update description: Source Viewset @@ -8836,9 +10984,17 @@ paths: $ref: '#/components/schemas/ExpressionPolicy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' patch: operationId: policies_expression_partial_update description: Source Viewset @@ -8867,9 +11023,17 @@ paths: $ref: '#/components/schemas/ExpressionPolicy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: policies_expression_destroy description: Source Viewset @@ -8889,9 +11053,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /policies/expression/{policy_uuid}/used_by/: get: operationId: policies_expression_used_by_list @@ -8918,9 +11090,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /policies/haveibeenpwned/: get: operationId: policies_haveibeenpwned_list @@ -8993,9 +11173,17 @@ paths: $ref: '#/components/schemas/PaginatedHaveIBeenPwendPolicyList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' post: operationId: policies_haveibeenpwned_create description: Source Viewset @@ -9016,9 +11204,17 @@ paths: $ref: '#/components/schemas/HaveIBeenPwendPolicy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /policies/haveibeenpwned/{policy_uuid}/: get: operationId: policies_haveibeenpwned_retrieve @@ -9043,9 +11239,17 @@ paths: $ref: '#/components/schemas/HaveIBeenPwendPolicy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' put: operationId: policies_haveibeenpwned_update description: Source Viewset @@ -9074,9 +11278,17 @@ paths: $ref: '#/components/schemas/HaveIBeenPwendPolicy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' patch: operationId: policies_haveibeenpwned_partial_update description: Source Viewset @@ -9105,9 +11317,17 @@ paths: $ref: '#/components/schemas/HaveIBeenPwendPolicy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: policies_haveibeenpwned_destroy description: Source Viewset @@ -9127,9 +11347,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /policies/haveibeenpwned/{policy_uuid}/used_by/: get: operationId: policies_haveibeenpwned_used_by_list @@ -9156,9 +11384,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /policies/password/: get: operationId: policies_password_list @@ -9255,9 +11491,17 @@ paths: $ref: '#/components/schemas/PaginatedPasswordPolicyList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' post: operationId: policies_password_create description: Password Policy Viewset @@ -9279,9 +11523,17 @@ paths: $ref: '#/components/schemas/PasswordPolicy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /policies/password/{policy_uuid}/: get: operationId: policies_password_retrieve @@ -9306,9 +11558,17 @@ paths: $ref: '#/components/schemas/PasswordPolicy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' put: operationId: policies_password_update description: Password Policy Viewset @@ -9338,9 +11598,17 @@ paths: $ref: '#/components/schemas/PasswordPolicy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' patch: operationId: policies_password_partial_update description: Password Policy Viewset @@ -9369,9 +11637,17 @@ paths: $ref: '#/components/schemas/PasswordPolicy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: policies_password_destroy description: Password Policy Viewset @@ -9391,9 +11667,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /policies/password/{policy_uuid}/used_by/: get: operationId: policies_password_used_by_list @@ -9420,9 +11704,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /policies/password_expiry/: get: operationId: policies_password_expiry_list @@ -9495,9 +11787,17 @@ paths: $ref: '#/components/schemas/PaginatedPasswordExpiryPolicyList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' post: operationId: policies_password_expiry_create description: Password Expiry Viewset @@ -9519,9 +11819,17 @@ paths: $ref: '#/components/schemas/PasswordExpiryPolicy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /policies/password_expiry/{policy_uuid}/: get: operationId: policies_password_expiry_retrieve @@ -9546,9 +11854,17 @@ paths: $ref: '#/components/schemas/PasswordExpiryPolicy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' put: operationId: policies_password_expiry_update description: Password Expiry Viewset @@ -9578,9 +11894,17 @@ paths: $ref: '#/components/schemas/PasswordExpiryPolicy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' patch: operationId: policies_password_expiry_partial_update description: Password Expiry Viewset @@ -9609,9 +11933,17 @@ paths: $ref: '#/components/schemas/PasswordExpiryPolicy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: policies_password_expiry_destroy description: Password Expiry Viewset @@ -9631,9 +11963,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /policies/password_expiry/{policy_uuid}/used_by/: get: operationId: policies_password_expiry_used_by_list @@ -9660,9 +12000,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /policies/reputation/: get: operationId: policies_reputation_list @@ -9739,9 +12087,17 @@ paths: $ref: '#/components/schemas/PaginatedReputationPolicyList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' post: operationId: policies_reputation_create description: Reputation Policy Viewset @@ -9762,9 +12118,17 @@ paths: $ref: '#/components/schemas/ReputationPolicy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /policies/reputation/{policy_uuid}/: get: operationId: policies_reputation_retrieve @@ -9789,9 +12153,17 @@ paths: $ref: '#/components/schemas/ReputationPolicy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' put: operationId: policies_reputation_update description: Reputation Policy Viewset @@ -9820,9 +12192,17 @@ paths: $ref: '#/components/schemas/ReputationPolicy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' patch: operationId: policies_reputation_partial_update description: Reputation Policy Viewset @@ -9851,9 +12231,17 @@ paths: $ref: '#/components/schemas/ReputationPolicy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: policies_reputation_destroy description: Reputation Policy Viewset @@ -9873,9 +12261,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /policies/reputation/{policy_uuid}/used_by/: get: operationId: policies_reputation_used_by_list @@ -9902,9 +12298,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /policies/reputation/scores/: get: operationId: policies_reputation_scores_list @@ -9958,9 +12362,17 @@ paths: $ref: '#/components/schemas/PaginatedReputationList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /policies/reputation/scores/{reputation_uuid}/: get: operationId: policies_reputation_scores_retrieve @@ -9985,9 +12397,17 @@ paths: $ref: '#/components/schemas/Reputation' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: policies_reputation_scores_destroy description: Reputation Viewset @@ -10007,9 +12427,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /policies/reputation/scores/{reputation_uuid}/used_by/: get: operationId: policies_reputation_scores_used_by_list @@ -10036,9 +12464,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /propertymappings/all/: get: operationId: propertymappings_all_list @@ -10084,9 +12520,17 @@ paths: $ref: '#/components/schemas/PaginatedPropertyMappingList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /propertymappings/all/{pm_uuid}/: get: operationId: propertymappings_all_retrieve @@ -10111,9 +12555,17 @@ paths: $ref: '#/components/schemas/PropertyMapping' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: propertymappings_all_destroy description: PropertyMapping Viewset @@ -10133,9 +12585,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /propertymappings/all/{pm_uuid}/test/: post: operationId: propertymappings_all_test_create @@ -10172,7 +12632,11 @@ paths: '400': description: Invalid parameters '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /propertymappings/all/{pm_uuid}/used_by/: get: operationId: propertymappings_all_used_by_list @@ -10199,9 +12663,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /propertymappings/all/types/: get: operationId: propertymappings_all_types_list @@ -10220,9 +12692,17 @@ paths: $ref: '#/components/schemas/TypeCreate' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /propertymappings/ldap/: get: operationId: propertymappings_ldap_list @@ -10289,9 +12769,17 @@ paths: $ref: '#/components/schemas/PaginatedLDAPPropertyMappingList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' post: operationId: propertymappings_ldap_create description: LDAP PropertyMapping Viewset @@ -10313,9 +12801,17 @@ paths: $ref: '#/components/schemas/LDAPPropertyMapping' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /propertymappings/ldap/{pm_uuid}/: get: operationId: propertymappings_ldap_retrieve @@ -10340,9 +12836,17 @@ paths: $ref: '#/components/schemas/LDAPPropertyMapping' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' put: operationId: propertymappings_ldap_update description: LDAP PropertyMapping Viewset @@ -10372,9 +12876,17 @@ paths: $ref: '#/components/schemas/LDAPPropertyMapping' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' patch: operationId: propertymappings_ldap_partial_update description: LDAP PropertyMapping Viewset @@ -10403,9 +12915,17 @@ paths: $ref: '#/components/schemas/LDAPPropertyMapping' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: propertymappings_ldap_destroy description: LDAP PropertyMapping Viewset @@ -10425,9 +12945,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /propertymappings/ldap/{pm_uuid}/used_by/: get: operationId: propertymappings_ldap_used_by_list @@ -10454,9 +12982,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /propertymappings/notification/: get: operationId: propertymappings_notification_list @@ -10502,9 +13038,17 @@ paths: $ref: '#/components/schemas/PaginatedNotificationWebhookMappingList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' post: operationId: propertymappings_notification_create description: NotificationWebhookMapping Viewset @@ -10526,9 +13070,17 @@ paths: $ref: '#/components/schemas/NotificationWebhookMapping' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /propertymappings/notification/{pm_uuid}/: get: operationId: propertymappings_notification_retrieve @@ -10553,9 +13105,17 @@ paths: $ref: '#/components/schemas/NotificationWebhookMapping' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' put: operationId: propertymappings_notification_update description: NotificationWebhookMapping Viewset @@ -10585,9 +13145,17 @@ paths: $ref: '#/components/schemas/NotificationWebhookMapping' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' patch: operationId: propertymappings_notification_partial_update description: NotificationWebhookMapping Viewset @@ -10616,9 +13184,17 @@ paths: $ref: '#/components/schemas/NotificationWebhookMapping' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: propertymappings_notification_destroy description: NotificationWebhookMapping Viewset @@ -10638,9 +13214,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /propertymappings/notification/{pm_uuid}/used_by/: get: operationId: propertymappings_notification_used_by_list @@ -10667,9 +13251,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /propertymappings/saml/: get: operationId: propertymappings_saml_list @@ -10740,9 +13332,17 @@ paths: $ref: '#/components/schemas/PaginatedSAMLPropertyMappingList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' post: operationId: propertymappings_saml_create description: SAMLPropertyMapping Viewset @@ -10764,9 +13364,17 @@ paths: $ref: '#/components/schemas/SAMLPropertyMapping' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /propertymappings/saml/{pm_uuid}/: get: operationId: propertymappings_saml_retrieve @@ -10791,9 +13399,17 @@ paths: $ref: '#/components/schemas/SAMLPropertyMapping' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' put: operationId: propertymappings_saml_update description: SAMLPropertyMapping Viewset @@ -10823,9 +13439,17 @@ paths: $ref: '#/components/schemas/SAMLPropertyMapping' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' patch: operationId: propertymappings_saml_partial_update description: SAMLPropertyMapping Viewset @@ -10854,9 +13478,17 @@ paths: $ref: '#/components/schemas/SAMLPropertyMapping' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: propertymappings_saml_destroy description: SAMLPropertyMapping Viewset @@ -10876,9 +13508,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /propertymappings/saml/{pm_uuid}/used_by/: get: operationId: propertymappings_saml_used_by_list @@ -10905,9 +13545,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /propertymappings/scope/: get: operationId: propertymappings_scope_list @@ -10965,9 +13613,17 @@ paths: $ref: '#/components/schemas/PaginatedScopeMappingList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' post: operationId: propertymappings_scope_create description: ScopeMapping Viewset @@ -10989,9 +13645,17 @@ paths: $ref: '#/components/schemas/ScopeMapping' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /propertymappings/scope/{pm_uuid}/: get: operationId: propertymappings_scope_retrieve @@ -11016,9 +13680,17 @@ paths: $ref: '#/components/schemas/ScopeMapping' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' put: operationId: propertymappings_scope_update description: ScopeMapping Viewset @@ -11048,9 +13720,17 @@ paths: $ref: '#/components/schemas/ScopeMapping' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' patch: operationId: propertymappings_scope_partial_update description: ScopeMapping Viewset @@ -11079,9 +13759,17 @@ paths: $ref: '#/components/schemas/ScopeMapping' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: propertymappings_scope_destroy description: ScopeMapping Viewset @@ -11101,9 +13789,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /propertymappings/scope/{pm_uuid}/used_by/: get: operationId: propertymappings_scope_used_by_list @@ -11130,9 +13826,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /providers/all/: get: operationId: providers_all_list @@ -11178,9 +13882,17 @@ paths: $ref: '#/components/schemas/PaginatedProviderList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /providers/all/{id}/: get: operationId: providers_all_retrieve @@ -11204,9 +13916,17 @@ paths: $ref: '#/components/schemas/Provider' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: providers_all_destroy description: Provider Viewset @@ -11225,9 +13945,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /providers/all/{id}/used_by/: get: operationId: providers_all_used_by_list @@ -11253,9 +13981,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /providers/all/types/: get: operationId: providers_all_types_list @@ -11274,9 +14010,17 @@ paths: $ref: '#/components/schemas/TypeCreate' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /providers/ldap/: get: operationId: providers_ldap_list @@ -11364,9 +14108,17 @@ paths: $ref: '#/components/schemas/PaginatedLDAPProviderList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' post: operationId: providers_ldap_create description: LDAPProvider Viewset @@ -11388,9 +14140,17 @@ paths: $ref: '#/components/schemas/LDAPProvider' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /providers/ldap/{id}/: get: operationId: providers_ldap_retrieve @@ -11414,9 +14174,17 @@ paths: $ref: '#/components/schemas/LDAPProvider' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' put: operationId: providers_ldap_update description: LDAPProvider Viewset @@ -11445,9 +14213,17 @@ paths: $ref: '#/components/schemas/LDAPProvider' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' patch: operationId: providers_ldap_partial_update description: LDAPProvider Viewset @@ -11475,9 +14251,17 @@ paths: $ref: '#/components/schemas/LDAPProvider' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: providers_ldap_destroy description: LDAPProvider Viewset @@ -11496,9 +14280,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /providers/ldap/{id}/used_by/: get: operationId: providers_ldap_used_by_list @@ -11524,9 +14316,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /providers/oauth2/: get: operationId: providers_oauth2_list @@ -11644,9 +14444,17 @@ paths: $ref: '#/components/schemas/PaginatedOAuth2ProviderList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' post: operationId: providers_oauth2_create description: OAuth2Provider Viewset @@ -11668,9 +14476,17 @@ paths: $ref: '#/components/schemas/OAuth2Provider' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /providers/oauth2/{id}/: get: operationId: providers_oauth2_retrieve @@ -11694,9 +14510,17 @@ paths: $ref: '#/components/schemas/OAuth2Provider' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' put: operationId: providers_oauth2_update description: OAuth2Provider Viewset @@ -11725,9 +14549,17 @@ paths: $ref: '#/components/schemas/OAuth2Provider' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' patch: operationId: providers_oauth2_partial_update description: OAuth2Provider Viewset @@ -11755,9 +14587,17 @@ paths: $ref: '#/components/schemas/OAuth2Provider' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: providers_oauth2_destroy description: OAuth2Provider Viewset @@ -11776,9 +14616,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /providers/oauth2/{id}/setup_urls/: get: operationId: providers_oauth2_setup_urls_retrieve @@ -11804,9 +14652,17 @@ paths: '404': description: Provider has no application assigned '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /providers/oauth2/{id}/used_by/: get: operationId: providers_oauth2_used_by_list @@ -11832,9 +14688,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /providers/proxy/: get: operationId: providers_proxy_list @@ -11946,9 +14810,17 @@ paths: $ref: '#/components/schemas/PaginatedProxyProviderList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' post: operationId: providers_proxy_create description: ProxyProvider Viewset @@ -11970,9 +14842,17 @@ paths: $ref: '#/components/schemas/ProxyProvider' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /providers/proxy/{id}/: get: operationId: providers_proxy_retrieve @@ -11996,9 +14876,17 @@ paths: $ref: '#/components/schemas/ProxyProvider' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' put: operationId: providers_proxy_update description: ProxyProvider Viewset @@ -12027,9 +14915,17 @@ paths: $ref: '#/components/schemas/ProxyProvider' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' patch: operationId: providers_proxy_partial_update description: ProxyProvider Viewset @@ -12057,9 +14953,17 @@ paths: $ref: '#/components/schemas/ProxyProvider' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: providers_proxy_destroy description: ProxyProvider Viewset @@ -12078,9 +14982,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /providers/proxy/{id}/used_by/: get: operationId: providers_proxy_used_by_list @@ -12106,9 +15018,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /providers/saml/: get: operationId: providers_saml_list @@ -12236,9 +15156,17 @@ paths: $ref: '#/components/schemas/PaginatedSAMLProviderList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' post: operationId: providers_saml_create description: SAMLProvider Viewset @@ -12260,9 +15188,17 @@ paths: $ref: '#/components/schemas/SAMLProvider' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /providers/saml/{id}/: get: operationId: providers_saml_retrieve @@ -12286,9 +15222,17 @@ paths: $ref: '#/components/schemas/SAMLProvider' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' put: operationId: providers_saml_update description: SAMLProvider Viewset @@ -12317,9 +15261,17 @@ paths: $ref: '#/components/schemas/SAMLProvider' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' patch: operationId: providers_saml_partial_update description: SAMLProvider Viewset @@ -12347,9 +15299,17 @@ paths: $ref: '#/components/schemas/SAMLProvider' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: providers_saml_destroy description: SAMLProvider Viewset @@ -12368,9 +15328,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /providers/saml/{id}/metadata/: get: operationId: providers_saml_metadata_retrieve @@ -12409,9 +15377,17 @@ paths: '404': description: Provider has no application assigned '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /providers/saml/{id}/used_by/: get: operationId: providers_saml_used_by_list @@ -12437,9 +15413,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /providers/saml/import_metadata/: post: operationId: providers_saml_import_metadata_create @@ -12460,7 +15444,11 @@ paths: '400': description: Bad request '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /root/config/: get: operationId: root_config_retrieve @@ -12478,9 +15466,17 @@ paths: $ref: '#/components/schemas/Config' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /schema/: get: operationId: schema_retrieve @@ -12625,9 +15621,17 @@ paths: additionalProperties: {} description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /sources/all/: get: operationId: sources_all_list @@ -12681,9 +15685,17 @@ paths: $ref: '#/components/schemas/PaginatedSourceList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /sources/all/{slug}/: get: operationId: sources_all_retrieve @@ -12707,9 +15719,17 @@ paths: $ref: '#/components/schemas/Source' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: sources_all_destroy description: Source Viewset @@ -12728,9 +15748,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /sources/all/{slug}/used_by/: get: operationId: sources_all_used_by_list @@ -12756,9 +15784,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /sources/all/types/: get: operationId: sources_all_types_list @@ -12777,9 +15813,17 @@ paths: $ref: '#/components/schemas/TypeCreate' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /sources/all/user_settings/: get: operationId: sources_all_user_settings_list @@ -12798,9 +15842,17 @@ paths: $ref: '#/components/schemas/UserSetting' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /sources/ldap/: get: operationId: sources_ldap_list @@ -12934,9 +15986,17 @@ paths: $ref: '#/components/schemas/PaginatedLDAPSourceList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' post: operationId: sources_ldap_create description: LDAP Source Viewset @@ -12958,9 +16018,17 @@ paths: $ref: '#/components/schemas/LDAPSource' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /sources/ldap/{slug}/: get: operationId: sources_ldap_retrieve @@ -12984,9 +16052,17 @@ paths: $ref: '#/components/schemas/LDAPSource' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' put: operationId: sources_ldap_update description: LDAP Source Viewset @@ -13015,9 +16091,17 @@ paths: $ref: '#/components/schemas/LDAPSource' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' patch: operationId: sources_ldap_partial_update description: LDAP Source Viewset @@ -13045,9 +16129,17 @@ paths: $ref: '#/components/schemas/LDAPSource' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: sources_ldap_destroy description: LDAP Source Viewset @@ -13066,9 +16158,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /sources/ldap/{slug}/sync_status/: get: operationId: sources_ldap_sync_status_list @@ -13094,9 +16194,17 @@ paths: $ref: '#/components/schemas/Task' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /sources/ldap/{slug}/used_by/: get: operationId: sources_ldap_used_by_list @@ -13122,9 +16230,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /sources/oauth/: get: operationId: sources_oauth_list @@ -13235,9 +16351,17 @@ paths: $ref: '#/components/schemas/PaginatedOAuthSourceList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' post: operationId: sources_oauth_create description: Source Viewset @@ -13259,9 +16383,17 @@ paths: $ref: '#/components/schemas/OAuthSource' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /sources/oauth/{slug}/: get: operationId: sources_oauth_retrieve @@ -13285,9 +16417,17 @@ paths: $ref: '#/components/schemas/OAuthSource' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' put: operationId: sources_oauth_update description: Source Viewset @@ -13316,9 +16456,17 @@ paths: $ref: '#/components/schemas/OAuthSource' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' patch: operationId: sources_oauth_partial_update description: Source Viewset @@ -13346,9 +16494,17 @@ paths: $ref: '#/components/schemas/OAuthSource' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: sources_oauth_destroy description: Source Viewset @@ -13367,9 +16523,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /sources/oauth/{slug}/used_by/: get: operationId: sources_oauth_used_by_list @@ -13395,9 +16559,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /sources/oauth/source_types/: get: operationId: sources_oauth_source_types_list @@ -13423,9 +16595,17 @@ paths: $ref: '#/components/schemas/SourceType' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /sources/plex/: get: operationId: sources_plex_list @@ -13516,9 +16696,17 @@ paths: $ref: '#/components/schemas/PaginatedPlexSourceList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' post: operationId: sources_plex_create description: Plex source Viewset @@ -13540,9 +16728,17 @@ paths: $ref: '#/components/schemas/PlexSource' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /sources/plex/{slug}/: get: operationId: sources_plex_retrieve @@ -13566,9 +16762,17 @@ paths: $ref: '#/components/schemas/PlexSource' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' put: operationId: sources_plex_update description: Plex source Viewset @@ -13597,9 +16801,17 @@ paths: $ref: '#/components/schemas/PlexSource' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' patch: operationId: sources_plex_partial_update description: Plex source Viewset @@ -13627,9 +16839,17 @@ paths: $ref: '#/components/schemas/PlexSource' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: sources_plex_destroy description: Plex source Viewset @@ -13648,9 +16868,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /sources/plex/{slug}/used_by/: get: operationId: sources_plex_used_by_list @@ -13676,9 +16904,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /sources/plex/redeem_token/: post: operationId: sources_plex_redeem_token_create @@ -13920,9 +17156,17 @@ paths: $ref: '#/components/schemas/PaginatedSAMLSourceList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' post: operationId: sources_saml_create description: SAMLSource Viewset @@ -13944,9 +17188,17 @@ paths: $ref: '#/components/schemas/SAMLSource' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /sources/saml/{slug}/: get: operationId: sources_saml_retrieve @@ -13970,9 +17222,17 @@ paths: $ref: '#/components/schemas/SAMLSource' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' put: operationId: sources_saml_update description: SAMLSource Viewset @@ -14001,9 +17261,17 @@ paths: $ref: '#/components/schemas/SAMLSource' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' patch: operationId: sources_saml_partial_update description: SAMLSource Viewset @@ -14031,9 +17299,17 @@ paths: $ref: '#/components/schemas/SAMLSource' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: sources_saml_destroy description: SAMLSource Viewset @@ -14052,9 +17328,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /sources/saml/{slug}/metadata/: get: operationId: sources_saml_metadata_retrieve @@ -14078,9 +17362,17 @@ paths: $ref: '#/components/schemas/SAMLMetadata' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /sources/saml/{slug}/used_by/: get: operationId: sources_saml_used_by_list @@ -14106,9 +17398,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /sources/user_connections/all/: get: operationId: sources_user_connections_all_list @@ -14150,9 +17450,17 @@ paths: $ref: '#/components/schemas/PaginatedUserSourceConnectionList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /sources/user_connections/all/{id}/: get: operationId: sources_user_connections_all_retrieve @@ -14176,9 +17484,17 @@ paths: $ref: '#/components/schemas/UserSourceConnection' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' put: operationId: sources_user_connections_all_update description: User-source connection Viewset @@ -14201,9 +17517,17 @@ paths: $ref: '#/components/schemas/UserSourceConnection' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' patch: operationId: sources_user_connections_all_partial_update description: User-source connection Viewset @@ -14226,9 +17550,17 @@ paths: $ref: '#/components/schemas/UserSourceConnection' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: sources_user_connections_all_destroy description: User-source connection Viewset @@ -14247,9 +17579,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /sources/user_connections/all/{id}/used_by/: get: operationId: sources_user_connections_all_used_by_list @@ -14275,9 +17615,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /sources/user_connections/oauth/: get: operationId: sources_user_connections_oauth_list @@ -14323,9 +17671,17 @@ paths: $ref: '#/components/schemas/PaginatedUserOAuthSourceConnectionList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' post: operationId: sources_user_connections_oauth_create description: Source Viewset @@ -14347,9 +17703,17 @@ paths: $ref: '#/components/schemas/UserOAuthSourceConnection' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /sources/user_connections/oauth/{id}/: get: operationId: sources_user_connections_oauth_retrieve @@ -14373,9 +17737,17 @@ paths: $ref: '#/components/schemas/UserOAuthSourceConnection' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' put: operationId: sources_user_connections_oauth_update description: Source Viewset @@ -14404,9 +17776,17 @@ paths: $ref: '#/components/schemas/UserOAuthSourceConnection' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' patch: operationId: sources_user_connections_oauth_partial_update description: Source Viewset @@ -14434,9 +17814,17 @@ paths: $ref: '#/components/schemas/UserOAuthSourceConnection' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: sources_user_connections_oauth_destroy description: Source Viewset @@ -14455,9 +17843,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /sources/user_connections/oauth/{id}/used_by/: get: operationId: sources_user_connections_oauth_used_by_list @@ -14483,9 +17879,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /sources/user_connections/plex/: get: operationId: sources_user_connections_plex_list @@ -14531,9 +17935,17 @@ paths: $ref: '#/components/schemas/PaginatedPlexSourceConnectionList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' post: operationId: sources_user_connections_plex_create description: Plex Source connection Serializer @@ -14555,9 +17967,17 @@ paths: $ref: '#/components/schemas/PlexSourceConnection' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /sources/user_connections/plex/{id}/: get: operationId: sources_user_connections_plex_retrieve @@ -14581,9 +18001,17 @@ paths: $ref: '#/components/schemas/PlexSourceConnection' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' put: operationId: sources_user_connections_plex_update description: Plex Source connection Serializer @@ -14612,9 +18040,17 @@ paths: $ref: '#/components/schemas/PlexSourceConnection' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' patch: operationId: sources_user_connections_plex_partial_update description: Plex Source connection Serializer @@ -14642,9 +18078,17 @@ paths: $ref: '#/components/schemas/PlexSourceConnection' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: sources_user_connections_plex_destroy description: Plex Source connection Serializer @@ -14663,9 +18107,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /sources/user_connections/plex/{id}/used_by/: get: operationId: sources_user_connections_plex_used_by_list @@ -14691,9 +18143,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /stages/all/: get: operationId: stages_all_list @@ -14739,9 +18199,17 @@ paths: $ref: '#/components/schemas/PaginatedStageList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /stages/all/{stage_uuid}/: get: operationId: stages_all_retrieve @@ -14766,9 +18234,17 @@ paths: $ref: '#/components/schemas/Stage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: stages_all_destroy description: Stage Viewset @@ -14788,9 +18264,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /stages/all/{stage_uuid}/used_by/: get: operationId: stages_all_used_by_list @@ -14817,9 +18301,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /stages/all/types/: get: operationId: stages_all_types_list @@ -14838,9 +18330,17 @@ paths: $ref: '#/components/schemas/TypeCreate' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /stages/all/user_settings/: get: operationId: stages_all_user_settings_list @@ -14859,9 +18359,17 @@ paths: $ref: '#/components/schemas/UserSetting' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /stages/authenticator/duo/: get: operationId: stages_authenticator_duo_list @@ -14920,9 +18428,17 @@ paths: $ref: '#/components/schemas/PaginatedAuthenticatorDuoStageList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' post: operationId: stages_authenticator_duo_create description: AuthenticatorDuoStage Viewset @@ -14944,9 +18460,17 @@ paths: $ref: '#/components/schemas/AuthenticatorDuoStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /stages/authenticator/duo/{stage_uuid}/: get: operationId: stages_authenticator_duo_retrieve @@ -14971,9 +18495,17 @@ paths: $ref: '#/components/schemas/AuthenticatorDuoStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' put: operationId: stages_authenticator_duo_update description: AuthenticatorDuoStage Viewset @@ -15003,9 +18535,17 @@ paths: $ref: '#/components/schemas/AuthenticatorDuoStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' patch: operationId: stages_authenticator_duo_partial_update description: AuthenticatorDuoStage Viewset @@ -15034,9 +18574,17 @@ paths: $ref: '#/components/schemas/AuthenticatorDuoStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: stages_authenticator_duo_destroy description: AuthenticatorDuoStage Viewset @@ -15056,9 +18604,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /stages/authenticator/duo/{stage_uuid}/enrollment_status/: post: operationId: stages_authenticator_duo_enrollment_status_create @@ -15083,9 +18639,17 @@ paths: $ref: '#/components/schemas/DuoDeviceEnrollmentStatus' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /stages/authenticator/duo/{stage_uuid}/import_devices/: post: operationId: stages_authenticator_duo_import_devices_create @@ -15116,7 +18680,11 @@ paths: '400': description: Device exists already '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /stages/authenticator/duo/{stage_uuid}/used_by/: get: operationId: stages_authenticator_duo_used_by_list @@ -15143,9 +18711,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /stages/authenticator/sms/: get: operationId: stages_authenticator_sms_list @@ -15235,9 +18811,17 @@ paths: $ref: '#/components/schemas/PaginatedAuthenticatorSMSStageList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' post: operationId: stages_authenticator_sms_create description: AuthenticatorSMSStage Viewset @@ -15259,9 +18843,17 @@ paths: $ref: '#/components/schemas/AuthenticatorSMSStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /stages/authenticator/sms/{stage_uuid}/: get: operationId: stages_authenticator_sms_retrieve @@ -15286,9 +18878,17 @@ paths: $ref: '#/components/schemas/AuthenticatorSMSStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' put: operationId: stages_authenticator_sms_update description: AuthenticatorSMSStage Viewset @@ -15318,9 +18918,17 @@ paths: $ref: '#/components/schemas/AuthenticatorSMSStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' patch: operationId: stages_authenticator_sms_partial_update description: AuthenticatorSMSStage Viewset @@ -15349,9 +18957,17 @@ paths: $ref: '#/components/schemas/AuthenticatorSMSStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: stages_authenticator_sms_destroy description: AuthenticatorSMSStage Viewset @@ -15371,9 +18987,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /stages/authenticator/sms/{stage_uuid}/used_by/: get: operationId: stages_authenticator_sms_used_by_list @@ -15400,9 +19024,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /stages/authenticator/static/: get: operationId: stages_authenticator_static_list @@ -15462,9 +19094,17 @@ paths: $ref: '#/components/schemas/PaginatedAuthenticatorStaticStageList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' post: operationId: stages_authenticator_static_create description: AuthenticatorStaticStage Viewset @@ -15486,9 +19126,17 @@ paths: $ref: '#/components/schemas/AuthenticatorStaticStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /stages/authenticator/static/{stage_uuid}/: get: operationId: stages_authenticator_static_retrieve @@ -15513,9 +19161,17 @@ paths: $ref: '#/components/schemas/AuthenticatorStaticStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' put: operationId: stages_authenticator_static_update description: AuthenticatorStaticStage Viewset @@ -15545,9 +19201,17 @@ paths: $ref: '#/components/schemas/AuthenticatorStaticStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' patch: operationId: stages_authenticator_static_partial_update description: AuthenticatorStaticStage Viewset @@ -15576,9 +19240,17 @@ paths: $ref: '#/components/schemas/AuthenticatorStaticStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: stages_authenticator_static_destroy description: AuthenticatorStaticStage Viewset @@ -15598,9 +19270,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /stages/authenticator/static/{stage_uuid}/used_by/: get: operationId: stages_authenticator_static_used_by_list @@ -15627,9 +19307,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /stages/authenticator/totp/: get: operationId: stages_authenticator_totp_list @@ -15692,9 +19380,17 @@ paths: $ref: '#/components/schemas/PaginatedAuthenticatorTOTPStageList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' post: operationId: stages_authenticator_totp_create description: AuthenticatorTOTPStage Viewset @@ -15716,9 +19412,17 @@ paths: $ref: '#/components/schemas/AuthenticatorTOTPStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /stages/authenticator/totp/{stage_uuid}/: get: operationId: stages_authenticator_totp_retrieve @@ -15743,9 +19447,17 @@ paths: $ref: '#/components/schemas/AuthenticatorTOTPStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' put: operationId: stages_authenticator_totp_update description: AuthenticatorTOTPStage Viewset @@ -15775,9 +19487,17 @@ paths: $ref: '#/components/schemas/AuthenticatorTOTPStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' patch: operationId: stages_authenticator_totp_partial_update description: AuthenticatorTOTPStage Viewset @@ -15806,9 +19526,17 @@ paths: $ref: '#/components/schemas/AuthenticatorTOTPStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: stages_authenticator_totp_destroy description: AuthenticatorTOTPStage Viewset @@ -15828,9 +19556,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /stages/authenticator/totp/{stage_uuid}/used_by/: get: operationId: stages_authenticator_totp_used_by_list @@ -15857,9 +19593,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /stages/authenticator/validate/: get: operationId: stages_authenticator_validate_list @@ -15922,9 +19666,17 @@ paths: $ref: '#/components/schemas/PaginatedAuthenticatorValidateStageList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' post: operationId: stages_authenticator_validate_create description: AuthenticatorValidateStage Viewset @@ -15946,9 +19698,17 @@ paths: $ref: '#/components/schemas/AuthenticatorValidateStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /stages/authenticator/validate/{stage_uuid}/: get: operationId: stages_authenticator_validate_retrieve @@ -15973,9 +19733,17 @@ paths: $ref: '#/components/schemas/AuthenticatorValidateStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' put: operationId: stages_authenticator_validate_update description: AuthenticatorValidateStage Viewset @@ -16005,9 +19773,17 @@ paths: $ref: '#/components/schemas/AuthenticatorValidateStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' patch: operationId: stages_authenticator_validate_partial_update description: AuthenticatorValidateStage Viewset @@ -16036,9 +19812,17 @@ paths: $ref: '#/components/schemas/AuthenticatorValidateStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: stages_authenticator_validate_destroy description: AuthenticatorValidateStage Viewset @@ -16058,9 +19842,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /stages/authenticator/validate/{stage_uuid}/used_by/: get: operationId: stages_authenticator_validate_used_by_list @@ -16087,9 +19879,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /stages/authenticator/webauthn/: get: operationId: stages_authenticator_webauthn_list @@ -16169,9 +19969,17 @@ paths: $ref: '#/components/schemas/PaginatedAuthenticateWebAuthnStageList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' post: operationId: stages_authenticator_webauthn_create description: AuthenticateWebAuthnStage Viewset @@ -16193,9 +20001,17 @@ paths: $ref: '#/components/schemas/AuthenticateWebAuthnStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /stages/authenticator/webauthn/{stage_uuid}/: get: operationId: stages_authenticator_webauthn_retrieve @@ -16220,9 +20036,17 @@ paths: $ref: '#/components/schemas/AuthenticateWebAuthnStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' put: operationId: stages_authenticator_webauthn_update description: AuthenticateWebAuthnStage Viewset @@ -16252,9 +20076,17 @@ paths: $ref: '#/components/schemas/AuthenticateWebAuthnStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' patch: operationId: stages_authenticator_webauthn_partial_update description: AuthenticateWebAuthnStage Viewset @@ -16283,9 +20115,17 @@ paths: $ref: '#/components/schemas/AuthenticateWebAuthnStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: stages_authenticator_webauthn_destroy description: AuthenticateWebAuthnStage Viewset @@ -16305,9 +20145,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /stages/authenticator/webauthn/{stage_uuid}/used_by/: get: operationId: stages_authenticator_webauthn_used_by_list @@ -16334,9 +20182,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /stages/captcha/: get: operationId: stages_captcha_list @@ -16386,9 +20242,17 @@ paths: $ref: '#/components/schemas/PaginatedCaptchaStageList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' post: operationId: stages_captcha_create description: CaptchaStage Viewset @@ -16410,9 +20274,17 @@ paths: $ref: '#/components/schemas/CaptchaStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /stages/captcha/{stage_uuid}/: get: operationId: stages_captcha_retrieve @@ -16437,9 +20309,17 @@ paths: $ref: '#/components/schemas/CaptchaStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' put: operationId: stages_captcha_update description: CaptchaStage Viewset @@ -16469,9 +20349,17 @@ paths: $ref: '#/components/schemas/CaptchaStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' patch: operationId: stages_captcha_partial_update description: CaptchaStage Viewset @@ -16500,9 +20388,17 @@ paths: $ref: '#/components/schemas/CaptchaStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: stages_captcha_destroy description: CaptchaStage Viewset @@ -16522,9 +20418,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /stages/captcha/{stage_uuid}/used_by/: get: operationId: stages_captcha_used_by_list @@ -16551,9 +20455,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /stages/consent/: get: operationId: stages_consent_list @@ -16616,9 +20528,17 @@ paths: $ref: '#/components/schemas/PaginatedConsentStageList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' post: operationId: stages_consent_create description: ConsentStage Viewset @@ -16640,9 +20560,17 @@ paths: $ref: '#/components/schemas/ConsentStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /stages/consent/{stage_uuid}/: get: operationId: stages_consent_retrieve @@ -16667,9 +20595,17 @@ paths: $ref: '#/components/schemas/ConsentStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' put: operationId: stages_consent_update description: ConsentStage Viewset @@ -16699,9 +20635,17 @@ paths: $ref: '#/components/schemas/ConsentStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' patch: operationId: stages_consent_partial_update description: ConsentStage Viewset @@ -16730,9 +20674,17 @@ paths: $ref: '#/components/schemas/ConsentStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: stages_consent_destroy description: ConsentStage Viewset @@ -16752,9 +20704,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /stages/consent/{stage_uuid}/used_by/: get: operationId: stages_consent_used_by_list @@ -16781,9 +20741,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /stages/deny/: get: operationId: stages_deny_list @@ -16834,9 +20802,17 @@ paths: $ref: '#/components/schemas/PaginatedDenyStageList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' post: operationId: stages_deny_create description: DenyStage Viewset @@ -16858,9 +20834,17 @@ paths: $ref: '#/components/schemas/DenyStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /stages/deny/{stage_uuid}/: get: operationId: stages_deny_retrieve @@ -16885,9 +20869,17 @@ paths: $ref: '#/components/schemas/DenyStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' put: operationId: stages_deny_update description: DenyStage Viewset @@ -16917,9 +20909,17 @@ paths: $ref: '#/components/schemas/DenyStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' patch: operationId: stages_deny_partial_update description: DenyStage Viewset @@ -16948,9 +20948,17 @@ paths: $ref: '#/components/schemas/DenyStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: stages_deny_destroy description: DenyStage Viewset @@ -16970,9 +20978,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /stages/deny/{stage_uuid}/used_by/: get: operationId: stages_deny_used_by_list @@ -16999,9 +21015,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /stages/dummy/: get: operationId: stages_dummy_list @@ -17052,9 +21076,17 @@ paths: $ref: '#/components/schemas/PaginatedDummyStageList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' post: operationId: stages_dummy_create description: DummyStage Viewset @@ -17076,9 +21108,17 @@ paths: $ref: '#/components/schemas/DummyStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /stages/dummy/{stage_uuid}/: get: operationId: stages_dummy_retrieve @@ -17103,9 +21143,17 @@ paths: $ref: '#/components/schemas/DummyStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' put: operationId: stages_dummy_update description: DummyStage Viewset @@ -17135,9 +21183,17 @@ paths: $ref: '#/components/schemas/DummyStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' patch: operationId: stages_dummy_partial_update description: DummyStage Viewset @@ -17166,9 +21222,17 @@ paths: $ref: '#/components/schemas/DummyStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: stages_dummy_destroy description: DummyStage Viewset @@ -17188,9 +21252,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /stages/dummy/{stage_uuid}/used_by/: get: operationId: stages_dummy_used_by_list @@ -17217,9 +21289,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /stages/email/: get: operationId: stages_email_list @@ -17313,9 +21393,17 @@ paths: $ref: '#/components/schemas/PaginatedEmailStageList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' post: operationId: stages_email_create description: EmailStage Viewset @@ -17337,9 +21425,17 @@ paths: $ref: '#/components/schemas/EmailStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /stages/email/{stage_uuid}/: get: operationId: stages_email_retrieve @@ -17364,9 +21460,17 @@ paths: $ref: '#/components/schemas/EmailStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' put: operationId: stages_email_update description: EmailStage Viewset @@ -17396,9 +21500,17 @@ paths: $ref: '#/components/schemas/EmailStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' patch: operationId: stages_email_partial_update description: EmailStage Viewset @@ -17427,9 +21539,17 @@ paths: $ref: '#/components/schemas/EmailStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: stages_email_destroy description: EmailStage Viewset @@ -17449,9 +21569,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /stages/email/{stage_uuid}/used_by/: get: operationId: stages_email_used_by_list @@ -17478,9 +21606,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /stages/email/templates/: get: operationId: stages_email_templates_list @@ -17499,9 +21635,17 @@ paths: $ref: '#/components/schemas/TypeCreate' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /stages/identification/: get: operationId: stages_identification_list @@ -17579,9 +21723,17 @@ paths: $ref: '#/components/schemas/PaginatedIdentificationStageList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' post: operationId: stages_identification_create description: IdentificationStage Viewset @@ -17603,9 +21755,17 @@ paths: $ref: '#/components/schemas/IdentificationStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /stages/identification/{stage_uuid}/: get: operationId: stages_identification_retrieve @@ -17630,9 +21790,17 @@ paths: $ref: '#/components/schemas/IdentificationStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' put: operationId: stages_identification_update description: IdentificationStage Viewset @@ -17662,9 +21830,17 @@ paths: $ref: '#/components/schemas/IdentificationStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' patch: operationId: stages_identification_partial_update description: IdentificationStage Viewset @@ -17693,9 +21869,17 @@ paths: $ref: '#/components/schemas/IdentificationStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: stages_identification_destroy description: IdentificationStage Viewset @@ -17715,9 +21899,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /stages/identification/{stage_uuid}/used_by/: get: operationId: stages_identification_used_by_list @@ -17744,9 +21936,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /stages/invitation/invitations/: get: operationId: stages_invitation_invitations_list @@ -17801,9 +22001,17 @@ paths: $ref: '#/components/schemas/PaginatedInvitationList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' post: operationId: stages_invitation_invitations_create description: Invitation Viewset @@ -17825,9 +22033,17 @@ paths: $ref: '#/components/schemas/Invitation' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /stages/invitation/invitations/{invite_uuid}/: get: operationId: stages_invitation_invitations_retrieve @@ -17852,9 +22068,17 @@ paths: $ref: '#/components/schemas/Invitation' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' put: operationId: stages_invitation_invitations_update description: Invitation Viewset @@ -17884,9 +22108,17 @@ paths: $ref: '#/components/schemas/Invitation' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' patch: operationId: stages_invitation_invitations_partial_update description: Invitation Viewset @@ -17915,9 +22147,17 @@ paths: $ref: '#/components/schemas/Invitation' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: stages_invitation_invitations_destroy description: Invitation Viewset @@ -17937,9 +22177,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /stages/invitation/invitations/{invite_uuid}/used_by/: get: operationId: stages_invitation_invitations_used_by_list @@ -17966,9 +22214,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /stages/invitation/stages/: get: operationId: stages_invitation_stages_list @@ -18027,9 +22283,17 @@ paths: $ref: '#/components/schemas/PaginatedInvitationStageList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' post: operationId: stages_invitation_stages_create description: InvitationStage Viewset @@ -18051,9 +22315,17 @@ paths: $ref: '#/components/schemas/InvitationStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /stages/invitation/stages/{stage_uuid}/: get: operationId: stages_invitation_stages_retrieve @@ -18078,9 +22350,17 @@ paths: $ref: '#/components/schemas/InvitationStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' put: operationId: stages_invitation_stages_update description: InvitationStage Viewset @@ -18110,9 +22390,17 @@ paths: $ref: '#/components/schemas/InvitationStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' patch: operationId: stages_invitation_stages_partial_update description: InvitationStage Viewset @@ -18141,9 +22429,17 @@ paths: $ref: '#/components/schemas/InvitationStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: stages_invitation_stages_destroy description: InvitationStage Viewset @@ -18163,9 +22459,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /stages/invitation/stages/{stage_uuid}/used_by/: get: operationId: stages_invitation_stages_used_by_list @@ -18192,9 +22496,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /stages/password/: get: operationId: stages_password_list @@ -18249,9 +22561,17 @@ paths: $ref: '#/components/schemas/PaginatedPasswordStageList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' post: operationId: stages_password_create description: PasswordStage Viewset @@ -18273,9 +22593,17 @@ paths: $ref: '#/components/schemas/PasswordStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /stages/password/{stage_uuid}/: get: operationId: stages_password_retrieve @@ -18300,9 +22628,17 @@ paths: $ref: '#/components/schemas/PasswordStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' put: operationId: stages_password_update description: PasswordStage Viewset @@ -18332,9 +22668,17 @@ paths: $ref: '#/components/schemas/PasswordStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' patch: operationId: stages_password_partial_update description: PasswordStage Viewset @@ -18363,9 +22707,17 @@ paths: $ref: '#/components/schemas/PasswordStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: stages_password_destroy description: PasswordStage Viewset @@ -18385,9 +22737,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /stages/password/{stage_uuid}/used_by/: get: operationId: stages_password_used_by_list @@ -18414,9 +22774,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /stages/prompt/prompts/: get: operationId: stages_prompt_prompts_list @@ -18489,9 +22857,17 @@ paths: $ref: '#/components/schemas/PaginatedPromptList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' post: operationId: stages_prompt_prompts_create description: Prompt Viewset @@ -18513,9 +22889,17 @@ paths: $ref: '#/components/schemas/Prompt' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /stages/prompt/prompts/{prompt_uuid}/: get: operationId: stages_prompt_prompts_retrieve @@ -18540,9 +22924,17 @@ paths: $ref: '#/components/schemas/Prompt' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' put: operationId: stages_prompt_prompts_update description: Prompt Viewset @@ -18572,9 +22964,17 @@ paths: $ref: '#/components/schemas/Prompt' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' patch: operationId: stages_prompt_prompts_partial_update description: Prompt Viewset @@ -18603,9 +23003,17 @@ paths: $ref: '#/components/schemas/Prompt' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: stages_prompt_prompts_destroy description: Prompt Viewset @@ -18625,9 +23033,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /stages/prompt/prompts/{prompt_uuid}/used_by/: get: operationId: stages_prompt_prompts_used_by_list @@ -18654,9 +23070,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /stages/prompt/stages/: get: operationId: stages_prompt_stages_list @@ -18725,9 +23149,17 @@ paths: $ref: '#/components/schemas/PaginatedPromptStageList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' post: operationId: stages_prompt_stages_create description: PromptStage Viewset @@ -18749,9 +23181,17 @@ paths: $ref: '#/components/schemas/PromptStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /stages/prompt/stages/{stage_uuid}/: get: operationId: stages_prompt_stages_retrieve @@ -18776,9 +23216,17 @@ paths: $ref: '#/components/schemas/PromptStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' put: operationId: stages_prompt_stages_update description: PromptStage Viewset @@ -18808,9 +23256,17 @@ paths: $ref: '#/components/schemas/PromptStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' patch: operationId: stages_prompt_stages_partial_update description: PromptStage Viewset @@ -18839,9 +23295,17 @@ paths: $ref: '#/components/schemas/PromptStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: stages_prompt_stages_destroy description: PromptStage Viewset @@ -18861,9 +23325,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /stages/prompt/stages/{stage_uuid}/used_by/: get: operationId: stages_prompt_stages_used_by_list @@ -18890,9 +23362,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /stages/user_delete/: get: operationId: stages_user_delete_list @@ -18943,9 +23423,17 @@ paths: $ref: '#/components/schemas/PaginatedUserDeleteStageList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' post: operationId: stages_user_delete_create description: UserDeleteStage Viewset @@ -18967,9 +23455,17 @@ paths: $ref: '#/components/schemas/UserDeleteStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /stages/user_delete/{stage_uuid}/: get: operationId: stages_user_delete_retrieve @@ -18994,9 +23490,17 @@ paths: $ref: '#/components/schemas/UserDeleteStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' put: operationId: stages_user_delete_update description: UserDeleteStage Viewset @@ -19026,9 +23530,17 @@ paths: $ref: '#/components/schemas/UserDeleteStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' patch: operationId: stages_user_delete_partial_update description: UserDeleteStage Viewset @@ -19057,9 +23569,17 @@ paths: $ref: '#/components/schemas/UserDeleteStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: stages_user_delete_destroy description: UserDeleteStage Viewset @@ -19079,9 +23599,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /stages/user_delete/{stage_uuid}/used_by/: get: operationId: stages_user_delete_used_by_list @@ -19108,9 +23636,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /stages/user_login/: get: operationId: stages_user_login_list @@ -19165,9 +23701,17 @@ paths: $ref: '#/components/schemas/PaginatedUserLoginStageList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' post: operationId: stages_user_login_create description: UserLoginStage Viewset @@ -19189,9 +23733,17 @@ paths: $ref: '#/components/schemas/UserLoginStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /stages/user_login/{stage_uuid}/: get: operationId: stages_user_login_retrieve @@ -19216,9 +23768,17 @@ paths: $ref: '#/components/schemas/UserLoginStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' put: operationId: stages_user_login_update description: UserLoginStage Viewset @@ -19248,9 +23808,17 @@ paths: $ref: '#/components/schemas/UserLoginStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' patch: operationId: stages_user_login_partial_update description: UserLoginStage Viewset @@ -19279,9 +23847,17 @@ paths: $ref: '#/components/schemas/UserLoginStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: stages_user_login_destroy description: UserLoginStage Viewset @@ -19301,9 +23877,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /stages/user_login/{stage_uuid}/used_by/: get: operationId: stages_user_login_used_by_list @@ -19330,9 +23914,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /stages/user_logout/: get: operationId: stages_user_logout_list @@ -19383,9 +23975,17 @@ paths: $ref: '#/components/schemas/PaginatedUserLogoutStageList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' post: operationId: stages_user_logout_create description: UserLogoutStage Viewset @@ -19407,9 +24007,17 @@ paths: $ref: '#/components/schemas/UserLogoutStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /stages/user_logout/{stage_uuid}/: get: operationId: stages_user_logout_retrieve @@ -19434,9 +24042,17 @@ paths: $ref: '#/components/schemas/UserLogoutStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' put: operationId: stages_user_logout_update description: UserLogoutStage Viewset @@ -19466,9 +24082,17 @@ paths: $ref: '#/components/schemas/UserLogoutStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' patch: operationId: stages_user_logout_partial_update description: UserLogoutStage Viewset @@ -19497,9 +24121,17 @@ paths: $ref: '#/components/schemas/UserLogoutStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: stages_user_logout_destroy description: UserLogoutStage Viewset @@ -19519,9 +24151,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /stages/user_logout/{stage_uuid}/used_by/: get: operationId: stages_user_logout_used_by_list @@ -19548,9 +24188,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /stages/user_write/: get: operationId: stages_user_write_list @@ -19614,9 +24262,17 @@ paths: $ref: '#/components/schemas/PaginatedUserWriteStageList' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' post: operationId: stages_user_write_create description: UserWriteStage Viewset @@ -19638,9 +24294,17 @@ paths: $ref: '#/components/schemas/UserWriteStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /stages/user_write/{stage_uuid}/: get: operationId: stages_user_write_retrieve @@ -19665,9 +24329,17 @@ paths: $ref: '#/components/schemas/UserWriteStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' put: operationId: stages_user_write_update description: UserWriteStage Viewset @@ -19697,9 +24369,17 @@ paths: $ref: '#/components/schemas/UserWriteStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' patch: operationId: stages_user_write_partial_update description: UserWriteStage Viewset @@ -19728,9 +24408,17 @@ paths: $ref: '#/components/schemas/UserWriteStage' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' delete: operationId: stages_user_write_destroy description: UserWriteStage Viewset @@ -19750,9 +24438,17 @@ paths: '204': description: No response body '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' /stages/user_write/{stage_uuid}/used_by/: get: operationId: stages_user_write_used_by_list @@ -19779,9 +24475,17 @@ paths: $ref: '#/components/schemas/UsedBy' description: '' '400': - $ref: '#/components/schemas/ValidationError' + content: + application/json: + schema: + $ref: '#/components/schemas/ValidationError' + description: '' '403': - $ref: '#/components/schemas/GenericError' + content: + application/json: + schema: + $ref: '#/components/schemas/GenericError' + description: '' components: schemas: AccessDeniedChallenge: diff --git a/website/developer-docs/api/making-schema-changes.md b/website/developer-docs/api/making-schema-changes.md index b9b1e428a..bdd1611f0 100644 --- a/website/developer-docs/api/making-schema-changes.md +++ b/website/developer-docs/api/making-schema-changes.md @@ -14,10 +14,10 @@ The generated files are stored in `/api` in the root of the repository. ## Building the Web Client -The web client is used by the web-interface and web-FlowExecutor to communicate with authentik. To build the client, run `make gen-client-web`. +The web client is used by the web-interface and web-FlowExecutor to communicate with authentik. To build the client, run `make gen-client-ts`. -Since the client is normally distributed as an npm package, running `make gen-client-web` will overwrite the locally installed client with the newly built one. +Since the client is normally distributed as an npm package, running `make gen-client-ts` will overwrite the locally installed client with the newly built one. :::warning -Running `npm i` in the `/web` folder after using `make gen-client-web` will overwrite the custom client and revert to the upstream client. +Running `npm i` in the `/web` folder after using `make gen-client-ts` will overwrite the custom client and revert to the upstream client. :::