Skip to content

Commit dfb6309

Browse files
author
Ron
authored
Merge pull request OAI#1135 from ePaul/patch-2
OAI#1133 - replace commaDelimited by simple.
2 parents c0f0849 + a0709cd commit dfb6309

File tree

1 file changed

+13
-10
lines changed

1 file changed

+13
-10
lines changed

versions/3.0.md

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -713,11 +713,13 @@ This object can be extended with [Specification Extensions](#specificationExtens
713713
"in": "path",
714714
"description": "ID of pet to use",
715715
"required": true,
716-
"type": "array",
717-
"items": {
718-
"type": "string"
716+
"schema": {
717+
"type": "array",
718+
"items": {
719+
"type": "string"
720+
}
719721
},
720-
"style": "commaDelimited"
722+
"style": "simple"
721723
}
722724
]
723725
}
@@ -748,10 +750,11 @@ parameters:
748750
in: path
749751
description: ID of pet to use
750752
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
755758
```
756759

757760
#### <a name="operationObject"></a>Operation Object
@@ -1016,7 +1019,7 @@ A header parameter with an array of 64 bit integer numbers:
10161019
"format": "int64"
10171020
}
10181021
},
1019-
"style": "commaDelimited"
1022+
"style": "simple"
10201023
}
10211024
```
10221025

@@ -1030,7 +1033,7 @@ schema:
10301033
items:
10311034
type: integer
10321035
format: int64
1033-
style: commaDelimited
1036+
style: simple
10341037
```
10351038

10361039
A path parameter of a string value:

0 commit comments

Comments
 (0)