Skip to content

Latest commit

 

History

History
180 lines (129 loc) · 15.1 KB

configuration.md

File metadata and controls

180 lines (129 loc) · 15.1 KB

Configuration

How to configure

Swagger UI accepts configuration parameters in four locations.

From lowest to highest precedence:

  • The swagger-config.yaml in the project root directory, if it exists, is baked into the application
  • configuration object passed as an argument to Swagger UI (SwaggerUI({ ... }))
  • configuration document fetched from a specified configUrl
  • configuration items passed as key/value pairs in the URL query string

Parameters

Parameters with dots in their names are single strings used to organize subordinate parameters, and are not indicative of a nested structure.

For readability, parameters are grouped by category and sorted alphabetically.

Type notations are formatted like so:

  • String="" means a String type with a default value of "".
  • String=["a"*, "b", "c", "d"] means a String type that can be a, b, c, or d, with the * indicating that a is the default value.
Core
Parameter nameDocker variableDescription
configUrlCONFIG_URLString. URL to fetch external configuration document from.
dom_idDOM_IDString, REQUIRED if domNode is not provided. The ID of a DOM element inside which SwaggerUI will put its user interface.
domNodeUnavailableElement, REQUIRED if dom_id is not provided. The HTML DOM element inside which SwaggerUI will put its user interface. Overrides dom_id.
specSPECObject={}. A JavaScript object describing the OpenAPI definition. When used, the url parameter will not be parsed. This is useful for testing manually-generated definitions without hosting them.
urlURLString. The URL pointing to API definition (normally swagger.json or swagger.yaml). Will be ignored if urls or spec is used.
urlsURLSArray. An array of API definition objects ([{url: "<url1>", name: "<name1>"},{url: "<url2>", name: "<name2>"}]) used by Topbar plugin. When used and Topbar plugin is enabled, the url parameter will not be parsed. Names and URLs must be unique among all items in this array, since they're used as identifiers.
urls.primaryNameURLS_PRIMARY_NAMEString. When using urls, you can use this subparameter. If the value matches the name of a spec provided in urls, that spec will be displayed when Swagger UI loads, instead of defaulting to the first spec in urls.
Plugin system

Read more about the plugin system in the Customization documentation.

Parameter nameDocker variableDescription
layoutUnavailableString="BaseLayout". The name of a component available via the plugin system to use as the top-level layout for Swagger UI.
pluginsOptionsUnavailableObject. A Javascript object to configure plugin integration and behaviors (see below).
pluginsUnavailableArray=[]. An array of plugin functions to use in Swagger UI.
presetsUnavailableArray=[SwaggerUI.presets.ApisPreset]. An array of presets to use in Swagger UI. Usually, you'll want to include ApisPreset if you use this option.
Plugins options
Parameter nameDocker variableDescription
pluginLoadTypeUnavailableString=["legacy", "chain"]. Control behavior of plugins when targeting the same component with wrapComponent.
- legacy (default) : last plugin takes precedence over the others
- chain : chain wrapComponents when targeting the same core component, allowing multiple plugins to wrap the same component
Display
Parameter nameDocker variableDescription
deepLinkingDEEP_LINKINGBoolean=false. If set to true, enables deep linking for tags and operations. See the Deep Linking documentation for more information.
displayOperationIdDISPLAY_OPERATION_IDBoolean=false. Controls the display of operationId in operations list. The default is false.
defaultModelsExpandDepthDEFAULT_MODELS_EXPAND_DEPTHNumber=1. The default expansion depth for models (set to -1 completely hide the models).
defaultModelExpandDepthDEFAULT_MODEL_EXPAND_DEPTHNumber=1. The default expansion depth for the model on the model-example section.
defaultModelRenderingDEFAULT_MODEL_RENDERINGString=["example"*, "model"]. Controls how the model is shown when the API is first rendered. (The user can always switch the rendering for a given model by clicking the 'Model' and 'Example Value' links.)
displayRequestDurationDISPLAY_REQUEST_DURATIONBoolean=false. Controls the display of the request duration (in milliseconds) for "Try it out" requests.
docExpansionDOC_EXPANSIONString=["list"*, "full", "none"]. Controls the default expansion setting for the operations and tags. It can be 'list' (expands only the tags), 'full' (expands the tags and operations) or 'none' (expands nothing).
filterFILTERBoolean=false OR String. If set, enables filtering. The top bar will show an edit box that you can use to filter the tagged operations that are shown. Can be Boolean to enable or disable, or a string, in which case filtering will be enabled using that string as the filter expression. Filtering is case sensitive matching the filter expression anywhere inside the tag.
maxDisplayedTagsMAX_DISPLAYED_TAGSNumber. If set, limits the number of tagged operations displayed to at most this many. The default is to show all operations.
operationsSorterUnavailableFunction=(a => a). Apply a sort to the operation list of each API. It can be 'alpha' (sort by paths alphanumerically), 'method' (sort by HTTP method) or a function (see Array.prototype.sort() to know how sort function works). Default is the order returned by the server unchanged.
showExtensionsSHOW_EXTENSIONSBoolean=false. Controls the display of vendor extension (x-) fields and values for Operations, Parameters, Responses, and Schema.
showCommonExtensionsSHOW_COMMON_EXTENSIONSBoolean=false. Controls the display of extensions (pattern, maxLength, minLength, maximum, minimum) fields and values for Parameters.
tagsSorterUnavailableFunction=(a => a). Apply a sort to the tag list of each API. It can be 'alpha' (sort by paths alphanumerically) or a function (see Array.prototype.sort() to learn how to write a sort function). Two tag name strings are passed to the sorter for each pass. Default is the order determined by Swagger UI.
useUnsafeMarkdownUSE_UNSAFE_MARKDOWNBoolean=false. When enabled, sanitizer will leave style, class and data-* attributes untouched on all HTML Elements declared inside markdown strings. This parameter is Deprecated and will be removed in 4.0.0.
onCompleteUnavailableFunction=NOOP. Provides a mechanism to be notified when Swagger UI has finished rendering a newly provided definition.
syntaxHighlightUnavailableSet to false to deactivate syntax highlighting of payloads and cURL command, can be otherwise an object with the activate and theme properties.
syntaxHighlight.activateUnavailableBoolean=true. Whether syntax highlighting should be activated or not.
syntaxHighlight.themeUnavailableString=["agate"*, "arta", "monokai", "nord", "obsidian", "tomorrow-night"]. Highlight.js syntax coloring theme to use. (Only these 6 styles are available.)
tryItOutEnabledTRY_IT_OUT_ENABLEDBoolean=false. Controls whether the "Try it out" section should be enabled by default.
requestSnippetsUnavailableObject. This is the default configuration section for the the requestSnippets plugin.
requestSnippets: {
  generators: {
    "curl_bash": {
      title: "cURL (bash)",
      syntax: "bash"
    },
    "curl_powershell": {
      title: "cURL (PowerShell)",
      syntax: "powershell"
    },
    "curl_cmd": {
      title: "cURL (CMD)",
      syntax: "bash"
    },
  },
  defaultExpanded: true,
  languages: null, // e.g. only show curl bash = ["curl_bash"]
},
Network
Parameter nameDocker variableDescription
oauth2RedirectUrlOAUTH2_REDIRECT_URLString. OAuth redirect URL.
requestInterceptorUnavailableFunction=(a => a). MUST be a function. Function to intercept remote definition, "Try it out", and OAuth 2.0 requests. Accepts one argument requestInterceptor(request) and must return the modified request, or a Promise that resolves to the modified request.
request.curlOptionsUnavailableArray. If set, MUST be an array of command line options available to the curl command. This can be set on the mutated request in the requestInterceptor function. For example request.curlOptions = ["-g", "--limit-rate 20k"]
responseInterceptorUnavailableFunction=(a => a). MUST be a function. Function to intercept remote definition, "Try it out", and OAuth 2.0 responses. Accepts one argument responseInterceptor(response) and must return the modified response, or a Promise that resolves to the modified response.
showMutatedRequestSHOW_MUTATED_REQUESTBoolean=true. If set to true, uses the mutated request returned from a requestInterceptor to produce the curl command in the UI, otherwise the request before the requestInterceptor was applied is used.
supportedSubmitMethodsSUPPORTED_SUBMIT_METHODSArray=["get", "put", "post", "delete", "options", "head", "patch", "trace"]. List of HTTP methods that have the "Try it out" feature enabled. An empty array disables "Try it out" for all operations. This does not filter the operations from the display.
validatorUrlVALIDATOR_URLString="https://validator.swagger.io/validator" OR null. By default, Swagger UI attempts to validate specs against swagger.io's online validator. You can use this parameter to set a different validator URL, for example for locally deployed validators (Validator Badge). Setting it to either none, 127.0.0.1 or localhost will disable validation.
withCredentialsWITH_CREDENTIALSBoolean=false If set to true, enables passing credentials, as defined in the Fetch standard, in CORS requests that are sent by the browser. Note that Swagger UI cannot currently set cookies cross-domain (see swagger-js#1163) - as a result, you will have to rely on browser-supplied cookies (which this setting enables sending) that Swagger UI cannot control.
Macros
Parameter nameDocker variableDescription
modelPropertyMacroUnavailableFunction. Function to set default values to each property in model. Accepts one argument modelPropertyMacro(property), property is immutable
parameterMacroUnavailableFunction. Function to set default value to parameters. Accepts two arguments parameterMacro(operation, parameter). Operation and parameter are objects passed for context, both remain immutable
Authorization
Parameter nameDocker variableDescription
persistAuthorizationPERSIST_AUTHORIZATIONBoolean=false. If set to true, it persists authorization data and it would not be lost on browser close/refresh

Instance methods

💡 Take note! These are methods, not parameters.

Method nameDocker variableDescription
initOAuthSee oauth2.md(configObj) => void. Provide Swagger UI with information about your OAuth server - see the OAuth 2.0 documentation for more information.
preauthorizeBasicUnavailable(authDefinitionKey, username, password) => action. Programmatically set values for a Basic authorization scheme.
preauthorizeApiKeyUnavailable(authDefinitionKey, apiKeyValue) => action. Programmatically set values for an API key or Bearer authorization scheme. In case of OpenAPI 3.0 Bearer scheme, apiKeyValue must contain just the token itself without the Bearer prefix.

Docker

If you're using the Docker image, you can also control most of these options with environment variables. Each parameter has its environment variable name noted, if available.

Below are the general guidelines for using the environment variable interface.

String variables

Set the value to whatever string you'd like, taking care to escape characters where necessary

Example:

FILTER="myFilterValue" LAYOUT="BaseLayout"
Boolean variables

Set the value to true or false.

Example:

DISPLAY_OPERATION_ID="true" DEEP_LINKING="false"
Number variables

Set the value to n, where n is the number you'd like to provide.

Example:

DEFAULT_MODELS_EXPAND_DEPTH="5" DEFAULT_MODEL_EXPAND_DEPTH="7"
Array variables

Set the value to the literal array value you'd like, taking care to escape characters where necessary.

Example:

SUPPORTED_SUBMIT_METHODS="[\"get\", \"post\"]" URLS="[ { url: \"http://petstore.swagger.io/v2/swagger.json\", name: \"Petstore\" } ]"
Object variables

Set the value to the literal object value you'd like, taking care to escape characters where necessary.

Example:

SPEC="{ \"openapi\": \"3.0.0\" }"

Docker-Compose

.env file example encoding

SUPPORTED_SUBMIT_METHODS=['get', 'post'] URLS=[ { url: 'http://petstore.swagger.io/v2/swagger.json', name: 'Petstore' } ]
close