mirror of
https://github.com/apple/pkl.git
synced 2026-01-11 22:30:54 +01:00
Export / Import JSON Schema from/to PKL classes #43
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @buremba on GitHub (Feb 8, 2024).
It would be nice to generate PKL classes from JSON Schema definitions. Similarly, it can go the other way around from PKL to JSON Schema. I'm aware that the typing will be lost, but since JSON Schema is integrated pretty much everywhere, it can provide interoperability for the language.
@bioball commented on GitHub (Feb 8, 2024):
Good timing; we just submitted https://github.com/apple/pkl-pantry/pull/12 that adds support for this!
@bioball commented on GitHub (Feb 9, 2024):
That PR has landed.
You can generate Pkl schema from JSON Schema; for example:
Note: depending on the input JSON Schema, you might need to tinker with the generated result to make it more useful. Some of JSON Schema is more expressive than Pkl; take a look at the docs for more details: https://pkl-lang.org/package-docs/pkg.pkl-lang.org/pkl-pantry/org.json_schema.contrib/current/generate/index.html
@buremba commented on GitHub (Feb 11, 2024):
Great to hear! JSON Schema also conditional blocks i.e
if/elseand I assume that it's not supported yet. Not sure if it's feasible in addition to the work foranyOf/allOffbut maybe something to consider.BTW, the speed you ship the integrations today is impressive. This was something that I tried with Jsonnet a while and I couldn't manage to get it done in a seamless way. Great work!
@gobetti commented on GitHub (Mar 5, 2024):
generate.pklworks great and was absolutely critical for our team to start considering pkl adoption, thank you for that 👏I see https://github.com/apple/pkl-pantry/pull/12 mentions it:
but I'm wondering if one is actually able to convert Pkl classes into a JSON Schema; for example:
generate.pklto generate Pkl from a JSON SchemaI'm describing the scenario above just to be clear about what kind of Pkl code I'm trying to convert to a JSON Schema, in general I don't expect people to do those exact 2 steps. But something like those steps would be helpful for our project to confidently migrate from JSON Schemas to Pkl, and not have to change all the systems to Pkl at once.
Thank you!
@dig commented on GitHub (Jun 4, 2024):
Allowing conversion of Pkl to JSON Schema would be useful!
@bioball commented on GitHub (Jun 4, 2024):
We don't get have a Pkl -> JSON Schema generator, but we do have one for OpenAPI v3.1 Schema, which is mostly compatible with JSON Schema.
See the details here: https://pkl-lang.org/package-docs/pkg.pkl-lang.org/pkl-pantry/org.openapis.v3.contrib/current/SchemaGenerator/index.html#generate%28%29
For example, given:
The command
pkl eval personSchema.pklproduces:There's a couple limitations here; see the details in pkldoc for method
generate.