Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for exclusiveMinimum (0.07 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_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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
Back to top