YAMLs
YAMLs refer to files or documents written in YAML, a human-readable data serialization language used for configuration and data exchange. YAML stands for YAML Ain't Markup Language and was designed in the early 2000s to be easy to read and write while expressing complex data structures. It is widely used for configuration files, data exchange, and software deployment manifests, and YAML 1.2 is the current commonly implemented standard. JSON is a strict subset of YAML, which means any valid JSON is also valid YAML.
YAMLs are indentation-based and rely on whitespace to denote structure. Mappings are written as key: value pairs,
Common data types in YAMLs include scalars (strings, numbers, booleans), sequences (lists), and mappings (dictionaries). YAML
While YAMLs are powerful and readable, they can be sensitive to indentation and syntax, and loading untrusted