Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 91 - 100 of 511 for Schemas (0.04 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. tests/test_additional_responses_union_duplicate_anyof.py

                                                    {"$ref": "#/components/schemas/ModelB"},
                                                ],
                                                "title": "Response 500 Route1 Route1 Get",
                                            },
                                            "examples": {"Case A": {"value": "a"}},
                                        }
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Tue Feb 17 09:59:14 GMT 2026
    - 4.3K bytes
    - Click Count (0)
  2. tests/test_tutorial/test_additional_responses/test_tutorial001.py

                                    "content": {
                                        "application/json": {
                                            "schema": {
                                                "$ref": "#/components/schemas/Message"
                                            }
                                        }
                                    },
                                },
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Feb 12 13:19:43 GMT 2026
    - 5.1K bytes
    - Click Count (0)
  3. tests/test_tutorial/test_body_multiple_params/test_tutorial003.py

                            "type": "object",
                            "properties": {
                                "item": {"$ref": "#/components/schemas/Item"},
                                "user": {"$ref": "#/components/schemas/User"},
                                "importance": {"title": "Importance", "type": "integer"},
                            },
                        },
                        "ValidationError": {
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Feb 12 13:19:43 GMT 2026
    - 8.1K bytes
    - Click Count (0)
  4. docs/ko/docs/advanced/additional-responses.md

                        "schema": {
                            "$ref": "#/components/schemas/Message"
                        }
                    }
                }
            },
            "200": {
                "description": "Successful Response",
                "content": {
                    "application/json": {
                        "schema": {
                            "$ref": "#/components/schemas/Item"
                        }
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 9.6K bytes
    - Click Count (0)
  5. tests/test_additional_responses_response_class.py

                                            "schema": {"$ref": "#/components/schemas/Error"}
                                        }
                                    },
                                },
                                "200": {
                                    "description": "Successful Response",
                                    "content": {"application/json": {"schema": {}}},
                                },
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Feb 08 10:18:38 GMT 2026
    - 3.8K bytes
    - Click Count (0)
  6. tests/test_get_request_body.py

                            "requestBody": {
                                "content": {
                                    "application/json": {
                                        "schema": {"$ref": "#/components/schemas/Product"}
                                    }
                                },
                                "required": True,
                            },
                            "responses": {
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Feb 08 10:18:38 GMT 2026
    - 4.2K bytes
    - Click Count (0)
  7. tests/test_additional_properties_bool.py

                                "content": {
                                    "application/json": {
                                        "schema": {
                                            "anyOf": [
                                                {"$ref": "#/components/schemas/Foo"},
                                                {"type": "null"},
                                            ],
    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)
  8. docs/fr/docs/advanced/additional-responses.md

                    "application/json": {
                        "schema": {
                            "$ref": "#/components/schemas/HTTPValidationError"
                        }
                    }
                }
            }
        }
    }
    ```
    
    Les schémas sont référencés à un autre endroit du modèle OpenAPI :
    
    ```JSON hl_lines="4-16"
    {
        "components": {
            "schemas": {
                "Message": {
                    "title": "Message",
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 9.6K bytes
    - Click Count (0)
  9. tests/test_response_class_no_mediatype.py

                                            "schema": {"$ref": "#/components/schemas/Error"}
                                        }
                                    },
                                },
                                "200": {
                                    "description": "Successful Response",
                                    "content": {"application/json": {"schema": {}}},
                                },
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Feb 08 10:18:38 GMT 2026
    - 3.6K bytes
    - Click Count (0)
  10. tests/test_tutorial/test_body_nested_models/test_tutorial007.py

                            "requestBody": {
                                "content": {
                                    "application/json": {
                                        "schema": {
                                            "$ref": "#/components/schemas/Offer",
                                        }
                                    }
                                },
                                "required": True,
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Feb 12 13:19:43 GMT 2026
    - 11.6K bytes
    - Click Count (0)
Back to Top