Files
libopenapi/datamodel/low/v2/constants.go
Dave Shanley 6214babaec v2 low-level docs are now in also.
That is now 6/6! Time to tune up the README again next.
2022-09-21 09:24:40 -04:00

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"
)