GithubHelp home page GithubHelp logo

Comments (2)

jfarre90 avatar jfarre90 commented on May 29, 2024 1

Hi @ThomasAribart! Thanks for the reply and info shared, much appreciated. I agree with your points and it makes sense.

In our use case we ended up defining 2 separate schemas, one for the "dog" and another for the "cat" in this example. And within our logic we had a switch/case that used one schema or the other for some validation. As for the type generated, we just applied the condition from our end like...

type FinalType =
  | FromSchema<typeof dogSchema>
  | FromSchema<typeof catSchema>

Which for our use case ended up working nicely, and we didn't have to use the parseIfThenElseKeywords which was causing some TS compilation issues in some of our larger schemas (as you mention in your docs, it sometimes got aborted due to complexity).

However, we are still refactoring a big part of our application to TS, so the info above is helpful in case we face a similar scenario down the line.

Thanks again for the great work! Finding this library very useful 🎉

from json-schema-to-ts.

ThomasAribart avatar ThomasAribart commented on May 29, 2024

Hi @jfarre90 and thanks for the reach out !

This is a tricky one: properties / additionalProperties / required from parent & child schemas behave separately and are not to be merged. See https://json-schema.org/understanding-json-schema/reference/object#extending

What FromSchema does is actually to intersect the two allOf cases but with those keywords reset to their default values (see this line of code), and then to the rest of the parent schema.

So it compute the intersection of those schemas:

  • 1st child schema:
{
  type: "object",
  properties: {},
  required: [],
  additionalProperties: true,
  if: ... (cat),
  then ... (cat)
}
  • 2nd child schema:
{
  type: "object",
  properties: {},
  required: [],
  additionalProperties: true,
  if: ... (dog),
  then ... (dog)
}
  • Parent schema:
{
  type: "object",
  properties: {
    animal,
    ...
  },
  required: ["animal",...]
}

The pb is that the first two schemas, taken independently, are not mutually exclusive because the animal property can have any value.

If you add it to the child schemas, it will actually work!

const configTest = {
  type: "object",
  properties: {
    animal: { $ref: "#/$defs/animal" },
    dynamicProperty: {},
  },
  additionalProperties: false,
  allOf: [
    {
      properties: {
        animal: { $ref: "#/$defs/animal" },
      },
      if: {
        properties: {
          animal: { const: "cat" },
        },
      },
      then: {
        properties: {
          dynamicProperty: {
            type: "object",
            properties: {
              key1: { type: "string" },
            },
            required: ["key1"],
            additionalProperties: false,
          },
        },
      },
    },
    {
      properties: {
        animal: { $ref: "#/$defs/animal" },
      },
      if: {
        properties: {
          animal: { const: "dog" },
        },
      },
      then: {
        properties: {
          dynamicProperty: {
            type: "null",
          },
        },
      },
    },
  ],
  required: ["animal", "dynamicProperty"],
  $defs: {
    animal: { enum: ["cat", "dog"] },
  },
} as const;

type CONFIGTEST = FromSchema<
  typeof configTest,
  { parseIfThenElseKeywords: true }
>;

What I'm sure of is that properties cannot naively be merged from child to parent schemas. Still, I'm not sure resetting all properties is the best approach 🤷‍♂️ WDYT ?

from json-schema-to-ts.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.