Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for externalDocs (0.09 seconds)

  1. 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 is
    Created: Fri Apr 03 09:05:14 GMT 2026
    - Last Modified: Thu Mar 19 23:38:00 GMT 2026
    - 142.1K bytes
    - Click Count (0)
  2. 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)
Back to Top