Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 5 of 5 for exclusiveMinimum (0.06 seconds)

  1. tests/test_application.py

                                {
                                    "required": True,
                                    "schema": {
                                        "title": "Item Id",
                                        "exclusiveMinimum": 3.0,
                                        "type": "number",
                                    },
                                    "name": "item_id",
                                    "in": "path",
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Feb 08 10:18:38 GMT 2026
    - 56.9K bytes
    - Click Count (0)
  2. tests/test_multi_body_errors.py

                                "age": {
                                    "title": "Age",
                                    "anyOf": [
                                        {"exclusiveMinimum": 0.0, "type": "number"},
                                        IsOneOf(
                                            # pydantic < 2.12.0
                                            {"type": "string"},
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Feb 08 10:18:38 GMT 2026
    - 6.7K bytes
    - Click Count (0)
  3. fastapi/openapi/models.py

        const: Any | None = None
        multipleOf: float | None = Field(default=None, gt=0)
        maximum: float | None = None
        exclusiveMaximum: float | None = None
        minimum: float | None = None
        exclusiveMinimum: float | None = None
        maxLength: int | None = Field(default=None, ge=0)
        minLength: int | None = Field(default=None, ge=0)
        pattern: str | None = None
        maxItems: int | None = Field(default=None, ge=0)
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Mar 15 11:44:39 GMT 2026
    - 14.2K bytes
    - Click Count (0)
  4. 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": {
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Feb 12 13:19:43 GMT 2026
    - 6.9K bytes
    - Click Count (0)
  5. tests/test_tutorial/test_body_multiple_params/test_tutorial004.py

                                "importance": {
                                    "title": "Importance",
                                    "type": "integer",
                                    "exclusiveMinimum": 0.0,
                                },
                            },
                        },
                        "ValidationError": {
                            "title": "ValidationError",
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Feb 12 13:19:43 GMT 2026
    - 10K bytes
    - Click Count (0)
Back to Top