Skip to content

Commit a0709cd

Browse files
authored
add missing schema to "Path Item Object Example"
As pointed out by @darrelmiller, the path item object example was missing its `schema` attribute.
1 parent c0e5dd1 commit a0709cd

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

versions/3.0.md

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -713,9 +713,11 @@ 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
},
720722
"style": "simple"
721723
}
@@ -748,10 +750,11 @@ parameters:
748750
in: path
749751
description: ID of pet to use
750752
required: true
751-
type: array
752-
style: simple
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

0 commit comments

Comments
 (0)