Hoogle Search
Within LTS Haskell 24.52 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
RequestBody :: Maybe Text -> InsOrdHashMap MediaType MediaTypeObject -> Maybe Bool -> RequestBodyopenapi3 Data.OpenApi No documentation available.
-
openapi3 Data.OpenApi Lists the required security schemes to execute this operation. The object can have multiple security schemes declared in it which are all required (that is, there is a logical AND between the schemes).
SecurityRequirement :: InsOrdHashMap Text [Text] -> SecurityRequirementopenapi3 Data.OpenApi No documentation available.
_componentsRequestBodies :: Components -> Definitions RequestBodyopenapi3 Data.OpenApi No documentation available.
_headerRequired :: Header -> Maybe Boolopenapi3 Data.OpenApi No documentation available.
_linkRequestBody :: Link -> Maybe ExpressionOrValueopenapi3 Data.OpenApi A literal value or {expression} to use as a request body when calling the target operation.
_operationRequestBody :: Operation -> Maybe (Referenced RequestBody)openapi3 Data.OpenApi The request body applicable for this operation. The requestBody is only supported in HTTP methods where the HTTP 1.1 specification RFC7231 has explicitly defined semantics for request bodies. In other cases where the HTTP spec is vague, requestBody SHALL be ignored by consumers.
_paramRequired :: Param -> Maybe Boolopenapi3 Data.OpenApi Determines whether this parameter is mandatory. If the parameter is in "path", this property is required and its value MUST be true. Otherwise, the property MAY be included and its default value is False.
_requestBodyContent :: RequestBody -> InsOrdHashMap MediaType MediaTypeObjectopenapi3 Data.OpenApi The content of the request body. The key is a media type or media type range and the value describes it. For requests that match multiple keys, only the most specific key is applicable. e.g. text/plain overrides text/*
_requestBodyDescription :: RequestBody -> Maybe Textopenapi3 Data.OpenApi A brief description of the request body. This could contain examples of use. CommonMark syntax MAY be used for rich text representation.