logo

Attribute Macro poem_openapi::OpenApi

source · []
#[OpenApi]
Expand description

Define a OpenAPI.

Macro parameters

These are attributes that can be added to the #[OpenApi] attribute.

AttributedescriptionTypeOptional
prefix_pathDefine the prefix for all operation paths. May contain shared path parameters.stringY
tagDefine a tag for all operations. This must be the name of an in-scope variant of an enum which implements TagsTagsY
response_headerAdd an extra response header to all operations.ExtraHeaderY
request_headerAdd an extra request header to all operations.ExtraHeaderY

Example

use poem_openapi::{OpenApi, Tags};
use poem_openapi::param::Path;
use poem_openapi::payload::PlainText;

#[derive(Tags)]
enum MyTags {
    V1
}

struct Api;

#[OpenApi(prefix_path = "/v1/:customer_id", tag = "MyTags::V1")]
impl Api {
    /// Greet the customer
    ///
    /// # Example
    /// 
    /// Call `/v1/1234/hello` to get the response `"Hello 1234!"`. 
    #[oai(path = "/hello", method = "get")]
    async fn hello(&self, customer_id: Path<String>) -> PlainText<String> {
        PlainText(format!("Hello {}!", customer_id.0))
    }
}

Operation parameters

Parameters that can be passed into the #[oai()] attribute above each operation function within an OpenApi.

AttributedescriptionTypeOptional
pathURI path optionally containing path parameters (e.g., “/:name/hello”)stringN
methodHTTP method. The possible values are “get”, “post”, “put”, “delete”, “head”, “options”, “connect”, “patch”, “trace”.stringN
deprecatedOperation deprecatedboolY
external_docsSpecify a external resource for extended documentationstringY
tagTag to use for an operation. Must be a variant of an enum which implements TagsTagsY
operation_idUnique string used to identify the operation.stringY
transformUse a function to transform the API endpoint.stringY
response_headerAdd an extra response header to the operation.ExtraHeaderY
request_headerAdd an extra request header to all operations.ExtraHeaderY

Example

use poem_openapi::{OpenApi, Tags};
use poem_openapi::param::Path;
use poem_openapi::payload::PlainText;

#[derive(Tags)]
enum MyTags {
    V1
}

struct Api;

#[OpenApi]
impl Api {
    /// Greet the customer
    ///
    /// # Example
    /// 
    /// Call `/v1/1234/hello` to get the response `"Hello 1234!"`. 
    #[oai(path = "/v1/:customer_id/hello", method = "get", tag = "MyTags::V1")]
    async fn hello(&self, customer_id: Path<String>) -> PlainText<String> {
        PlainText(format!("Hello {}!", customer_id.0))
    }
}

Operation argument parameters

AttributedescriptionTypeOptional
nameParameter namestringY
deprecatedArgument deprecatedboolY
defaultDefault valuebool,stringY
validator.multiple_ofThe value of “multiple_of” MUST be a number, strictly greater than 0. A numeric instance is only valid if division by this value results in an integer.numberY
validator.maximumThe value of “maximum” MUST be a number, representing an upper limit for a numeric instance. If exclusive is true and instance is less than the provided value, or else if the instance is less than or exactly equal to the provided value.{ value: <number>, exclusive: <bool>}Y
validator.minimumThe value of “minimum” MUST be a number, representing a lower limit for a numeric instance. If exclusive is true and instance is greater than the provided value, or else if the instance is greater than or exactly equal to the provided value.{ value: <number>, exclusive: <bool>}Y
validator.max_lengthThe value of “max_length” MUST be a non-negative integer. A string instance is valid against this validator if its length is less than, or equal to, the value.usizeY
validator.min_lengthThe value of “min_length” MUST be a non-negative integer. The value of this validator MUST be an integer. This integer MUST be greater than, or equal to, 0.usizeY
validator.patternThe value of “pattern” MUST be a string. This string SHOULD be a valid regular expression, according to the ECMA 262 regular expression dialect. A string instance is considered valid if the regular expression matches the instance successfully.stringY
validator.max_itemsThe value of “max_items” MUST be an integer. This integer MUST be greater than, or equal to, 0. An array instance is valid if its size is less than, or equal to, the value of this validator.usizeY
validator.min_itemsThe value of “min_items” MUST be an integer. This integer MUST be greater than, or equal to, 0. An array instance is valid if its size is greater than, or equal to, the value of this validator.usizeY
validator.unique_itemsThe value of “unique_items” MUST be an boolean. If this value is false, the instance validates successfully. If this value is true, the instance validates successfully if all of its elements are unique.boolY
validator.max_propertiesThe value of this keyword MUST be a non-negative integer. An object instance is valid against “maxProperties” if its number of properties is less than, or equal to, the value of this keyword.usizeY
validator.min_propertiesThe value of this keyword MUST be a non-negative integer. An object instance is valid against “minProperties” if its number of properties is greater than, or equal to, the value of this keyword.usizeY

Examples

use poem_openapi::{
    param::Header,
    payload::{Json, PlainText},
    ApiRequest, Object, OpenApi, ApiResponse,
};

#[derive(Object)]
struct Pet {
    id: String,
    name: String,
}

#[derive(ApiRequest)]
enum CreatePetRequest {
    /// This request receives a pet in JSON format(application/json).
    CreateByJSON(Json<Pet>),
    /// This request receives a pet in text format(text/plain).
    CreateByPlainText(PlainText<String>),
}

#[derive(ApiResponse)]
enum CreatePetResponse {
    /// Returns when the pet is successfully created.
    #[oai(status = 200)]
    Ok,
    /// Returns when the pet already exists.
    #[oai(status = 409)]
    PetAlreadyExists,
}

struct PetApi;

#[OpenApi]
impl PetApi {
    /// Create a new pet.
    #[oai(path = "/pet", method = "post")]
    async fn create_pet(
        &self,
        #[oai(name = "TOKEN")] token: Header<String>,
        req: CreatePetRequest
    ) -> CreatePetResponse {
        todo!()
    }
}