@@ -549,7 +549,7 @@ servers:
549
549
- ' 443'
550
550
default : ' 8443'
551
551
basePath :
552
- # open meaning there is the opportunity to use special base paths as assigned by the provider, default is `v2`
552
+ # open meaning there is the opportunity to use special base paths as assigned by the provider, default is "v2"
553
553
default : v2
554
554
` ` `
555
555
@@ -1746,8 +1746,8 @@ requestBody:
1746
1746
name:
1747
1747
type: string
1748
1748
icon:
1749
- # The default content type with " contentEncoding" present
1750
- # is application/octet-stream, so we need to set the correct
1749
+ # The default content type with ` contentEncoding` present
1750
+ # is " application/octet-stream" , so we need to set the correct
1751
1751
# image media type(s) in the Encoding Object.
1752
1752
type : string
1753
1753
contentEncoding : base64url
@@ -1802,18 +1802,18 @@ requestBody:
1802
1802
type: object
1803
1803
properties:
1804
1804
# default content type for a string without ` contentEncoding`
1805
- # is ` text/plain`
1805
+ # is " text/plain"
1806
1806
id :
1807
1807
type : string
1808
1808
format : uuid
1809
1809
1810
1810
# default content type for a schema without `type`
1811
- # is ` application/octet-stream`
1811
+ # is " application/octet-stream"
1812
1812
profileImage : {}
1813
1813
1814
1814
# default content type for arrays is based on the type
1815
1815
# in the `items` subschema, which is an object here,
1816
- # so the default content type for each item is ` application/json`
1816
+ # so the default content type for each item is " application/json"
1817
1817
addresses :
1818
1818
type : array
1819
1819
items :
@@ -1832,13 +1832,13 @@ requestBody:
1832
1832
schema:
1833
1833
type: object
1834
1834
properties:
1835
- # No Encoding Object, so use default ` text/plain`
1835
+ # No Encoding Object, so use default " text/plain"
1836
1836
id:
1837
1837
type: string
1838
1838
format: uuid
1839
1839
1840
- # Encoding Object overrides the default ` application/json` content type
1841
- # for each item in the array with ` application/xml; charset=utf-8`
1840
+ # Encoding Object overrides the default " application/json" content type
1841
+ # for each item in the array with " application/xml; charset=utf-8"
1842
1842
addresses:
1843
1843
description: addresses in XML format
1844
1844
type: array
@@ -1871,7 +1871,7 @@ requestBody:
1871
1871
multipart/form-data:
1872
1872
schema:
1873
1873
properties:
1874
- # The property name ' file' will be used for all files.
1874
+ # The property name ` file` will be used for all files.
1875
1875
file :
1876
1876
type : array
1877
1877
items : {}
@@ -2425,7 +2425,7 @@ paths:
2425
2425
# the target link operationId
2426
2426
operationId: getUserAddress
2427
2427
parameters:
2428
- # get the ` id` field from the request path parameter named `id`
2428
+ # use the value of the request path parameter named "id"
2429
2429
userid: $request.path.id
2430
2430
# the path item of the linked operation
2431
2431
/users/{userid}/address:
@@ -2453,7 +2453,7 @@ links:
2453
2453
address:
2454
2454
operationId: getUserAddressByUUID
2455
2455
parameters:
2456
- # get the `uuid` field from the `uuid` field in the response body
2456
+ # use the value of the ` uuid` field in the response body
2457
2457
userUuid : $response.body#/uuid
2458
2458
` ` `
2459
2459
@@ -2469,7 +2469,6 @@ field in an [Operation Object](#operation-object)), references MAY also be made
2469
2469
` ` ` yaml
2470
2470
links:
2471
2471
UserRepositories:
2472
- # returns array of '#/components/schemas/repository'
2473
2472
operationRef: '#/paths/~12.0~1repositories~1%7Busername%7D/get'
2474
2473
parameters:
2475
2474
username: $response.body#/username
@@ -2480,7 +2479,6 @@ or a URI `operationRef`:
2480
2479
` ` ` yaml
2481
2480
links:
2482
2481
UserRepositories:
2483
- # returns array of '#/components/schemas/repository'
2484
2482
operationRef: https://na2.gigantic-server.com/#/paths/~12.0~1repositories~1%7Busername%7D/get
2485
2483
parameters:
2486
2484
username: $response.body#/username
@@ -3396,23 +3394,23 @@ components:
3396
3394
allOf:
3397
3395
- $ref: '#/components/schemas/Pet'
3398
3396
- type: object
3399
- # all other properties specific to a ` Cat`
3397
+ # all other properties specific to a " Cat"
3400
3398
properties:
3401
3399
name:
3402
3400
type: string
3403
3401
Dog:
3404
3402
allOf:
3405
3403
- $ref: '#/components/schemas/Pet'
3406
3404
- type: object
3407
- # all other properties specific to a ` Dog`
3405
+ # all other properties specific to a " Dog"
3408
3406
properties:
3409
3407
bark:
3410
3408
type: string
3411
3409
Lizard:
3412
3410
allOf:
3413
3411
- $ref: '#/components/schemas/Pet'
3414
3412
- type: object
3415
- # all other properties specific to a ` Lizard`
3413
+ # all other properties specific to a " Lizard"
3416
3414
properties:
3417
3415
lovesRocks:
3418
3416
type: boolean
0 commit comments