Giter VIP home page Giter VIP logo

Comments (1)

sinclairzx81 avatar sinclairzx81 commented on May 24, 2024

@Baptiste-Garcin Hi,

TypeBox won't support a DiscrimatedUnion type because it's not part of the Json Schema specification. Ajv does provide support for it, but it needs to be enabled to use (and it's still outside the specification). Note also that TypeScript doesn't have a representation of DiscriminatedUnion either. As it has a structural type system, it has features to deduce a union variant through control flow checks.

TypeScript Link Here

import { Type, Static } from '@sinclair/typebox'

const A = Type.Object({
   type: Type.Literal('A'), // Discriminator
   value: Type.Number()
})
const B = Type.Object({
   type: Type.Literal('B'), // Discriminator
   value: Type.String()
})
const C = Type.Object({
   type: Type.Literal('C'), // Discriminator
   value: Type.Boolean()
})

const U = Type.Union([A, B, C])

function test(union: Static<typeof U>) {
    if(union.type === 'B') {  // <- Control Flow Check

        union.value           // <- Value is String
    }
}

If you need to represent a property in the schematic that indicates "which" property of the union variants should be used for discrimination, you can optionally add this metadata in with.

const U = Type.Union([A, B, C], { discriminator: 'type' })

However, this is not required for validation (it's only usually helpful for tools that might transform a schema into code for nominal type systems). As far as Json Schema goes, the discriminator is implicit by having a unique discriminator field on each union variant.

Will close off this issue for now as this functionality is largely out of scope.
Cheers
S

from typebox.

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.