test_optional_list_alias_and_validation_alias_schema() — fastapi Function Reference
Architecture documentation for the test_optional_list_alias_and_validation_alias_schema() function in test_optional_list.py from the fastapi codebase.
Entity Profile
Dependency Diagram
graph TD d01f1c3b_d372_e947_2873_4b51149c53f9["test_optional_list_alias_and_validation_alias_schema()"] 04e698d5_447d_679b_7e1b_39a05b89aa16["test_optional_list.py"] d01f1c3b_d372_e947_2873_4b51149c53f9 -->|defined in| 04e698d5_447d_679b_7e1b_39a05b89aa16 d1360ba2_24b5_be26_1bb8_d64ba3706aef["get_body_model_name()"] d01f1c3b_d372_e947_2873_4b51149c53f9 -->|calls| d1360ba2_24b5_be26_1bb8_d64ba3706aef style d01f1c3b_d372_e947_2873_4b51149c53f9 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
tests/test_request_params/test_file/test_optional_list.py lines 296–315
def test_optional_list_alias_and_validation_alias_schema(path: str):
openapi = app.openapi()
body_model_name = get_body_model_name(openapi, path)
assert app.openapi()["components"]["schemas"][body_model_name] == {
"properties": {
"p_val_alias": {
"anyOf": [
{
"type": "array",
"items": {"type": "string", "format": "binary"},
},
{"type": "null"},
],
"title": "P Val Alias",
}
},
"title": body_model_name,
"type": "object",
}
Domain
Subdomains
Calls
Source
Frequently Asked Questions
What does test_optional_list_alias_and_validation_alias_schema() do?
test_optional_list_alias_and_validation_alias_schema() is a function in the fastapi codebase, defined in tests/test_request_params/test_file/test_optional_list.py.
Where is test_optional_list_alias_and_validation_alias_schema() defined?
test_optional_list_alias_and_validation_alias_schema() is defined in tests/test_request_params/test_file/test_optional_list.py at line 296.
What does test_optional_list_alias_and_validation_alias_schema() call?
test_optional_list_alias_and_validation_alias_schema() calls 1 function(s): get_body_model_name.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free