Seweryn Niemiec

Results 3 comments of Seweryn Niemiec

I have exactly the same problem as @m-schroeer and I'm using OpenAPI3. JSON payloads are displayed as escaped strings in ReDoc and Postman (import OpenApi3 YAML file).

> Have you tried using the Postman gradle-plugin, generating the Postman Collection and importing this instead, @thugcee ? Export to the Postman's Collection format is OK. `example`'s string value in...

Here is a quick fix for OpenAPI3 YAML files produced by `ePages-de/restdocs-api-spec`: ```python #!/usr/bin/env python3 import sys import yaml import json def fix_examples(res: dict): for key, value in res.items(): if...