| 417 | |
| 418 | |
| 419 | class OpenAPI(BaseModelWithConfig): |
| 420 | openapi: str |
| 421 | info: Info |
| 422 | jsonSchemaDialect: str | None = None |
| 423 | servers: list[Server] | None = None |
| 424 | # Using Any for Specification Extensions |
| 425 | paths: dict[str, PathItem | Any] | None = None |
| 426 | webhooks: dict[str, PathItem | Reference] | None = None |
| 427 | components: Components | None = None |
| 428 | security: list[dict[str, list[str]]] | None = None |
| 429 | tags: list[Tag] | None = None |
| 430 | externalDocs: ExternalDocumentation | None = None |
| 431 | |
| 432 | |
| 433 | Schema.model_rebuild() |
no outgoing calls
no test coverage detected
searching dependent graphs…