YAML (YAML Ain’t Markup Language) is a human-readable data format.
Supports 2 tpype of extension
<file_name>.yaml
<file_name>.yml
yaml is case sensitive. So we have to be careful while writing the yaml file. We have to use the same case for the keys and values.
yaml is not a programming language, it is a data serialization language. It is used to represent data in a structured format. It is commonly used for configuration files, data exchange between languages with different data structures, and for storing data in a human-readable format.
yaml is a superset of JSON, which means that any valid JSON file is also a valid YAML file. However, YAML has additional features that make it more powerful and flexible than JSON.
No comments:
Post a Comment