Skip to content

Commit

Permalink
Merge pull request #3806 from handrews/undef-impdef-320
Browse files Browse the repository at this point in the history
Define "undefined" and "implementation-defined" (3.2.0 port of #3779)
  • Loading branch information
handrews committed May 16, 2024
2 parents 44da621 + 6e76545 commit 1496e07
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions versions/3.2.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,19 @@ Some examples of possible media type definitions:
The HTTP Status Codes are used to indicate the status of the executed operation.
The available status codes are defined by [RFC7231](https://tools.ietf.org/html/rfc7231#section-6) and registered status codes are listed in the [IANA Status Code Registry](https://www.iana.org/assignments/http-status-codes/http-status-codes.xhtml).

##### <a name="undefinedAndImplementationDefinedBehavior"></a>Undefined and Implementation-Defined Behavior

This specification deems certain situations to have either _undefined_ or _implementation-defined_ behavior.

Behavior described as _undefined_ is likely, at least in some circumstances, to result in outcomes that contradict the specification.
This description is used when detecting the contradiction is impossible or impractical.
Implementations MAY support undefined scenarios for historical reasons, including ambiguous text in prior versions of the specification.
This support might produce correct outcomes in many cases, but relying on it is NOT RECOMMENDED as there is no guarantee that it will work across all tools or with future specification versions, even if those versions are otherwise strictly compatible with this one.

Behavior described as _implementation-defined_ allows implementations to choose which of several different-but-compliant approaches to a requirement to implement.
This documents ambiguous requirements that API description authors are RECOMMENDED to avoid in order to maximize interoperability.
Unlike undefined behavior, it is safe to rely on implementation-defined behavior if _and only if_ it can be guaranteed that all relevant tools support the same behavior.

## Specification

### Versions
Expand Down

0 comments on commit 1496e07

Please sign in to comment.