Differences from Swagger
Last updated
Was this helpful?
Last updated
Was this helpful?
FLAT uses an enhanced version of Swagger.
x-flat-…
ExtensionsFirst of all, several extensions named x-flat-…
are recognized on different levels of the definition:
x-flat-flow
: to be started. Recognized at top-level and below paths
, paths/<path>
and paths/<path>/<operation>
.
x-flat-init
: (top-level)
x-flat-error
: (top-level)
x-flat-proxy
: (below paths
, paths/<path>
and paths/<path>/<operation>
)
x-flat-cors
: (top-level)
x-flat-validate
: (top-level, below paths/<path>
and paths/<path>/<operation>
)
x-flat-jwt
: (in a )
x-flat-cookiename
:
Defining endpoints in swagger.yaml
should be straight-forward. However, typing Swagger compliant YAML or JSON can be somewhat cumbersome. To assign a to a path with two operations (get
and post
) the Swagger specification requires you to write at least:
If you don't care which HTTP methods are allowed for a path, you may skip specifying the operations entirely:
While paths ending with /**
are treated like all other paths in standard Swagger, they are handled specially in FLAT. Such a wildcard path matches any request path having the same prefix and, optionally, arbitrary additional segments. "Normal" paths without a trailing wildcard pattern /**
are always matched first:
The longest matching wildcard path wins. The position of a wildcard path in the definition is irrelevant.
Note that path parameters (i.e. sections enclosed in curly braces) cannot be combined with wildcards.
In FLAT you may omit the top-level info
section. And as long as you don't need a schema for , you may even drop the useless responses
sections:
It is by no means a bad thing to write a conformant definition and provide a description
or version
information. However, it frequently slows you down unnecessarily and degrades readability. FLAT allows you to quickly define the endpoints of your API and start working with them. Once set up, you can gradually refine them by adding more operations and for requests and responses.
📎 Note that require a complete Swagger definition and may refuse to process FLAT's slimline definitions.
can also be applied to specific paths, not only to specific operations or top-level.