Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for securitySchemes (0.05 sec)

  1. tests/test_tutorial/test_security/test_tutorial003.py

                                "items": {"$ref": "#/components/schemas/ValidationError"},
                            }
                        },
                    },
                },
                "securitySchemes": {
                    "OAuth2PasswordBearer": {
                        "type": "oauth2",
                        "flows": {"password": {"scopes": {}, "tokenUrl": "token"}},
                    }
                },
            },
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 18:19:10 UTC 2025
    - 7.7K bytes
    - Viewed (0)
  2. tests/test_security_oauth2_optional.py

                                "items": {"$ref": "#/components/schemas/ValidationError"},
                            }
                        },
                    },
                },
                "securitySchemes": {
                    "OAuth2": {
                        "type": "oauth2",
                        "flows": {
                            "password": {
                                "scopes": {
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 18:19:10 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  3. fastapi/openapi/utils.py

                )
                if result:
                    path, security_schemes, path_definitions = result
                    if path:
                        paths.setdefault(route.path_format, {}).update(path)
                    if security_schemes:
                        components.setdefault("securitySchemes", {}).update(
                            security_schemes
                        )
                    if path_definitions:
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 12:54:56 UTC 2025
    - 23.2K bytes
    - Viewed (0)
  4. tests/test_security_oauth2.py

                                "items": {"$ref": "#/components/schemas/ValidationError"},
                            }
                        },
                    },
                },
                "securitySchemes": {
                    "OAuth2": {
                        "type": "oauth2",
                        "flows": {
                            "password": {
                                "scopes": {
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 18:19:10 UTC 2025
    - 9K bytes
    - Viewed (0)
  5. tests/test_security_oauth2_optional_description.py

                                "items": {"$ref": "#/components/schemas/ValidationError"},
                            }
                        },
                    },
                },
                "securitySchemes": {
                    "OAuth2": {
                        "type": "oauth2",
                        "flows": {
                            "password": {
                                "scopes": {
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 18:19:10 UTC 2025
    - 9.1K bytes
    - Viewed (0)
  6. tests/test_tutorial/test_security/test_tutorial005.py

                                    },
                                }
                            },
                        },
                    },
                    "securitySchemes": {
                        "OAuth2PasswordBearer": {
                            "type": "oauth2",
                            "flows": {
                                "password": {
                                    "scopes": {
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 18:19:10 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  7. fastapi/openapi/models.py

        requestBodies: Optional[dict[str, Union[RequestBody, Reference]]] = None
        headers: Optional[dict[str, Union[Header, Reference]]] = None
        securitySchemes: Optional[dict[str, Union[SecurityScheme, Reference]]] = None
        links: Optional[dict[str, Union[Link, Reference]]] = None
        # Using Any for Specification Extensions
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 12:54:56 UTC 2025
    - 15.1K bytes
    - Viewed (0)
Back to top