GithubHelp home page GithubHelp logo

Comments (5)

Twipped avatar Twipped commented on August 20, 2024

You're right, it's not valid swagger by the spec. This was an extension to swagger that we used at Shutterstock because otherwise there was no way to define a property that could be null. The libraries we used back then supported it (curiously, I thought Swagger UI was one of them).

There is also no null type. Swagger 3.0 added the nullable: true attribute. I don't have the time right now to change this lib to use it, but I'd welcome a pull request that switched to that behavior.

from joi-to-swagger.

martinmacko47 avatar martinmacko47 commented on August 20, 2024

You mean a PR to add nullable: true instead of type: ["string", "null"], or to remove null from type: ["string", "null"].

To which swagger verion joi-to-swagger targets? To 2.0 or to 3.0? So we won't start generating invalid schema again as swagger 2.0 does not support nullable: true.

from joi-to-swagger.

Twipped avatar Twipped commented on August 20, 2024

The former.

IMO Swagger 2 is a fundamentally flawed spec, I see no reason to continue to support it now that 3 is out. This change would probably merit a major version bump, however.

from joi-to-swagger.

Twipped avatar Twipped commented on August 20, 2024

Fixed in 2.0 release

from joi-to-swagger.

deskoh avatar deskoh commented on August 20, 2024

See ajv-validator/ajv#1471. Enum doesn't play well with nullable.

This schema

const schema = joi
  .object({
    field1: joi.valid("a", "b", null)
  })
  .unknown();

below generates:

{
  "type": "object",
  "properties": {
    "field1": {
      "enum": ["a", "b"],
      "nullable": true
    }
  }
} 

The correct schema should be

{
  "type": "object",
  "properties": {
    "field1": {
      "enum": ["a", "b", null]
      "nullable": true
    }
  }
} 

nullable flag and null are required

Codesandbox link https://codesandbox.io/s/json-schema-enum-nullable-zsrlbj?file=/src/index.test.js

from joi-to-swagger.

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.