Skip to main content
devtools24

Validador YAML

Valida sintaxis YAML y verifica errores.

Entrada0 chars
Salida
Parsed JSON will appear here...
Note: This validator supports YAML 1.1 specification. Multi-document YAML files will only parse the first document.

YAML - Detalles técnicos

YAML is a human-readable data serialization format commonly used for configuration files. It uses indentation for structure and supports comments, making it more readable than JSON.

Alternativa de línea de comandos

# Validate YAML with yamllint
pip install yamllint
yamllint config.yaml

# Convert YAML to JSON with yq
yq -o json config.yaml

Referencia

Ver especificación oficial