Forum Discussion

deveric's avatar
deveric
New Contributor
6 years ago
Solved

Retrieve info: data from swagger after generation...

At the top of my swagger, I have the following:

 

swagger: '2.0'
info:
  title: TEST API
  description: Developer API for testing purposes
  version: "1.0.7"
  x-last-updated: "2018-12-26T14:40:08+00:00"


Once I use this swagger to generate my server (golang), I need to be able to retrieve the version and/or x-last-updated field.  Is this information carried over to the generated code somewhere that I'm able to retrieve it, or does it always just reside in the swagger file itself and not used during the generation process?

  • Nvm... found a way.  The RAW swagger in JSON format is saved in the generated server.  I can grab it from there...

2 Replies

  • deveric's avatar
    deveric
    New Contributor

    Nvm... found a way.  The RAW swagger in JSON format is saved in the generated server.  I can grab it from there...

    • TanyaYatskovska's avatar
      TanyaYatskovska
      SmartBear Alumni (Retired)

      Thanks for sharing the solution you've found! This will help other community members who may face a similar issue.