diff --git a/apidef/oas/schema/x-tyk-api-gateway.json b/apidef/oas/schema/x-tyk-api-gateway.json index bc5e921db71..3fa326e5108 100644 --- a/apidef/oas/schema/x-tyk-api-gateway.json +++ b/apidef/oas/schema/x-tyk-api-gateway.json @@ -1687,8 +1687,15 @@ "items": {"type": "string"} }, "jtiValidation": { - "type": "array", - "items": {"type": "string"} + "type": "object", + "properties": { + "enabled": { + "type": "boolean" + } + }, + "required": [ + "enabled" + ] }, "allowedSubjects": { "type": "array", diff --git a/apidef/oas/schema/x-tyk-api-gateway.strict.json b/apidef/oas/schema/x-tyk-api-gateway.strict.json index deef6764845..49d1bedb617 100644 --- a/apidef/oas/schema/x-tyk-api-gateway.strict.json +++ b/apidef/oas/schema/x-tyk-api-gateway.strict.json @@ -1776,10 +1776,15 @@ } }, "jtiValidation": { - "type": "array", - "items": { - "type": "string" - } + "type": "object", + "properties": { + "enabled": { + "type": "boolean" + } + }, + "required": [ + "enabled" + ] }, "allowedSubjects": { "type": "array",