Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clarify HTTP compliance test params field #2202

Merged
merged 1 commit into from
Mar 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
13 changes: 8 additions & 5 deletions docs/source-1.0/spec/http-protocol-compliance-tests.rst
Original file line number Diff line number Diff line change
Expand Up @@ -207,8 +207,10 @@ that support the following members:
to parse and validate the expected data against generated data.
* - params
- ``document``
- Defines the input parameters used to generate the HTTP request. These
parameters MUST be compatible with the input of the operation.
- For clients, defines the input parameters used to generate the HTTP
request. For servers, defines the input parameters extracted from the
HTTP request. These parameters MUST be compatible with the input of the
operation.

Parameter values that contain binary data MUST be defined using
values that can be represented in plain text (for example, use "foo"
Expand Down Expand Up @@ -391,9 +393,10 @@ structures that support the following members:
base64 encoded.
* - params
- ``document``
- Defines the output or error parameters used to generate the HTTP
response. These parameters MUST be compatible with the targeted
operation's output or the targeted error structure.
- For clients, defines the output or error parameters extracted from the
HTTP response. For servers, defines the output or error parameters used
to generate the HTTP response. These parameters MUST be compatible with
the targeted operation's output or the targeted error structure.

Parameter values that contain binary data MUST be defined using
values that can be represented in plain text (for example, use "foo"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -208,8 +208,10 @@ that support the following members:
to parse and validate the expected data against generated data.
* - params
- ``document``
- Defines the input parameters used to generate the HTTP request. These
parameters MUST be compatible with the input of the operation.
- For clients, defines the input parameters used to generate the HTTP
request. For servers, defines the input parameters extracted from the
HTTP request. These parameters MUST be compatible with the input of the
operation.

Parameter values that contain binary data MUST be defined using
values that can be represented in plain text (for example, use "foo"
Expand Down Expand Up @@ -393,9 +395,10 @@ structures that support the following members:
base64 encoded.
* - params
- ``document``
- Defines the output or error parameters used to generate the HTTP
response. These parameters MUST be compatible with the targeted
operation's output or the targeted error structure.
- For clients, defines the output or error parameters extracted from the
HTTP response. For servers, defines the output or error parameters used
to generate the HTTP response. These parameters MUST be compatible with
the targeted operation's output or the targeted error structure.

Parameter values that contain binary data MUST be defined using
values that can be represented in plain text (for example, use "foo"
Expand Down
Loading