- Sort Score
- Num 10 results
- Language All
Results 451 - 460 of 611 for Schemas (0.04 seconds)
-
docs/ru/docs/alternatives.md
/// check | **FastAPI** использует его для Обработки всей валидации данных, сериализации данных и автоматической документации моделей (на основе JSON Schema). Затем **FastAPI** берёт эти данные JSON Schema и помещает их в OpenAPI, помимо всех прочих функций. /// ### [Starlette](https://www.starlette.dev/) { #starlette }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:56:20 GMT 2026 - 37.1K bytes - Click Count (0) -
docs/fr/docs/advanced/additional-status-codes.md
/// ## Documents OpenAPI et API { #openapi-and-api-docs } Si vous renvoyez directement des codes HTTP et des réponses supplémentaires, ils ne seront pas inclus dans le schéma OpenAPI (les documents de l'API), car FastAPI n'a aucun moyen de savoir à l'avance ce que vous allez renvoyer.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 2.3K bytes - Click Count (0) -
docs/zh-hant/docs/how-to/custom-docs-ui-assets.md
### 加入自訂文件 { #include-the-custom-docs } 現在你可以為自訂文件建立「路徑操作(path operation)」。 你可以重用 FastAPI 的內部函式來建立文件的 HTML 頁面,並傳入所需參數: * `openapi_url`:文件 HTML 頁面用來取得你 API 的 OpenAPI schema 的 URL。可使用屬性 `app.openapi_url`。 * `title`:你的 API 標題。 * `oauth2_redirect_url`:可使用 `app.swagger_ui_oauth2_redirect_url` 以沿用預設值。 * `swagger_js_url`:Swagger UI 文件 HTML 用來取得「JavaScript」檔案的 URL。這是你的自訂 CDN 位址。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 6.9K bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/body-nested-models.md
例如,在 `Image` 模型中有一個 `url` 欄位,我們可以將其宣告為 Pydantic 的 `HttpUrl`,而不是 `str`: {* ../../docs_src/body_nested_models/tutorial005_py310.py hl[2,8] *} 該字串會被檢查是否為有效的 URL,並在 JSON Schema / OpenAPI 中相應註記。 ## 具有子模型列表的屬性 { #attributes-with-lists-of-submodels } 你也可以將 Pydantic 模型作為 `list`、`set` 等的子型別使用: {* ../../docs_src/body_nested_models/tutorial006_py310.py hl[18] *}Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 6.5K bytes - Click Count (0) -
docs/ko/docs/_llm-test.md
* SQLModel 문서 * API 문서 * 자동 문서 * Data Science * Deep Learning * Machine Learning * Dependency Injection * HTTP Basic authentication * HTTP Digest * ISO format * JSON Schema 표준 * JSON schema * schema definition * Password Flow * Mobile * deprecated * designed * invalid * on the fly * standard * default * case-sensitive * case-insensitive * 애플리케이션을 서빙하다
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 11.7K bytes - Click Count (0) -
docs/en/docs/tutorial/dependencies/index.md
/// ## Integrated with OpenAPI { #integrated-with-openapi } All the request declarations, validations and requirements of your dependencies (and sub-dependencies) will be integrated in the same OpenAPI schema. So, the interactive docs will have all the information from these dependencies too: <img src="/img/tutorial/dependencies/image01.png"> ## Simple usage { #simple-usage }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 9.5K bytes - Click Count (0) -
docs/ja/docs/history-design-future.md
すべて既存の代替手段を使うことで、そのすべてを学び、アイデアを得て、自分や一緒に仕事をしてきた開発者のチームにとって最良の方法で組み合わせる機会を得ました。 たとえば、理想的にはPythonの標準的な型ヒントに基づくべきであることが明らかになりました。 また、すでにある規格を利用するのがベストな方法でした。 そこで、**FastAPI**のコードを書き始める前に、OpenAPI、JSON Schema、OAuth2などの仕様を数ヶ月かけて勉強し、それらの関係、重複する箇所、相違点を理解しました。 ## 設計 { #design } その後、 (FastAPIを使う開発者として) ユーザーが欲しい「API」の設計に時間を費やしました。 もっとも人気のあるPythonエディターでいくつかのアイデアをテストしました。PyCharm、VS Code、Jediベースのエディターです。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 5.1K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelProblem.java
/** * Enumeration of model versions that can be validated. * These versions correspond to different levels of validation that can be applied * during model building, based on the POM schema version. * <p> * The validation levels are cumulative, with higher versions including all validations * from lower versions plus additional checks specific to that version. */ enum Version {Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Thu Aug 07 14:31:13 GMT 2025 - 2.9K bytes - Click Count (0) -
docs/en/docs/how-to/general.md
To convert any data to JSON-compatible, read the docs for [Tutorial - JSON Compatible Encoder](../tutorial/encoder.md). ## OpenAPI Metadata - Docs { #openapi-metadata-docs } To add metadata to your OpenAPI schema, including a license, version, contact, etc, read the docs for [Tutorial - Metadata and Docs URLs](../tutorial/metadata.md). ## OpenAPI Custom URL { #openapi-custom-url }
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 2.8K bytes - Click Count (0) -
docs/pt/docs/tutorial/extra-data-types.md
* Nas respostas, o `set` será convertido para uma `list`. * O esquema gerado vai especificar que os valores do `set` são únicos (usando o `uniqueItems` do JSON Schema). * `bytes`: * O `bytes` padrão do Python. * Em requisições e respostas será representado como uma `str`. * O esquema gerado vai especificar que é uma `str` com o "formato" `binary`. * `Decimal`:Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:43 GMT 2026 - 2.9K bytes - Click Count (0)