## CLI Configuration options

These options are supported using the config file.

| name                         | type    | available options   | description                                                                                                                                                                                                                                                                                 |
| ---------------------------- | ------- | ------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| requestNameSource            | enum    | **Fallback**, URL   | Determines how the requests inside the generated collection will be named. If “Fallback” is selected, the request will be named after one of the following schema values: `description`, `operationid`, `url`.                                                                              |
| indentCharacter              | enum    | **Space**, Tab      | Option for setting indentation character                                                                                                                                                                                                                                                    |
| collapseFolders              | boolean | **true**, false     | Importing will collapse all folders that have only one child element and lack persistent folder-level data.                                                                                                                                                                                 |
| requestParametersResolution  | enum    | **Schema**, Example | Select whether to generate the request parameters based on the [schema](https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.0.2.md#schemaObject) or the [example](https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.0.2.md#exampleObject) in the schema.  |
| exampleParametersResolution  | enum    | Schema, **Example** | Select whether to generate the response parameters based on the [schema](https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.0.2.md#schemaObject) or the [example](https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.0.2.md#exampleObject) in the schema. |
| folderStrategy               | enum    | **Paths**, Tags     | Select whether to create folders according to the spec’s paths or tags.                                                                                                                                                                                                                     |
| schemaFaker                  | boolean | **true**, false     | Whether or not schemas should be faked.                                                                                                                                                                                                                                                     |
| shortValidationErrors        | boolean | true, **false**     | Whether detailed error messages are required for request <> schema validation operations.                                                                                                                                                                                                   |
| validationPropertiesToIgnore | array   |                     | Specific properties (parts of a request/response pair) to ignore during validation. Must be sent as an array of strings. Valid inputs in the array: PATHVARIABLE, QUERYPARAM, HEADER, BODY, RESPONSE_HEADER, RESPONSE_BODY                                                                  |
| showMissingInSchemaErrors    | boolean | true, **false**     | MISSING_IN_SCHEMA indicates that an extra parameter was included in the request. For most use cases, this need not be considered an error.                                                                                                                                                  |
| detailedBlobValidation       | boolean | true, **false**     | Determines whether to show detailed mismatch information for application/json content in the request/response body.                                                                                                                                                                         |
