ScottLogic / openapi-forge

⚒️🔥 Effortlessly create OpenAPI clients, in a range of languages, from the fiery furnace of our forge
8 stars 7 forks source link

Support enumerations types #174

Open ColinEberhardt opened 1 year ago

ColinEberhardt commented 1 year ago

See for example the status property of the Order object in the petstore swagger:

"status": {
          "type": "string",
          "description": "Order Status",
          "enum": ["placed", "approved", "delivered"]
        },