Adding more docs to high level models.

Cleaning things that are not used.
This commit is contained in:
Dave Shanley
2022-09-16 14:03:05 -04:00
parent 2ea1d239cf
commit c17cc4a7e6
7 changed files with 20 additions and 13 deletions

View File

@@ -21,8 +21,13 @@ import (
// Constants used by utilities to determine the version of OpenAPI that we're referring to.
const (
OAS2 = "oas2"
OAS3 = "oas3"
// OAS2 represents Swagger Documents
OAS2 = "oas2"
// OAS3 represents OpenAPI 3.0+ Documents
OAS3 = "oas3"
// OAS31 represents OpenAPI 3.1+ Documents
OAS31 = "oas3_1"
)