Giter VIP home page Giter VIP logo

Comments (6)

sinclairzx81 avatar sinclairzx81 commented on May 11, 2024

@SzHeJason Hi, this might be an issue with fast-json-stringify (the JSON serializer Fastify uses). As a quick test, can you try the following.

//-------------------------------------------
// replace this
//-------------------------------------------

export const responseSchema = Type.Object({
  code: Type.Number(),
  subcode: Type.Number(),
  message: Type.String(),
  data: Type.Dict(Type.Any()) ,
})

//-------------------------------------------
// ... with (raw JSONSchema from TypeBox)
//-------------------------------------------

export const responseSchema = {
  type: 'object',
  properties: {
    code: { type: 'number' },
    subcode: { type: 'number' },
    message: { type: 'string' },
    data: { type: 'object', additionalProperties: {} } // possible 'any' issue here.
  },
  required: [ 'code', 'subcode', 'message', 'data' ]
}

Give this a try and see if the problem still exists. Note you can also print this schema with console.log(Type.Strict(responseSchema)).

I've actually submitted a few PR's to fast-json-stringify to resolve a couple of issues with any type schemas. It's possible the empty schema on additionalProperties: {} may have been overlooked. If so, you can submit the raw JSONSchema as an issue on fast-json-stringify and link back to this issue.

Let me know how you go
S

from typebox.

SzHeJason avatar SzHeJason commented on May 11, 2024

Get same error after replace.
But change additionalProperties to true is working

const Controller: FastifyPluginCallback = (server, options, next) => {
  server.post(
    '/:moduleName/:action',
    {
      schema: {
        body: bodySchema,
        params: paramsSchema,
        response: {
          '2xx': {
            type: 'object',
            properties: {
              code: { type: 'number' },
              subcode: { type: 'number' },
              message: { type: 'string' },
              data: { type: 'object', additionalProperties: true }, // possible 'any' issue here.
            },
            required: ['code', 'subcode', 'message', 'data'],
          },
        },
      },
    },
    async (request, reply) => {
      reply.send({
        code: 0,
        subcode: 0,
        message: 'ok',
        data: {
          a: '123',
        },
      })
    }
  )
  next()
}

from typebox.

sinclairzx81 avatar sinclairzx81 commented on May 11, 2024

@SzHeJason Looks like an issue with {} schemas in fast-json-stringify when applied to additionalProperties. Would you be able to create an issue on that repository and link back to this issue?

For reference, there is information about the objects applied to additionalProperties noted here. Specifically the section that reads.

If additionalProperties is an object, that object is a schema that will be used to validate 
any additional properties not listed in properties.

For example, one can allow additional properties, but only if they are each a string:

{
  "type": "object",
  "properties": {
    "number":      { "type": "number" },
    "street_name": { "type": "string" },
    "street_type": { "type": "string",
                     "enum": ["Street", "Avenue", "Boulevard"]
                   }
  },
  "additionalProperties": { "type": "string" }
}

So essentially if additionalProperties is an object then that object schema is used to validate any unknown properties found on the object. The expectation here is that {} should allow any property to be assigned to the object (satisfying the Type.Dict(..) schema type). This is most likely an oversight.

from typebox.

sinclairzx81 avatar sinclairzx81 commented on May 11, 2024

@SzHeJason Have submitted a PR that should resolve this issue. Will need to wait on the fast-json-stringify maintainers to give the green light however. Will close off this issue once things go through.

from typebox.

sinclairzx81 avatar sinclairzx81 commented on May 11, 2024

@SzHeJason This should be all resolved. Ensure to pull the latest dependency of fast-json-stringify to get the latest updates. Will close off this issue.

Cheers
S

from typebox.

SzHeJason avatar SzHeJason commented on May 11, 2024

Awesome , Thank you

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.