Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 262 for modelos (0.19 sec)

  1. docs/en/docs/reference/openapi/models.md

    # OpenAPI `models`
    
    OpenAPI Pydantic models used to generate and validate the generated OpenAPI.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Wed Oct 18 12:36:40 UTC 2023
    - 125 bytes
    - Viewed (0)
  2. docs/en/docs/tutorial/query-param-models.md

    # Query Parameter Models { #query-parameter-models }
    
    If you have a group of **query parameters** that are related, you can create a **Pydantic model** to declare them.
    
    This would allow you to **re-use the model** in **multiple places** and also to declare validations and metadata for all the parameters at once. 😎
    
    /// note
    
    This is supported since FastAPI version `0.115.0`. πŸ€“
    
    ///
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/cookie-param-models.md

    # Cookie Parameter Models { #cookie-parameter-models }
    
    If you have a group of **cookies** that are related, you can create a **Pydantic model** to declare them. πŸͺ
    
    This would allow you to **re-use the model** in **multiple places** and also to declare validations and metadata for all the parameters at once. 😎
    
    /// note
    
    This is supported since FastAPI version `0.115.0`. πŸ€“
    
    ///
    
    /// tip
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 3.1K bytes
    - Viewed (0)
  4. docs/en/docs/tutorial/header-param-models.md

    # Header Parameter Models { #header-parameter-models }
    
    If you have a group of related **header parameters**, you can create a **Pydantic model** to declare them.
    
    This would allow you to **re-use the model** in **multiple places** and also to declare validations and metadata for all the parameters at once. 😎
    
    /// note
    
    This is supported since FastAPI version `0.115.0`. πŸ€“
    
    ///
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  5. docs/uk/docs/tutorial/header-param-models.md

    ## ΠŸΠ΅Ρ€Π΅Π²Ρ–Ρ€ΠΊΠ° Π² Π”ΠΎΠΊΡƒΠΌΠ΅Π½Ρ‚Π°Ρ†Ρ–Ρ—
    
    Π’ΠΈ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΏΠΎΠ±Π°Ρ‡ΠΈΡ‚ΠΈ Π½Π΅ΠΎΠ±Ρ…Ρ–Π΄Π½Ρ– Π·Π°Π³ΠΎΠ»ΠΎΠ²ΠΊΠΈ Π² інтСрфСйсі Π΄ΠΎΠΊΡƒΠΌΠ΅Π½Ρ‚Π°Ρ†Ρ–Ρ— Π·Π° Π°Π΄Ρ€Π΅ΡΠΎΡŽ `/docs`:
    
    <div class="screenshot">
    <img src="/img/tutorial/header-param-models/image01.png">
    </div>
    
    ## Π—Π°Π±ΠΎΡ€ΠΎΠ½Π° Π”ΠΎΠ΄Π°Ρ‚ΠΊΠΎΠ²ΠΈΡ… Π—Π°Π³ΠΎΠ»ΠΎΠ²ΠΊΡ–Π²
    
    Π£ дСяких особливих Π²ΠΈΠΏΠ°Π΄ΠΊΠ°Ρ… (ΠΉΠΌΠΎΠ²Ρ–Ρ€Π½ΠΎ, Π½Π΅ Π΄ΡƒΠΆΠ΅ ΠΏΠΎΡˆΠΈΡ€Π΅Π½ΠΈΡ…) Π’ΠΈ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ Π·Π°Ρ…ΠΎΡ‚Ρ–Ρ‚ΠΈ **ΠΎΠ±ΠΌΠ΅ΠΆΠΈΡ‚ΠΈ** Π·Π°Π³ΠΎΠ»ΠΎΠ²ΠΊΠΈ, які Ρ…ΠΎΡ‡Π΅Ρ‚Π΅ ΠΎΡ‚Ρ€ΠΈΠΌΠ°Ρ‚ΠΈ.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Wed Mar 19 17:03:13 UTC 2025
    - 3K bytes
    - Viewed (0)
  6. docs/en/docs/tutorial/request-form-models.md

    # Form Models { #form-models }
    
    You can use **Pydantic models** to declare **form fields** in FastAPI.
    
    /// info
    
    To use forms, first install <a href="https://github.com/Kludex/python-multipart" class="external-link" target="_blank">`python-multipart`</a>.
    
    Make sure you create a [virtual environment](../virtual-environments.md){.internal-link target=_blank}, activate it, and then install it, for example:
    
    ```console
    $ pip install python-multipart
    ```
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  7. docs/en/docs/tutorial/body-nested-models.md

    ## Nested Models { #nested-models }
    
    Each attribute of a Pydantic model has a type.
    
    But that type can itself be another Pydantic model.
    
    So, you can declare deeply nested JSON "objects" with specific attribute names, types and validations.
    
    All that, arbitrarily nested.
    
    ### Define a submodel { #define-a-submodel }
    
    For example, we can define an `Image` model:
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  8. docs/ru/docs/tutorial/request-form-models.md

    ## ΠŸΡ€ΠΎΠ²Π΅Ρ€ΠΊΠ° сгСнСрированной Π΄ΠΎΠΊΡƒΠΌΠ΅Π½Ρ‚Π°Ρ†ΠΈΠΈ
    
    Π’Ρ‹ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ ΠΏΠΎΡΠΌΠΎΡ‚Ρ€Π΅Ρ‚ΡŒ поля Ρ„ΠΎΡ€ΠΌΡ‹ Π² графичСском интСрфСйсС Π”ΠΎΠΊΡƒΠΌΠ΅Π½Ρ‚Π°Ρ†ΠΈΠΈ ΠΏΠΎ ΠΏΡƒΡ‚ΠΈ `/docs`:
    
    <div class="screenshot">
    <img src="/img/tutorial/request-form-models/image01.png">
    </div>
    
    ## Π—Π°ΠΏΡ€Π΅Ρ‚ Π΄ΠΎΠΏΠΎΠ»Π½ΠΈΡ‚Π΅Π»ΡŒΠ½Ρ‹Ρ… ΠΏΠΎΠ»Π΅ΠΉ Ρ„ΠΎΡ€ΠΌΡ‹
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Fri May 30 13:17:36 UTC 2025
    - 3.3K bytes
    - Viewed (0)
  9. docs/uk/docs/tutorial/request-form-models.md

    # ΠœΠΎΠ΄Π΅Π»Ρ– Ρ„ΠΎΡ€ΠΌ (Form Models)
    
    Π£ FastAPI Π’ΠΈ ΠΌΠΎΠΆΠ΅Ρ‚Π΅ використовувати **Pydantic-ΠΌΠΎΠ΄Π΅Π»Ρ–** для оголошСння **ΠΏΠΎΠ»Ρ–Π² Ρ„ΠΎΡ€ΠΌΠΈ**.
    
    /// info | Інформація
    
    Π©ΠΎΠ± використовувати Ρ„ΠΎΡ€ΠΌΠΈ, спочатку Π²ΡΡ‚Π°Π½ΠΎΠ²Ρ–Ρ‚ΡŒ <a href="https://github.com/Kludex/python-multipart" class="external-link" target="_blank">python-multipart</a>.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Thu Feb 20 14:16:09 UTC 2025
    - 3.3K bytes
    - Viewed (0)
  10. api/maven-api-model/src/main/java/org/apache/maven/api/model/InputSource.java

     * to help identify where specific model elements came from.
     *
     * @since 4.0.0
     */
    public class InputSource implements Serializable {
    
        private final String modelId;
        private final String location;
        private final List<InputSource> inputs;
        private final InputLocation importedFrom;
    
        public InputSource(String modelId, String location) {
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Apr 03 13:33:59 UTC 2025
    - 3.8K bytes
    - Viewed (0)
Back to top