Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,369 for description (0.06 sec)

  1. .github/ISSUE_TEMPLATE/bug_report.yml

              required: true
            - label: "This is not a question about how to use Istio"
              required: true
      - type: textarea
        id: bug-description
        attributes:
          label: Bug Description
          description: Tell us what issues you ran into.
          placeholder: Include information about what you tried, what you expected to happen, and what actually happened. The more details, the better!
    Registered: 2025-05-28 22:53
    - Last Modified: 2024-01-10 15:17
    - 2.7K bytes
    - Viewed (0)
  2. tests/test_tutorial/test_schema_extra_example/test_tutorial001_pv1.py

                        },
                        "responses": {
                            "200": {
                                "description": "Successful Response",
                                "content": {"application/json": {"schema": {}}},
                            },
                            "422": {
                                "description": "Validation Error",
                                "content": {
                                    "application/json": {
    Registered: 2025-05-25 07:19
    - Last Modified: 2025-01-19 22:30
    - 4.6K bytes
    - Viewed (0)
  3. tests/test_tutorial/test_metadata/test_tutorial004.py

                            "200": {
                                "description": "Successful Response",
                                "content": {"application/json": {"schema": {}}},
                            }
                        },
                    }
                },
            },
            "tags": [
                {
                    "name": "users",
                    "description": "Operations with users. The **login** logic is also here.",
    Registered: 2025-05-25 07:19
    - Last Modified: 2023-06-30 18:25
    - 2K bytes
    - Viewed (0)
  4. fastapi/security/http.py

    class HTTPBase(SecurityBase):
        def __init__(
            self,
            *,
            scheme: str,
            scheme_name: Optional[str] = None,
            description: Optional[str] = None,
            auto_error: bool = True,
        ):
            self.model = HTTPBaseModel(scheme=scheme, description=description)
            self.scheme_name = scheme_name or self.__class__.__name__
            self.auto_error = auto_error
    
        async def __call__(
    Registered: 2025-05-25 07:19
    - Last Modified: 2025-02-27 12:29
    - 13.3K bytes
    - Viewed (0)
  5. tests/test_tutorial/test_schema_extra_example/test_tutorial001.py

                        },
                        "responses": {
                            "200": {
                                "description": "Successful Response",
                                "content": {"application/json": {"schema": {}}},
                            },
                            "422": {
                                "description": "Validation Error",
                                "content": {
                                    "application/json": {
    Registered: 2025-05-25 07:19
    - Last Modified: 2025-01-19 22:30
    - 4.9K bytes
    - Viewed (0)
  6. internal/config/help.go

    package config
    
    // HelpKV - implements help messages for keys
    // with value as description of the keys.
    type HelpKV struct {
    	Key         string `json:"key"`
    	Type        string `json:"type"`
    	Description string `json:"description"`
    	Optional    bool   `json:"optional"`
    
    	// Indicates if the value contains sensitive info that shouldn't be exposed
    Registered: 2025-05-25 19:28
    - Last Modified: 2023-06-23 14:45
    - 2.8K bytes
    - Viewed (0)
  7. tests/test_tutorial/test_dataclasses/test_tutorial001.py

                        },
                        "responses": {
                            "200": {
                                "description": "Successful Response",
                                "content": {"application/json": {"schema": {}}},
                            },
                            "422": {
                                "description": "Validation Error",
                                "content": {
                                    "application/json": {
    Registered: 2025-05-25 07:19
    - Last Modified: 2024-04-18 19:40
    - 5.2K bytes
    - Viewed (0)
  8. fastapi/params.py

            self.openapi_examples = openapi_examples
            kwargs = dict(
                default=default,
                default_factory=default_factory,
                alias=alias,
                title=title,
                description=description,
                gt=gt,
                ge=ge,
                lt=lt,
                le=le,
                min_length=min_length,
                max_length=max_length,
                discriminator=discriminator,
    Registered: 2025-05-25 07:19
    - Last Modified: 2024-11-12 16:10
    - 27.6K bytes
    - Viewed (0)
  9. docs/es/docs/how-to/separate-openapi-schemas.md

    {* ../../docs_src/separate_openapi_schemas/tutorial001_py310.py ln[1:15] hl[14] *}
    
    ...entonces el campo `description` **no será requerido**. Porque tiene un valor por defecto de `None`.
    
    ### Modelo de Entrada en la Documentación
    
    Puedes confirmar eso en la documentación, el campo `description` no tiene un **asterisco rojo**, no está marcado como requerido:
    
    <div class="screenshot">
    Registered: 2025-05-25 07:19
    - Last Modified: 2024-12-30 18:26
    - 4.4K bytes
    - Viewed (0)
  10. tests/test_response_class_no_mediatype.py

    class JsonApiError(BaseModel):
        errors: typing.List[Error]
    
    
    @app.get(
        "/a",
        response_class=Response,
        responses={500: {"description": "Error", "model": JsonApiError}},
    )
    async def a():
        pass  # pragma: no cover
    
    
    @app.get("/b", responses={500: {"description": "Error", "model": Error}})
    async def b():
        pass  # pragma: no cover
    
    
    client = TestClient(app)
    
    
    def test_openapi_schema():
    Registered: 2025-05-25 07:19
    - Last Modified: 2023-06-30 18:25
    - 3.3K bytes
    - Viewed (0)
Back to top