What can you do with JSON TO YAML CONVERTER ?
This tool will help you to convert your JSON String/Data to YAML String/Data
Quickly convert JavaScript Object Notation to Yet Another Markup Language. Enter JSON in the input box on the left and you'll immediately get YAML in the output box on the right. Enter JSON, get YAML.
Json to YAML converter examples
JSON
[
{
"title": "Json To Csv",
"slug": "json-to-csv",
"year": "2019"
},
{
"title": "Json To Array",
"slug": "json-to-array",
"year": "2019"
}
]
YAML
-
title: 'Json To Csv'
slug: json-to-csv
year: '2019'
-
title: 'Json To Array'
slug: json-to-array
year: '2019'
Tool Convert JSON to YAML online
JSON
a subset of the JavaScript object notation syntax
data stored in name/value pairs
records separated by commas
field names & strings are wrapped by double quotes
YAML
stands for YAML ain't markup language and is a superset of JSON - Convert YAML to JSON
.yml files begin with '---', marking the start of the document
key value pairs are separated by colon
lists begin with a hyphen