mirror of
https://github.com/LukeHagar/libopenapi.git
synced 2025-12-10 04:20:24 +00:00
26 lines
804 B
Go
26 lines
804 B
Go
// Copyright 2022 Princess B33f Heavy Industries / Dave Shanley
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package v2
|
|
|
|
const (
|
|
DefinitionsLabel = "definitions"
|
|
SecurityDefinitionsLabel = "securityDefinitions"
|
|
ExamplesLabel = "examples"
|
|
HeadersLabel = "headers"
|
|
DefaultLabel = "default"
|
|
ItemsLabel = "items"
|
|
ParametersLabel = "parameters"
|
|
PathsLabel = "paths"
|
|
GetLabel = "get"
|
|
PostLabel = "post"
|
|
PatchLabel = "patch"
|
|
PutLabel = "put"
|
|
DeleteLabel = "delete"
|
|
OptionsLabel = "options"
|
|
HeadLabel = "head"
|
|
SecurityLabel = "security"
|
|
ScopesLabel = "scopes"
|
|
ResponsesLabel = "responses"
|
|
)
|