Skip to content

Commit a8a57fa

Browse files
committed
Section link instead of page link
1 parent 3245bfe commit a8a57fa

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

versions/3.1.1.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1177,7 +1177,7 @@ See [Appendix E](#percentEncodingAndFormMediaTypes) for a detailed examination o
11771177
There are four possible parameter locations specified by the `in` field:
11781178
* path - Used together with [Path Templating](#pathTemplating), where the parameter value is actually part of the operation's URL. This does not include the host or base path of the API. For example, in `/items/{itemId}`, the path parameter is `itemId`.
11791179
* query - Parameters that are appended to the URL. For example, in `/items?id=###`, the query parameter is `id`.
1180-
* header - Custom headers that are expected as part of the request. Note that [RFC7230](https://tools.ietf.org/html/rfc7230#page-22) states header names are case insensitive.
1180+
* header - Custom headers that are expected as part of the request. Note that [RFC7230](https://tools.ietf.org/html/rfc7230#section-3.2) states header names are case insensitive.
11811181
* cookie - Used to pass a specific cookie value to the API.
11821182

11831183
##### Fixed Fields
@@ -1995,7 +1995,7 @@ Describes a single response from an API Operation, including design-time, static
19951995
Field Name | Type | Description
19961996
---|:---:|---
19971997
<a name="responseDescription"></a>description | `string` | **REQUIRED**. A description of the response. [CommonMark syntax](https://spec.commonmark.org/) MAY be used for rich text representation.
1998-
<a name="responseHeaders"></a>headers | Map[`string`, [Header Object](#headerObject) \| [Reference Object](#referenceObject)] | Maps a header name to its definition. [RFC7230](https://tools.ietf.org/html/rfc7230#page-22) states header names are case insensitive. If a response header is defined with the name `"Content-Type"`, it SHALL be ignored.
1998+
<a name="responseHeaders"></a>headers | Map[`string`, [Header Object](#headerObject) \| [Reference Object](#referenceObject)] | Maps a header name to its definition. [RFC7230](https://tools.ietf.org/html/rfc7230#section-3.2) states header names are case insensitive. If a response header is defined with the name `"Content-Type"`, it SHALL be ignored.
19991999
<a name="responseContent"></a>content | Map[`string`, [Media Type Object](#mediaTypeObject)] | A map containing descriptions of potential response payloads. The key is a media type or [media type range](https://tools.ietf.org/html/rfc7231#appendix-D) and the value describes it. For responses that match multiple keys, only the most specific key is applicable. e.g. text/plain overrides text/*
20002000
<a name="responseLinks"></a>links | Map[`string`, [Link Object](#linkObject) \| [Reference Object](#referenceObject)] | A map of operations links that can be followed from the response. The key of the map is a short name for the link, following the naming constraints of the names for [Component Objects](#componentsObject).
20012001

@@ -2008,7 +2008,6 @@ Response of an array of a complex type:
20082008
```json
20092009
{
20102010
"description": "A complex object array response",
2011-
"content": {
20122011
"application/json": {
20132012
"schema": {
20142013
"type": "array",

0 commit comments

Comments
 (0)