Giter VIP home page Giter VIP logo

Comments (3)

sinclairzx81 avatar sinclairzx81 commented on May 24, 2024

@Baptiste-Garcin Hi,

This is more a Ajv question than a TypeBox one. However based on the information you've provided, the following seems to work fine in Ajv strict mode.

import { Type } from "@sinclair/typebox";
import Ajv from 'ajv'

enum Enum {
  A,
  B
}
const Common = Type.Object({
  x: Type.Number(),
  y: Type.Number(),
  z: Type.Number()
})
const Foo = Type.Intersect([
  Common,
  Type.Object({
    id: Type.Enum(Enum, { default: Enum.B })
  })
])

// ... test

const ajv = new Ajv({
  allErrors: true,
  coerceTypes: true,
  useDefaults: true,
})

const data = { x: 1, y: 2, z: 3 }

ajv.validate(Foo, data)

console.log(data) // { x: 1, y: 2, z: 3, id: 1 } - id generated with default

There shouldn't technically be an issue here (there's likely something else going on). Remember, TypeBox returns Json Schema, so you can check what it is generating with console.log.

const T = Type.String({ default: 'hello' })

console.log(JSON.stringify(T, null, 2)) // { type: 'string', default: 'hello' }

You may want to verify the schematics are what you expect them to be.

schemas, // partly JSON Schema, partly Typebox schema

Just note that it is fine to mix and match raw Json Schema with TB types if you're using Ajv. This shouldn't be an issue.

Hope this helps
S

from typebox.

sinclairzx81 avatar sinclairzx81 commented on May 24, 2024

@Baptiste-Garcin Heya

Going to close this issue as it seems to relate more to Ajv configuration than TypeBox. Just check the schematics you have are what you expect as per above. If you're still running into issues, if you can paste a full reproduction of the issue, I can take a look. Just reply on this thread.

Cheers!
S

from typebox.

Baptiste-Garcin avatar Baptiste-Garcin commented on May 24, 2024

Hi !

This issue might rather have something to do with defaults and AnyOf in AJV.

Thanks for the debugging tips !

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.