YAML (YAML Ain't Markup Language)
YAML (YAML Ain't Markup Language) — читаемый формат сериализации данных, использующий отступы и минимум знаков пунктуации для представления структурированных данных. YAML популярен для конфигурационных файлов, CI/CD-пайплайнов и инструментов «инфраструктура как код».
MIME-тип
application/x-yaml
Тип
Текст
Сжатие
Без потерь
Преимущества
- + Highly readable — minimal syntax noise
- + Supports comments for inline documentation
- + Native in Docker, Kubernetes, Ansible, and CI/CD systems
- + Superset of JSON — any JSON is valid YAML
Недостатки
- − Indentation-sensitive — whitespace errors cause silent failures
- − Implicit type coercion can cause bugs ('yes' becomes boolean true)
- − More complex specification than JSON with anchors, tags, and directives
Когда использовать .YAML
Используйте YAML для конфигурационных файлов (Docker Compose, Kubernetes, GitHub Actions, Ansible), где важна читаемость.
Технические детали
YAML использует отступы для обозначения структуры, дефис (-) для элементов списка и пары ключ: значение для ассоциативных массивов. Поддерживает многострочные строки (| для литерала, > для свёрнутого текста), якоря (&) и ссылки (*), а также теги типов (!!int, !!float). Версия YAML 1.2 является надмножеством JSON.
История
YAML был впервые предложен Кларком Эвансом в 2001 году и разработан совместно с Ингви Сигурдссоном и Ореном Бен-Кики. Версия YAML 1.2 (2009) сделала формат надмножеством JSON, обеспечив совместимость с самым популярным форматом обмена данными в вебе.
Конвертировать из .YAML
Конвертировать в .YAML
Связанные форматы
Связанные термины
Learn More
JSON vs YAML vs TOML: Choosing a Configuration Format
Configuration files are the backbone of modern applications. JSON, YAML, and TOML each offer different trade-offs between readability, complexity, and …
How to Format and Validate JSON Data
Malformed JSON causes silent failures in APIs and configuration files. Learn how to format, validate, and debug JSON documents to …
Base64 Encoding: How It Works and When to Use It
Base64 converts binary data into ASCII text, making it safe for transmission through text-based systems. Learn when Base64 is the …
Best Practices for Working with Unix Timestamps
Unix timestamps provide a language-agnostic way to represent points in time, but they come with pitfalls around time zones, precision, …
Troubleshooting JWT Token Issues
JSON Web Tokens are widely used for authentication but can be frustrating to debug. This guide covers common JWT problems …
Hash Functions Compared: MD5, SHA-1, SHA-256, and Beyond
Hash functions are used for file integrity, password storage, and digital signatures. This comparison covers the most common algorithms, their …