Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for exclusiveMinimum (0.08 sec)

  1. tests/test_tutorial/test_path_params_numeric_validations/test_tutorial006.py

                                "name": "size",
                                "required": True,
                                "schema": {
                                    "exclusiveMaximum": 10.5,
                                    "exclusiveMinimum": 0,
                                    "title": "Size",
                                    "type": "number",
                                },
                            },
                        ],
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Fri Dec 26 10:43:02 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  2. tests/test_application.py

                            {
                                "required": True,
                                "schema": {
                                    "title": "Item Id",
                                    "exclusiveMinimum": 3.0,
                                    "type": "number",
                                },
                                "name": "item_id",
                                "in": "path",
                            }
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 18:19:10 UTC 2025
    - 51.9K bytes
    - Viewed (0)
  3. tests/test_tutorial/test_query_param_models/test_tutorial002.py

                                    "schema": {
                                        "type": "integer",
                                        "maximum": 100,
                                        "exclusiveMinimum": 0,
                                        "default": 100,
                                        "title": "Limit",
                                    },
                                },
                                {
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 18:19:10 UTC 2025
    - 8K bytes
    - Viewed (0)
  4. tests/test_tutorial/test_query_param_models/test_tutorial001.py

                                    "schema": {
                                        "type": "integer",
                                        "maximum": 100,
                                        "exclusiveMinimum": 0,
                                        "default": 100,
                                        "title": "Limit",
                                    },
                                },
                                {
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 18:19:10 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  5. tests/test_tutorial/test_path_params_numeric_validations/test_tutorial005.py

                                "schema": {
                                    "title": "The ID of the item to get",
                                    "type": "integer",
                                    "exclusiveMinimum": 0,
                                    "maximum": 1000,
                                },
                                "name": "item_id",
                                "in": "path",
                            },
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Fri Dec 26 10:43:02 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  6. tests/test_multi_body_errors.py

                            "name": {"title": "Name", "type": "string"},
                            "age": {
                                "title": "Age",
                                "anyOf": [
                                    {"exclusiveMinimum": 0.0, "type": "number"},
                                    IsOneOf(
                                        # pydantic < 2.12.0
                                        {"type": "string"},
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 18:19:10 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  7. tests/test_tutorial/test_body_fields/test_tutorial001.py

                                ],
                            },
                            "price": {
                                "title": "Price",
                                "exclusiveMinimum": 0.0,
                                "type": "number",
                                "description": "The price must be greater than zero",
                            },
                            "tax": {
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 18:19:10 UTC 2025
    - 6.3K bytes
    - Viewed (0)
  8. tests/test_tutorial/test_body_multiple_params/test_tutorial004.py

                            "importance": {
                                "title": "Importance",
                                "type": "integer",
                                "exclusiveMinimum": 0.0,
                            },
                        },
                    },
                    "ValidationError": {
                        "title": "ValidationError",
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Fri Dec 26 10:43:02 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  9. fastapi/openapi/models.py

        const: Optional[Any] = None
        multipleOf: Optional[float] = Field(default=None, gt=0)
        maximum: Optional[float] = None
        exclusiveMaximum: Optional[float] = None
        minimum: Optional[float] = None
        exclusiveMinimum: Optional[float] = None
        maxLength: Optional[int] = Field(default=None, ge=0)
        minLength: Optional[int] = Field(default=None, ge=0)
        pattern: Optional[str] = None
    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