diff --git a/runtime/runtime-ui/schema/apk-conf.yaml b/runtime/runtime-ui/schema/apk-conf.yaml index 184bd6c46..90b5cacf7 100644 --- a/runtime/runtime-ui/schema/apk-conf.yaml +++ b/runtime/runtime-ui/schema/apk-conf.yaml @@ -400,9 +400,6 @@ schemas: title: Backend JWT Parameters type: object properties: - enabled: - type: boolean - default: true encoding: type: string signingAlgorithm: @@ -415,8 +412,6 @@ schemas: type: array items: $ref: "#/schemas/CustomClaims" - required: - - enabled additionalProperties: false CustomClaims: type: object diff --git a/runtime/runtime-ui/schema/apk-schema.json b/runtime/runtime-ui/schema/apk-schema.json index 5475303e1..1f7a6196a 100644 --- a/runtime/runtime-ui/schema/apk-schema.json +++ b/runtime/runtime-ui/schema/apk-schema.json @@ -534,10 +534,6 @@ "title": "Backend JWT Parameters", "type": "object", "properties": { - "enabled": { - "type": "boolean", - "default": true - }, "encoding": { "type": "string" }, @@ -557,9 +553,6 @@ } } }, - "required": [ - "enabled" - ], "additionalProperties": false }, "CustomClaims": {