YAML
- This is data representation format
- This is used to represent data in the name-value pairs
- Sample YAML
---
title: PS1
release-date: 30/09/2022
languages:
- tamil
- telugu
- kannada
- hindi
- malyalam
budget: 400
director: maniratnam
cast:
xxx: vikram
xxy: karthi
- Json also is the data representation format
{
"title": "PS1",
"release-date": "30/09/2022",
"budget": 400,
"languages": [
"telugu",
"tamil"
],
"director": "maniratnam",
"cast": {
"xxx": "vikram",
"xxy": "karthi"
},
"isimax": true
}
Like this:
Like Loading...