(cls, schema: Dict)
| 128 | |
| 129 | @field_validator("openapi_schema") |
| 130 | def validate_schema(cls, schema: Dict): |
| 131 | return validate_openapi_schema(schema, only_one_path_and_method=True) |
| 132 | |
| 133 | @field_validator("authentication", mode="before") |
| 134 | def validate_authentication(cls, data: Dict): |
nothing calls this directly
no test coverage detected