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
for marshalling/unmarshalling my service input/output data i use github.com/google/jsonapi ( https://jsonapi.org/ ).
Is there a way to use []Byte(or a string with json data) in methods:
AddResponse (parameter 'schema')
AddParamBody( parameter 'p')
?
The text was updated successfully, but these errors were encountered:
No, because JSON has no sufficient type information corresponding to OpenAPI 2.0 data type.
For example, for JSON {"a": 1}, you don't know is it int32, int64, float, or double.
for marshalling/unmarshalling my service input/output data i use github.com/google/jsonapi ( https://jsonapi.org/ ).
Is there a way to use []Byte(or a string with json data) in methods:
AddResponse (parameter 'schema')
AddParamBody( parameter 'p')
?
The text was updated successfully, but these errors were encountered: