Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for AnyOf (0.03 sec)

  1. tests/test_openapi_separate_input_output_schemas.py

                            "description": {
                                "anyOf": [{"type": "string"}, {"type": "null"}],
                                "title": "Description",
                            },
                            "sub": {
                                "anyOf": [
                                    {"$ref": "#/components/schemas/SubItem-Input"},
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sat Oct 12 09:44:57 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  2. tests/test_tutorial/test_cookie_param_models/test_tutorial002.py

                                    "required": False,
                                    "schema": IsDict(
                                        {
                                            "anyOf": [{"type": "string"}, {"type": "null"}],
                                            "title": "Fatebook Tracker",
                                        }
                                    )
                                    | IsDict(
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Sep 17 18:54:10 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  3. tests/test_tutorial/test_dataclasses/test_tutorial002.py

                                }
                            ),
                            "description": IsDict(
                                {
                                    "title": "Description",
                                    "anyOf": [{"type": "string"}, {"type": "null"}],
                                }
                            )
                            | IsDict(
                                # TODO: remove when deprecating Pydantic v1
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Wed Jul 31 14:09:15 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. tests/test_tutorial/test_header_param_models/test_tutorial002.py

                                    "required": False,
                                    "schema": IsDict(
                                        {
                                            "anyOf": [{"type": "string"}, {"type": "null"}],
                                            "title": "If Modified Since",
                                        }
                                    )
                                    | IsDict(
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Sep 17 18:54:10 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  5. tests/test_tutorial/test_header_param_models/test_tutorial001.py

                                    "required": False,
                                    "schema": IsDict(
                                        {
                                            "anyOf": [{"type": "string"}, {"type": "null"}],
                                            "title": "If Modified Since",
                                        }
                                    )
                                    | IsDict(
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Sep 17 18:54:10 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  6. tests/test_tutorial/test_sql_databases/test_tutorial002.py

                            "properties": {
                                "name": {"type": "string", "title": "Name"},
                                "age": IsDict(
                                    {
                                        "anyOf": [{"type": "integer"}, {"type": "null"}],
                                        "title": "Age",
                                    }
                                )
                                | IsDict(
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Wed Oct 09 19:44:42 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  7. tests/test_tutorial/test_cookie_param_models/test_tutorial001.py

                                    "required": False,
                                    "schema": IsDict(
                                        {
                                            "anyOf": [{"type": "string"}, {"type": "null"}],
                                            "title": "Fatebook Tracker",
                                        }
                                    )
                                    | IsDict(
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Sep 17 18:54:10 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  8. tests/test_tutorial/test_sql_databases/test_tutorial001.py

                        },
                        "Hero": {
                            "properties": {
                                "id": IsDict(
                                    {
                                        "anyOf": [{"type": "integer"}, {"type": "null"}],
                                        "title": "Id",
                                    }
                                )
                                | IsDict(
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Wed Oct 09 19:44:42 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  9. tests/test_openapi_examples.py

                                "in": "query",
                                "required": False,
                                "schema": IsDict(
                                    {
                                        "anyOf": [{"type": "string"}, {"type": "null"}],
                                        "examples": [
                                            "json_schema_query1",
                                            "json_schema_query2",
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Fri Sep 06 15:57:43 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  10. tests/test_tutorial/test_dataclasses/test_tutorial003.py

                        "type": "object",
                        "properties": {
                            "name": {"title": "Name", "type": "string"},
                            "description": {
                                "anyOf": [{"type": "string"}, {"type": "null"}],
                                "title": "Description",
                            },
                        },
                    },
                    "ValidationError": {
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Wed Jul 31 14:09:15 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top