Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Referencing inner classes in playJava doesn't use percent-encoded reference URI #322

Open
prouzpe3 opened this issue Jun 5, 2020 · 1 comment

Comments

@prouzpe3
Copy link

prouzpe3 commented Jun 5, 2020

class A {
  private B b;
  class B {
  ...
  }
}

generates schema specification:

"A" : {
  "properties" : {
    "b" : {
      "$ref" : "#/components/schemas/A$B"
    }
  }
....

but $ should be encoded as %24

"A" : {
  "properties" : {
    "b" : {
      "$ref" : "#/components/schemas/A%24B"
    }
  }
....
@Javakky-pxv
Copy link
Collaborator

@prouzpe3
We are currently reviewing it. It may take some time, but we plan to address it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants