Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for oneOf (0.04 sec)

  1. tests/test_union_body_discriminator.py

                                "required": True,
                                "content": {
                                    "application/json": {
                                        "schema": {
                                            "oneOf": [
                                                {"$ref": "#/components/schemas/FirstItem"},
                                                {"$ref": "#/components/schemas/OtherItem"},
                                            ],
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 18:19:10 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  2. tests/test_union_body_discriminator_annotated.py

                            "requestBody": {
                                "content": {
                                    "application/json": {
                                        "schema": {
                                            "oneOf": [
                                                {"$ref": "#/components/schemas/Cat"},
                                                {"$ref": "#/components/schemas/Dog"},
                                            ],
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 20 15:55:38 UTC 2025
    - 7.7K bytes
    - Viewed (0)
  3. fastapi/openapi/models.py

        # A Vocabulary for Applying Subschemas
        allOf: Optional[list["SchemaOrBool"]] = None
        anyOf: Optional[list["SchemaOrBool"]] = None
        oneOf: Optional[list["SchemaOrBool"]] = None
        not_: Optional["SchemaOrBool"] = Field(default=None, alias="not")
        if_: Optional["SchemaOrBool"] = Field(default=None, alias="if")
        then: Optional["SchemaOrBool"] = 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)
  4. CHANGELOG/CHANGELOG-1.34.md

    - The `conditionType` is "oneof" approved/denied check of CertificateSigningRequest's `.status.conditions` field was migrated to declarative validation. 
    Registered: Fri Dec 26 09:05:12 UTC 2025
    - Last Modified: Wed Dec 10 01:13:50 UTC 2025
    - 333.3K bytes
    - Viewed (1)
Back to top