I just learned about Pkl, so take this with a grain of salt. JSON Schema and Pkl seem to have some overlap. But JSON schema is not specifically designed for handling configuration and Pkl supports other formats like YAML.
Comment on Introducing Pkl, a programming language for configuration
itsathursday@lemmy.world 9 months ago
Was there anything particularly wrong with json schema? Aside from being a validator and not a “language”.
canpolat@programming.dev 9 months ago
Lynxtickler@sopuli.xyz 9 months ago
JSON schema supports YAML as well, no? That’s because JSON and YAML are both essentially just different syntaxes for writing the same objects right?
TerrorBite@meow.social 9 months ago
It's the other way around. The YAML schema supports JSON because YAML was designed as a superset of JSON.
Lynxtickler@sopuli.xyz 9 months ago
I get where you’re coming from, but JSON Schema still absolutely is the framework that supports YAML files and not the other way around. I’ve been using JSON Schema pretty heavily lately to write schemas using YAML, for validating YAML.
canpolat@programming.dev 9 months ago
Possibly. My point is: despite having a common subset Pkl and JSON schema doesn’t seem to be solving the same problems. But, I’m just learning about it, so I may just be wrong.
abhibeckert@lemmy.world 9 months ago
Json is a nightmare to write.
Compare this pkl code:
To the equivalent in json-schema:
I think it’s pretty clear pkl is better.
itsathursday@lemmy.world 9 months ago
Nice