- Sort Score
- Num 10 results
- Language All
Results 11 - 20 of 21 for externalDocs (0.1 seconds)
-
docs/ru/docs/tutorial/metadata.md
* `description`: `str`-значение с кратким описанием для тега. Может содержать Markdown и будет отображаться в UI документации. * `externalDocs`: `dict`-значение описывающее внешнюю документацию. Включает в себя: * `description`: `str`-значение с кратким описанием для внешней документации.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:56:20 GMT 2026 - 9.2K bytes - Click Count (0) -
docs/tr/docs/tutorial/metadata.md
* `description`: tag için kısa bir açıklama içeren `str`. Markdown içerebilir ve doküman arayüzünde gösterilir. * `externalDocs`: harici dokümanları tanımlayan bir `dict`: * `description`: harici dokümanlar için kısa açıklama içeren `str`. * `url` (**zorunlu**): harici dokümantasyonun URL'sini içeren `str`.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 6.2K bytes - Click Count (0) -
docs/uk/docs/tutorial/metadata.md
* `description`: `str` з коротким описом тегу. Може містити Markdown і буде показано в інтерфейсі документації. * `externalDocs`: `dict`, який описує зовнішню документацію з такими полями: * `description`: `str` з коротким описом зовнішньої документації. * `url` (**обов'язково**): `str` з URL-адресою зовнішньої документації.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:27:41 GMT 2026 - 8.8K bytes - Click Count (0) -
docs/de/docs/tutorial/metadata.md
* `description`: ein `str` mit einer kurzen Beschreibung für das Tag. Sie kann Markdown enthalten und wird in der Benutzeroberfläche der Dokumentation angezeigt. * `externalDocs`: ein `dict`, das externe Dokumentation beschreibt mit: * `description`: ein `str` mit einer kurzen Beschreibung für die externe Dokumentation. * `url` (**erforderlich**): ein `str` mit der URL für die externe Dokumentation.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:58:09 GMT 2026 - 6.8K bytes - Click Count (0) -
docs/es/docs/tutorial/metadata.md
* `description`: un `str` con una breve descripción de la etiqueta. Puede tener Markdown y se mostrará en la interfaz de documentación. * `externalDocs`: un `dict` que describe documentación externa con: * `description`: un `str` con una breve descripción para la documentación externa. * `url` (**requerido**): un `str` con la URL para la documentación externa.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:15:55 GMT 2026 - 6.3K bytes - Click Count (0) -
CHANGELOG/CHANGELOG-1.36.md
- Kubectl explain: when a schema or field includes an externalDocs section, it is now displayed as: EXTERNAL DOCS: <description> URL: <url> This appears after the DESCRIPTION block for top-level resources and after the field description for individual fields. The section isCreated: Fri Apr 03 09:05:14 GMT 2026 - Last Modified: Thu Mar 19 23:38:00 GMT 2026 - 142.1K bytes - Click Count (0) -
docs/pt/docs/tutorial/metadata.md
* `description`: uma `str` com uma breve descrição da tag. Pode conter Markdown e será exibido na interface de documentação. * `externalDocs`: um `dict` descrevendo a documentação externa com: * `description`: uma `str` com uma breve descrição da documentação externa. * `url` (**obrigatório**): uma `str` com a URL da documentação externa.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:43 GMT 2026 - 6.2K bytes - Click Count (0) -
docs/fr/docs/tutorial/metadata.md
* `description` : un `str` avec une courte description pour le tag. Il peut contenir du Markdown et sera affiché dans l’interface utilisateur de la documentation. * `externalDocs` : un `dict` décrivant une documentation externe avec : * `description` : un `str` avec une courte description pour la documentation externe. * `url` (**requis**) : un `str` avec l’URL de la documentation externe.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 6.6K bytes - Click Count (0) -
fastapi/applications.py
```python from fastapi import FastAPI external_docs = { "description": "Detailed API Reference", "url": "https://example.com/api-docs", } app = FastAPI(openapi_external_docs=external_docs) ``` """ ), ] = None,Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Wed Apr 01 16:16:24 GMT 2026 - 178.6K bytes - Click Count (0) -
tests/main.py
import http from fastapi import FastAPI, Path, Query external_docs = { "description": "External API documentation.", "url": "https://docs.example.com/api-general", } app = FastAPI(openapi_external_docs=external_docs) @app.api_route("/api_route") def non_operation(): return {"message": "Hello World"} def non_decorated_route(): return {"message": "Hello World"}Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Tue Feb 17 09:59:14 GMT 2026 - 4.5K bytes - Click Count (0)