attrs¶
- class litestar.plugins.attrs.AttrsSchemaPlugin¶
Bases:
OpenAPISchemaPlugin
- static is_plugin_supported_type(value: Any) bool ¶
Given a value of indeterminate type, determine if this value is supported by the plugin.
This is called by the default implementation of
is_plugin_supported_field()
for backwards compatibility. User’s should prefer to override that method instead.- Parameters:
value¶ – An arbitrary value.
- Returns:
A bool indicating whether the value is supported by the plugin.
- to_openapi_schema(field_definition: FieldDefinition, schema_creator: SchemaCreator) Schema ¶
Given a type annotation, transform it into an OpenAPI schema class.