YAML-JSON Converter

Convert between YAML and JSON formats with ease

YAML Input

JSON Output

JSON will appear here...

About YAML and JSON

YAML

YAML (YAML Ain't Markup Language) is a human-readable data serialization format. It's designed to be easily readable and writeable by humans, with significant whitespace and minimal punctuation.

name: Example
version: 1.0
settings:
  enabled: true
  items:
  - first
  - second

JSON

JSON (JavaScript Object Notation) is a lightweight data interchange format. It's easy for machines to parse and generate, using a syntax similar to JavaScript object literals.

{
  "name": "Example",
  "version": 1.0,
  "settings": {
    "enabled": true,
    "items": [
      "first",
      "second"
    ]
  }
}