TOML Schema is live
TOML Schema has been officially launched for testing and evaluation. It provides a way to describe the structure and constraints of TOML files using a schema language that is itself written in TOML. The project aims to enhance the safety and ease of modifying TOML configuration files.
- ▪TOML Schema is now available at toml-schema.org for testing and evaluation.
- ▪The schema language allows projects to define the expected structure and types of TOML files without requiring users to switch formats.
- ▪The project began in June 2020 and has evolved into a comprehensive specification with reference implementations in multiple programming languages.
Opening excerpt (first ~120 words) tap to expand
try { if(localStorage) { let currentUser = localStorage.getItem('current_user'); if (currentUser) { currentUser = JSON.parse(currentUser); if (currentUser.id === 48223) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } Bruno Borges Posted on May 25 TOML Schema is live #cargo #rust TOML Schema is now available for testing and evaluation, and now has a home: https://toml-schema.org TOML Schema is a schema language for TOML that is itself written in TOML. It lets a project describe the expected structure, names, value types, and constraints of a TOML file without asking users or tools to switch mental models or formats such as JSON Schema.
…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).