YAML
YAML (short for YAML Ain’t Markup Language) is a human-readable data serialization standard commonly used for configuration files and data exchange. It originated as a replacement for XML and JSON in contexts where readability by humans is important. The YAML 1.2 specification is the current standard, and YAML is designed to be a superset of JSON, with JSON documents being valid YAML documents.
YAML uses indentation to denote structure. It represents data as scalars (strings, numbers, booleans, null), sequences
YAML is widely used in software configuration and deployment. It is the format of many configuration files
Cautions: YAML parsing can be sensitive to indentation and syntax, and loading YAML from untrusted sources