addedInput schema / properties / auth
Added value: +{
+ "description": "Authentication for protected docs or OpenAPI documents",
+ "properties": {
+ "apiKey": {
+ "description": "API key value",
+ "type": "string"
+ },
+ "apiKeyName": {
+ "description": "API key header name; defaults to X-API-Key",
+ "type": "string"
+ },
+ "headers": {
+ "additionalProperties": {},
+ "description": "Extra headers to send while fetching protected docs/specs",
+ "propertyNames": {
+ "type": "string"
+ },
+ "type": "object"
+ },
+ "password": {
+ "description": "Password for Basic auth",
+ "type": "string"
+ },
+ "strategy": {
+ "description": "How auth should be applied while fetching docs/specs",
+ "enum": [
+ "auto",
+ "none",
+ "basic",
+ "bearer",
+ "apiKey"
+ ],
+ "type": "string"
+ },
+ "token": {
+ "description": "Bearer token",
+ "type": "string"
+ },
+ "username": {
+ "description": "Username for Basic auth",
+ "type": "string"
+ }
+ },
+ "type": "object"
+}