File tree Expand file tree Collapse file tree 1 file changed +13
-10
lines changed Expand file tree Collapse file tree 1 file changed +13
-10
lines changed Original file line number Diff line number Diff line change @@ -713,11 +713,13 @@ This object can be extended with [Specification Extensions](#specificationExtens
713
713
"in": "path",
714
714
"description": "ID of pet to use",
715
715
"required": true,
716
- "type": "array",
717
- "items": {
718
- "type": "string"
716
+ "schema": {
717
+ "type": "array",
718
+ "items": {
719
+ "type": "string"
720
+ }
719
721
},
720
- "style": "commaDelimited "
722
+ "style": "simple "
721
723
}
722
724
]
723
725
}
@@ -748,10 +750,11 @@ parameters:
748
750
in: path
749
751
description: ID of pet to use
750
752
required: true
751
- type: array
752
- format: form
753
- items:
754
- type: string
753
+ schema:
754
+ type: array
755
+ style: simple
756
+ items:
757
+ type: string
755
758
` ` `
756
759
757
760
# ### <a name="operationObject"></a>Operation Object
@@ -1016,7 +1019,7 @@ A header parameter with an array of 64 bit integer numbers:
1016
1019
"format": "int64"
1017
1020
}
1018
1021
},
1019
- "style": "commaDelimited "
1022
+ "style": "simple "
1020
1023
}
1021
1024
` ` `
1022
1025
@@ -1030,7 +1033,7 @@ schema:
1030
1033
items:
1031
1034
type: integer
1032
1035
format: int64
1033
- style: commaDelimited
1036
+ style: simple
1034
1037
` ` `
1035
1038
1036
1039
A path parameter of a string value :
You can’t perform that action at this time.
0 commit comments