Giter Club home page Giter Club logo

Comments (3)

wesleytodd avatar wesleytodd commented on July 16, 2024

Interesting, so I am not sure that I understand the concern about them being global. All the .component api does is add a spec compliant component section to the doc, so it is "global" in the sense that any other part of the doc can reference it ($ref), but that is just how the spec works.

The api we expose is just a shorthand/helper so you dont have to write out the rather unpleasant format. So when you "use" the component you defined it just returns the ref: https://github.com/wesleytodd/express-openapi/blob/main/index.js#L94

Am I missing something about what you are asking? If so, please help me better understand.

from express-openapi.

nruotsal avatar nruotsal commented on July 16, 2024

I have a similar issue. I'm generating TypeScript types from JSON Schema files with https://github.com/bcherny/json-schema-to-typescript tool.

I want to use those JSON Schemas to generate OpenAPI docs like this

import MySchema from 'schemas/MySchema.json';

openapi.component('schemas', 'MySchema', MySchema);

And in MySchema.json I have something like this

{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "definitions": {
    "SubSchema": {
      "type": "object",
      "properties": {
        "someValue": {
          "type": "string"
        }
      }
    }
  },
  "title": "MySchema",
  "type": "object",
  "properties": {
    "someArray": {
      "type": "array",
      "items": { "$ref": "#/definitions/SubSchema" }
    }
  }
}

But this does not work with express-openapi. Only way I got it working was to move SubSchema to its own json file and change $ref to { "$ref": "#/components/schemas/SubSchema" }. Then change code to

import MySchema from 'schemas/MySchema.json';
import SubSchema from 'schemas/SubSchema.json';

openapi.component('schemas', 'SubSchema', SubSchema);
openapi.component('schemas', 'MySchema', MySchema);

After that TypeScript types generation fails because it can't find SubSchema anymore. Would it be possible to add support for definitions and references inside same JSON Schema file?

from express-openapi.

wesleytodd avatar wesleytodd commented on July 16, 2024

Hey @nruotsal, I think this is a different request. I do not see a clear way to know what to merge from a call to .component with the parent doc. Additionally, I think that you can achieve what you want with two calls into this package, so am not sure we would want to change the api to accommodate this particular case unless you can elaborate on the goal. If you think there is a strong argument for this, can you open a new issue and make the case for supporting this?

from express-openapi.

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.