You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: versions/3.0.md
+19-16Lines changed: 19 additions & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -337,8 +337,8 @@ A Path Item may be empty, due to [ACL constraints](#securityFiltering). The path
337
337
Field Name | Type | Description
338
338
---|:---:|---
339
339
<a name="pathItemRef"></a>$ref | `string` | Allows for an external definition of this path item. The referenced structure MUST be in the format of a [Path Item Object](#pathItemObject). If there are conflicts between the referenced definition and this Path Item's definition, the behavior is *undefined*.
340
-
<a name="pathItemSummary"></a>summary | An optional, string summary, intended to apply to all operations in this path.
341
-
<a name="pathItemDescription"></a>description | An optional, string description, intended to apply to all operations in this path.
340
+
<a name="pathItemSummary"></a>summary| `string` | An optional, string summary, intended to apply to all operations in this path.
341
+
<a name="pathItemDescription"></a>description | `string` | An optional, string description, intended to apply to all operations in this path.
342
342
<a name="pathItemGet"></a>get | [Operation Object](#operationObject) | A definition of a GET operation on this path.
343
343
<a name="pathItemPut"></a>put | [Operation Object](#operationObject) | A definition of a PUT operation on this path.
344
344
<a name="pathItemPost"></a>post | [Operation Object](#operationObject) | A definition of a POST operation on this path.
@@ -754,7 +754,6 @@ Field Name | Type | Description
754
754
---|:---:|---
755
755
<a name="requestBodyDescription"></a>description | `string` | A brief description of the request body. This could contain examples of use. [GFM syntax](https://help.github.com/articles/github-flavored-markdown) can be used for rich text representation.
756
756
<a name="requestBodyRepresentations"></a>representations | [Representations Object](#representationsObject) | The representations of the request body.
757
-
<a name="requestBodySchema"></a>schema | [Schema Object](#schemaObject) | The schema defining the type used for the request body.
758
757
<a name="requestBodyRequired"></a>required | `boolean` | Determines if the request body is required in the request. Defaults to `true`.
759
758
760
759
@@ -849,8 +848,6 @@ Each key in the representations object is the media-type of the [Representation
849
848
```js
850
849
"representations" : {
851
850
"application/json": {
852
-
'application/json':
853
-
854
851
"schema": {
855
852
"type": "array",
856
853
"items": {
@@ -920,24 +917,30 @@ A representation description.
0 commit comments