Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 540 for summary (0.42 sec)

  1. tests/test_tutorial/test_schema_extra_example/test_tutorial005_py310.py

        assert response.json() == {
            "openapi": "3.1.0",
            "info": {"title": "FastAPI", "version": "0.1.0"},
            "paths": {
                "/items/{item_id}": {
                    "put": {
                        "summary": "Update Item",
                        "operationId": "update_item_items__item_id__put",
                        "parameters": [
                            {
                                "required": True,
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sat Aug 26 18:03:13 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  2. docs/em/docs/tutorial/metadata.md

    | `version` | `string` | ⏬ πŸ› οΈ. πŸ‘‰ ⏬ πŸ‘† πŸ‘ 🈸, 🚫 πŸ—„. πŸ–Ό `2.5.0`. |
    | `terms_of_service` | `str` | πŸ“› βš– πŸ•β€πŸ¦Ί πŸ› οΈ. πŸš₯ 🚚, πŸ‘‰ βœ”οΈ πŸ“›. |
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. tests/test_response_model_as_return_annotation.py

            "openapi": "3.1.0",
            "info": {"title": "FastAPI", "version": "0.1.0"},
            "paths": {
                "/no_response_model-no_annotation-return_model": {
                    "get": {
                        "summary": "No Response Model No Annotation Return Model",
                        "operationId": "no_response_model_no_annotation_return_model_no_response_model_no_annotation_return_model_get",
                        "responses": {
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Mon Aug 14 09:49:57 UTC 2023
    - 47.7K bytes
    - Viewed (0)
  4. tests/test_generic_parameterless_depends.py

                                "content": {"application/json": {"schema": {}}},
                                "description": "Successful " "Response",
                            }
                        },
                        "summary": "A",
                    }
                },
                "/b": {
                    "get": {
                        "operationId": "b_b_get",
                        "responses": {
                            "200": {
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Apr 02 02:52:56 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. docs/de/docs/how-to/separate-openapi-schemas.md

    ```
    
    <details>
    <summary>πŸ‘€ VollstΓ€ndige Dateivorschau</summary>
    
    ```Python
    {!> ../../docs_src/separate_openapi_schemas/tutorial001_py39.py!}
    ```
    
    </details>
    
    ////
    
    //// tab | Python 3.8+
    
    ```Python hl_lines="9"
    {!> ../../docs_src/separate_openapi_schemas/tutorial001.py[ln:1-9]!}
    
    # Code unterhalb weggelassen πŸ‘‡
    ```
    
    <details>
    <summary>πŸ‘€ VollstΓ€ndige Dateivorschau</summary>
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 7K bytes
    - Viewed (0)
  6. fastapi/routing.py

                    response_model = None
                else:
                    response_model = return_annotation
            self.response_model = response_model
            self.summary = summary
            self.response_description = response_description
            self.deprecated = deprecated
            self.operation_id = operation_id
            self.response_model_include = response_model_include
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sat Oct 12 09:44:57 UTC 2024
    - 172.1K bytes
    - Viewed (0)
  7. tests/test_response_class_no_mediatype.py

                                    }
                                },
                            },
                            "200": {"description": "Successful Response"},
                        },
                        "summary": "A",
                        "operationId": "a_a_get",
                    }
                },
                "/b": {
                    "get": {
                        "responses": {
                            "500": {
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Fri Jun 30 18:25:16 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  8. compat/maven-embedder/src/main/java/org/apache/maven/cli/event/ExecutionEventLogger.java

            StringBuilder summary = new StringBuilder("Reactor Summary");
            if (isSingleVersion) {
                summary.append(" for ");
                summary.append(session.getTopLevelProject().getName());
                summary.append(" ");
                summary.append(session.getTopLevelProject().getVersion());
            }
            summary.append(":");
            infoMain(summary.toString());
    
            logger.info("");
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  9. tests/test_tutorial/test_bigger_applications/test_main_an_py39.py

            "openapi": "3.1.0",
            "info": {"title": "FastAPI", "version": "0.1.0"},
            "paths": {
                "/users/": {
                    "get": {
                        "tags": ["users"],
                        "summary": "Read Users",
                        "operationId": "read_users_users__get",
                        "parameters": [
                            {
                                "required": True,
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  10. tests/test_starlette_exception.py

                                "content": {"application/json": {"schema": {}}},
                                "description": "Successful Response",
                            }
                        },
                        "summary": "No Body Status Code Exception",
                    }
                },
                "/http-no-body-statuscode-with-detail-exception": {
                    "get": {
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Fri Jun 30 18:25:16 UTC 2023
    - 7.4K bytes
    - Viewed (0)
Back to top