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

Go: support for explicit embedded structs #74

Open
BatmanAoD opened this issue Mar 30, 2023 · 0 comments
Open

Go: support for explicit embedded structs #74

BatmanAoD opened this issue Mar 30, 2023 · 0 comments

Comments

@BatmanAoD
Copy link

I would like to generate a Go struct where some of the fields are "embedded" in another struct:

type Inner struct {
    Foo string `json:"foo"`
    Bar string `json:"bar"`
}

type SharedType struct {
    Inner
    
    Baz string `json:"baz"`
}

This is marshaled and unmarshaled as:

{
    "foo": "<data>",
    "bar": "<data>",
    "baz": "<data>"
}

Would it be feasible to add Go-specific medadata to enable codegen like this? Something like:

{
  "properties": {
    "foo": {
      "metadata": {
        "goEmbedded": "Inner"
      },
      "type": "string"
    },
    "bar": {
      "metadata": {
        "goEmbedded": "Inner"
      },
      "type": "string"
    },
    "baz": {
      "type": "string"
    },
  }
}
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

1 participant