JSON to YAML
What this is
YAML is what Kubernetes and GitHub Actions want to read; JSON is what APIs speak. This dump writes JSON null/bool/number/string/array/object as YAML. It is not a bidirectional YAML parser and will not preserve YAML-only features (anchors, tags, custom types). Quote strings that look like numbers or booleans so you do not get the Norway problem (NO → false) when someone later parses the YAML.
Open the formatter — paste stays in this tab.
FAQ
- Can I convert YAML back?
- Not on this page. Paste JSON. For YAML → JSON use a YAML parser in your stack.