Loading...
Loading...
YAML Ain't Markup Language
MIME type: application/x-yaml
YAML is a human-friendly data serialization language used extensively for configuration files, CI/CD pipelines, and infrastructure-as-code. It uses indentation instead of brackets, making it cleaner to read than JSON or XML.
YAML uses indentation to denote structure. It supports scalars (strings, numbers, booleans, null), sequences (arrays), and mappings (objects). YAML 1.2 (current) is a superset of JSON - all valid JSON is valid YAML.
YAML is a human-readable data format used for configuration files. It's popular in DevOps (Docker, Kubernetes, CI/CD) because it's cleaner than JSON or XML.
YAML is better for config files (supports comments, less verbose). JSON is better for APIs and data interchange (faster parsing, no indentation issues).