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
When using an OpenAPI interface to manage passwords, we may want to allow fields like password to appear in the input, but not in the results of GET requests. We could do this by adding a field secret: true, and either:
Removing the field entirely from the GET version of a structure, or
Allowing it to be present, but only with a placeholder value.
The decision between these two choices is ongoing inside Faraday.
The text was updated successfully, but these errors were encountered:
emk
changed the title
Provide built-in support for
Provide built-in support for "write-only" fields for secret/hidden values
May 9, 2022
When using an OpenAPI interface to manage passwords, we may want to allow fields like
password
to appear in the input, but not in the results of GET requests. We could do this by adding a fieldsecret: true
, and either:The decision between these two choices is ongoing inside Faraday.
The text was updated successfully, but these errors were encountered: