Pronounced /ju:ˈtoʊ:i.pɑ/ or /ju:ˈtoʊˌaɪ.piˈeɪ/ whatever works better for you.
Want to have your API documented with OpenAPI? But don't want to be bothered
with manual YAML or JSON tweaking? Would like it to be so easy that it would almost
be utopic? Don't worry: utoipa is here to fill this gap. It aims to do, if not all, then
most of the heavy lifting for you, enabling you to focus on writing the actual API logic instead of
documentation. It aims to be minimal, simple and fast. It uses simple proc
macros which
you can use to annotate your code to have items documented.
The utoipa
crate provides auto-generated OpenAPI documentation for Rust REST APIs. It treats
code-first approach as a first class citizen and simplifies API documentation by providing
simple macros for generating the documentation from your code.
It also contains Rust types of the OpenAPI spec, allowing you to write the OpenAPI spec only using Rust if auto generation is not your flavor or does not fit your purpose.
Long term goal of the library is to be the place to go when OpenAPI documentation is needed in any Rust codebase.
Utoipa is framework-agnostic, and could be used together with any web framework, or even without one. While being portable and standalone, one of its key aspects is simple integration with web frameworks.
Refer to the existing examples for building the "todo" app in the following frameworks:
All examples include a Swagger-UI unless stated otherwise.
There are also examples of building multiple OpenAPI docs in one application, each separated in Swagger UI. These examples exist only for the actix and warp frameworks.
Even if there is no example for your favourite framework, utoipa
can be used with any
web framework which supports decorating functions with macros similarly to the warp and tide examples.
The name comes from the words utopic
and api
where uto
are the first three letters of utopic
and the ipa
is api reversed. Aaand... ipa
is also an awesome type of beer :beer:.
path
, path
and query
parameters from actix web path attribute macros. See
docs or examples for more details.path
, path
and query
parameters from rocket path attribute macros. See docs
or examples for more details.IntoParams
without
defining the parameter_in
attribute. See docs
or examples for more details.DateTime
, Date
, NaiveDate
, NaiveDateTime
, NaiveTime
and Duration
types. By default these types are parsed to string
types with additional format
information.
format: date-time
for DateTime
and NaiveDateTime
and format: date
for Date
and NaiveDate
according
RFC3339 as ISO-8601
. To
override default string
representation users have to use value_type
attribute to override the type.
See docs for more details.OffsetDateTime
, PrimitiveDateTime
, Date
, and Duration
types.
By default these types are parsed as string
. OffsetDateTime
and PrimitiveDateTime
will use date-time
format. Date
will use
date
format and Duration
will not have any format. To override default string
representation users have to use value_type
attribute
to override the type. See docs for more details.Decimal
type. By default
it is interpreted as String
. If you wish to change the format you need to override the type.
See the value_type
in component derive docs.Uuid
type will be presented as String
with
format uuid
in OpenAPI spec.Ulid
type will be presented as String
with
format ulid
in OpenAPI spec.SmallVec
will be treated as Vec
.request_body
docs for an example.repr(u*)
and repr(i*)
attributes to unit type enums for
C-like enum representation. See docs for more details.#[openapi(paths(...))]
macro attribute. If disabled the paths will be
ordered in alphabetical order.IndexMap
will be rendered as a map similar to
BTreeMap
and HashMap
.int8
, int16
, uint8
, uint16
, uint32
, and uint64
.ToSchema
support for Arc<T>
and Rc<T>
types. Note! serde rc
feature flag must be enabled separately to allow
serialization and deserialization of Arc<T>
and Rc<T>
types. See more about serde feature flags.Utoipa implicitly has partial support for serde
attributes. See docs for more details.
Add minimal dependency declaration to Cargo.toml.
toml
[dependencies]
utoipa = "3"
To enable more features such as use actix framework extras you could define the dependency as follows.
toml
[dependencies]
utoipa = { version = "3", features = ["actix_extras"] }
Note! To use utoipa
together with Swagger UI you can use the utoipa-swagger-ui crate.
Create a struct, or it could also be an enum. Add ToSchema
derive macro to it, so it can be registered
as an OpenAPI schema.
```rust use utoipa::ToSchema;
struct Pet {
id: u64,
name: String,
age: Option
Create a handler that would handle your business logic and add path
proc attribute macro over it.
rust
mod pet_api {
/// Get pet by id
///
/// Get pet from database by pet id
#[utoipa::path(
get,
path = "/pets/{id}",
responses(
(status = 200, description = "Pet found succesfully", body = Pet),
(status = NOT_FOUND, description = "Pet was not found")
),
params(
("id" = u64, Path, description = "Pet database id to get Pet for"),
)
)]
async fn get_pet_by_id(pet_id: u64) -> Pet {
Pet {
id: pet_id,
age: None,
name: "lightning".to_string(),
}
}
}
Utoipa has support for http StatusCode
in responses.
This attribute macro will create another struct named with __path_
prefix + handler function name.
So when you implement some_handler
function in different file and want to export this, make sure __path_some_handler
in the module can also be accessible from the root.
Tie the Schema
and the endpoint above to the OpenAPI schema with following OpenApi
derive proc macro.
```rust use utoipa::OpenApi;
struct ApiDoc;
println!("{}", ApiDoc::openapi().toprettyjson().unwrap()); ```
This would produce api doc something similar to:
json
{
"openapi": "3.0.3",
"info": {
"title": "application name from Cargo.toml",
"description": "description from Cargo.toml",
"contact": {
"name": "author name from Cargo.toml",
"email": "author email from Cargo.toml"
},
"license": {
"name": "license from Cargo.toml"
},
"version": "version from Cargo.toml"
},
"paths": {
"/pets/{id}": {
"get": {
"tags": ["pet_api"],
"summary": "Get pet by id",
"description": "Get pet by id\n\nGet pet from database by pet id\n",
"operationId": "get_pet_by_id",
"parameters": [
{
"name": "id",
"in": "path",
"description": "Pet database id to get Pet for",
"required": true,
"deprecated": false,
"schema": {
"type": "integer",
"format": "int64",
"minimum": 0.0,
}
}
],
"responses": {
"200": {
"description": "Pet found succesfully",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Pet"
}
}
}
},
"404": {
"description": "Pet was not found"
}
},
"deprecated": false
}
}
},
"components": {
"schemas": {
"Pet": {
"type": "object",
"required": ["id", "name"],
"properties": {
"id": {
"type": "integer",
"format": "int64",
"minimum": 0.0,
},
"name": {
"type": "string"
},
"age": {
"type": "integer",
"format": "int32",
"nullable": true,
}
}
}
}
}
}
## Modify OpenAPI at runtime
You can modify generated OpenAPI at runtime either via generated types directly or using Modify trait.
Modify generated OpenAPI via types directly. ```rust #[derive(OpenApi)] #[openapi( info(description = "My Api description"), )] struct ApiDoc;
let mut doc = ApiDoc::openapi(); doc.info.title = String::from("My Api"); ```
You can even convert the generated OpenApi to OpenApiBuilder.
rust
let builder: OpenApiBuilder = ApiDoc::openapi().into();
See Modify trait for examples on how to modify generated OpenAPI via it.
This is highly probably due to RustEmbed
not embedding the Swagger UI to the executable. This is natural since the RustEmbed
library does not by default embed files on debug builds. To get around this you can do one of the following.
--release
modedebug-embed
feature flag to your Cargo.toml
for utoipa-swagger-ui
. This will enable the debug-emebed
feature flag for
RustEmbed
as well. Read more about this here and here.Find utoipa-swagger-ui
feature flags here.
Licensed under either of Apache 2.0 or MIT license at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this crate by you, shall be dual licensed, without any additional terms or conditions.