Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion markdown/docs/concepts/asyncapi-document/structure.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ The individual `servers` field contains the following properties:

- `host`: The server hostname. It may include the port.
- `protocol`: The protocol or messaging protocol that is used by the server (for example, AMQP, MQTT, WebSocket).
- `protocolVersion`: The protocol version used for the connection.
- `protocolVersion`: The version of the **underlying communication protocol** used for connection (for example, AMQP `0.9.1`, MQTT `3.1.1`, HTTP `2.0`). This is distinct from the AsyncAPI specification version or your application's API version.
- `pathname`: The path to a resource in the host.
- `description`: A string describing the server.
- `title`: A human-friendly title for the server.
Expand Down
2 changes: 1 addition & 1 deletion markdown/docs/reference/specification/v3.0.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ Field Name | Type | Description
---|:---:|---
<a name="serverObjectHost"></a>host | `string` | **REQUIRED**. The server host name. It MAY include the port. This field supports [Server Variables](#serverObjectVariables). Variable substitutions will be made when a variable is named in `{`braces`}`.
<a name="serverObjectProtocol"></a>protocol | `string` | **REQUIRED**. The protocol this server supports for connection.
<a name="serverObjectProtocolVersion"></a>protocolVersion | `string` | The version of the protocol used for connection. For instance: AMQP `0.9.1`, HTTP `2.0`, Kafka `1.0.0`, etc.
<a name="serverObjectProtocolVersion"></a>protocolVersion | `string` | The version of the **underlying communication protocol** used for connection. This refers to the protocol version itself (e.g., AMQP `0.9.1`, MQTT `3.1.1`, HTTP `2.0`, Kafka `1.0.0`), **not** the AsyncAPI document version or application API version. Omit this field if the protocol has no versioning concept.
<a name="serverObjectPathname"></a>pathname | `string` | The path to a resource in the host. This field supports [Server Variables](#serverObjectVariables). Variable substitutions will be made when a variable is named in `{`braces`}`.
<a name="serverObjectDescription"></a>description | `string` | An optional string describing the server. [CommonMark syntax](https://spec.commonmark.org/) MAY be used for rich text representation.
<a name="serverObjectTitle"></a>title | `string` | A human-friendly title for the server.
Expand Down