Added markdown description for parametersResolution options

This commit is contained in:
Vishal Shingala
2020-04-24 13:01:47 +05:30
parent cc6f17dd0b
commit 5e3a31a4ff
2 changed files with 17 additions and 9 deletions

View File

@@ -37,7 +37,7 @@ module.exports = {
availableOptions: ['Url', 'Fallback'],
description: '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.',
' values: `description`, `operationid`, `url`.',
external: true,
usage: ['CONVERSION']
},
@@ -67,8 +67,10 @@ module.exports = {
type: 'enum',
default: 'Schema',
availableOptions: ['Example', 'Schema'],
description: 'Select whether to generate the request parameters based on the schema or the' +
' examples in the schema.',
description: '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.',
external: true,
usage: ['CONVERSION']
},
@@ -78,8 +80,10 @@ module.exports = {
type: 'enum',
default: 'Example',
availableOptions: ['Example', 'Schema'],
description: 'Select whether to generate the response parameters based on the schema or the' +
' examples in the schema.',
description: '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.',
external: true,
usage: ['CONVERSION']
},