Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 12 for additionalProperties (0.15 seconds)

  1. build-tools-internal/src/main/resources/changelog-schema.json

            },
            "body": {
              "type": "string",
              "minLength": 1
            }
          },
          "required": [
            "title",
            "body"
          ],
          "additionalProperties": false
        },
        "Breaking": {
          "properties": {
            "area": {
              "$ref": "#/definitions/breakingArea"
            },
            "title": {
              "type": "string",
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Sep 01 06:25:29 GMT 2021
    - 5K bytes
    - Click Count (0)
  2. tests/test_additional_properties.py

                            "properties": {
                                "items": {
                                    "title": "Items",
                                    "type": "object",
                                    "additionalProperties": {"type": "integer"},
                                }
                            },
                        },
                        "ValidationError": {
                            "title": "ValidationError",
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Feb 08 10:18:38 GMT 2026
    - 4.1K bytes
    - Click Count (0)
  3. tests/test_filter_pydantic_sub_model_pv2.py

                                },
                                "foo": {"$ref": "#/components/schemas/ModelB"},
                                "tags": {
                                    "additionalProperties": {"type": "string"},
                                    "type": "object",
                                    "title": "Tags",
                                    "default": {},
                                },
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Tue Feb 17 09:59:14 GMT 2026
    - 6.7K bytes
    - Click Count (0)
  4. fastapi/openapi/models.py

        items: Optional["SchemaOrBool"] = None
        contains: Optional["SchemaOrBool"] = None
        properties: dict[str, "SchemaOrBool"] | None = None
        patternProperties: dict[str, "SchemaOrBool"] | None = None
        additionalProperties: Optional["SchemaOrBool"] = None
        propertyNames: Optional["SchemaOrBool"] = None
        unevaluatedItems: Optional["SchemaOrBool"] = None
        unevaluatedProperties: Optional["SchemaOrBool"] = None
    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)
  5. tests/test_additional_properties_bool.py

                        }
                    }
                },
                "components": {
                    "schemas": {
                        "Foo": {
                            "properties": {},
                            "additionalProperties": False,
                            "type": "object",
                            "title": "Foo",
                        },
                        "HTTPValidationError": {
                            "properties": {
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Tue Feb 17 09:59:14 GMT 2026
    - 4.2K bytes
    - Click Count (0)
  6. tests/test_tutorial/test_body_nested_models/test_tutorial009.py

                                        "schema": {
                                            "title": "Weights",
                                            "type": "object",
                                            "additionalProperties": {"type": "number"},
                                        }
                                    }
                                },
                                "required": True,
                            },
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Feb 12 13:19:43 GMT 2026
    - 4.5K bytes
    - Click Count (0)
  7. CHANGELOG/CHANGELOG-1.35.md

    - Fixed a bug in `ValidatingAdmissionPolicy` where schemas with `additionalProperties: true` could cause the kube-controller-manager to crash with a nil pointer exception. ([#135155](https://github.com/kubernetes/kubernetes/pull/135155), [@jpbetz](https://github.com/jpbetz))
    Created: Fri Apr 03 09:05:14 GMT 2026
    - Last Modified: Thu Mar 19 03:20:49 GMT 2026
    - 265.9K bytes
    - Click Count (0)
  8. CHANGELOG/CHANGELOG-1.11.md

    * The CRD OpenAPI v3 specification for validation now allows `additionalProperties`, which are mutually exclusive to properties. ([#62333](https://github.com/kubernetes/kubernetes/pull/62333), [@sttts](https://github.com/sttts))
    Created: Fri Apr 03 09:05:14 GMT 2026
    - Last Modified: Thu Feb 06 06:04:15 GMT 2020
    - 328.4K bytes
    - Click Count (0)
  9. CHANGELOG/CHANGELOG-1.29.md

    - CEL can now correctly handle a CRD `openAPIV3Schema` that has neither `Properties` nor `AdditionalProperties`. ([#121459](https://github.com/kubernetes/kubernetes/pull/121459), [@jiahuif](https://github.com/jiahuif))
    Created: Fri Apr 03 09:05:14 GMT 2026
    - Last Modified: Wed Mar 12 00:36:01 GMT 2025
    - 429.6K bytes
    - Click Count (1)
  10. CHANGELOG/CHANGELOG-1.31.md

    - Added support for CEL(Common Expression Language) expressions and `additionalProperties` to be used under nested quantifiers in CRD schemas. ([#124381](https://github.com/kubernetes/kubernetes/pull/124381), [@alexzielenski](https://github.com/alexzielenski)) [SIG API Machinery]
    Created: Fri Apr 03 09:05:14 GMT 2026
    - Last Modified: Wed Nov 12 11:33:21 GMT 2025
    - 451.9K bytes
    - Click Count (0)
Back to Top