Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for termsOfService (0.28 seconds)

  1. fastapi/openapi/utils.py

        if summary:
            info["summary"] = summary
        if description:
            info["description"] = description
        if terms_of_service:
            info["termsOfService"] = terms_of_service
        if contact:
            info["contact"] = contact
        if license_info:
            info["license"] = license_info
        output: dict[str, Any] = {"openapi": openapi_version, "info": info}
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Mar 15 11:44:39 GMT 2026
    - 25.6K bytes
    - Click Count (0)
  2. fastapi/openapi/models.py

        name: str
        identifier: str | None = None
        url: AnyUrl | None = None
    
    
    class Info(BaseModelWithConfig):
        title: str
        summary: str | None = None
        description: str | None = None
        termsOfService: str | None = None
        contact: Contact | None = None
        license: License | None = None
        version: str
    
    
    class ServerVariable(BaseModelWithConfig):
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Mar 15 11:44:39 GMT 2026
    - 14.2K bytes
    - Click Count (0)
Back to Top