Hoogle Search

Within LTS Haskell 24.49 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. type Pattern = Text

    openapi3 Data.OpenApi

    Regex pattern for string type.

  2. data Param

    openapi3 Data.OpenApi.Internal

    Describes a single operation parameter. A unique parameter is defined by a combination of a name and location.

  3. Param :: Text -> Maybe Text -> Maybe Bool -> Maybe Bool -> ParamLocation -> Maybe Bool -> Maybe Bool -> Maybe (Referenced Schema) -> Maybe Style -> Maybe Bool -> Maybe Value -> InsOrdHashMap Text (Referenced Example) -> Param

    openapi3 Data.OpenApi.Internal

    No documentation available.

  4. ParamCookie :: ParamLocation

    openapi3 Data.OpenApi.Internal

    Used to pass a specific cookie value to the API.

  5. ParamHeader :: ParamLocation

    openapi3 Data.OpenApi.Internal

    Custom headers that are expected as part of the request.

  6. data ParamLocation

    openapi3 Data.OpenApi.Internal

    No documentation available.

  7. type ParamName = Text

    openapi3 Data.OpenApi.Internal

    No documentation available.

  8. ParamPath :: ParamLocation

    openapi3 Data.OpenApi.Internal

    Used together with Path Templating, where the parameter value is actually part of the operation's URL. This does not include the host or base path of the API. For example, in items{itemId}, the path parameter is itemId.

  9. ParamQuery :: ParamLocation

    openapi3 Data.OpenApi.Internal

    Parameters that are appended to the URL. For example, in /items?id=###, the query parameter is id.

  10. data PathItem

    openapi3 Data.OpenApi.Internal

    Describes the operations available on a single path. A PathItem may be empty, due to ACL constraints. The path itself is still exposed to the documentation viewer but they will not know which operations and parameters are available.

Page 411 of many | Previous | Next