Browse Source

📝 Change 'Schema' to 'Field' in docs (#746)

pull/780/head
prostomarkeloff 5 years ago
committed by Sebastián Ramírez
parent
commit
3f5f81bbdc
  1. 0
      docs/img/tutorial/body-fields/image01.png
  2. 0
      docs/src/body_fields/tutorial001.py
  3. 0
      docs/src/body_fields/tutorial002.py
  4. 10
      docs/tutorial/body-fields.md
  5. 2
      mkdocs.yml
  6. 0
      tests/test_tutorial/test_body_fields/__init__.py
  7. 2
      tests/test_tutorial/test_body_fields/test_tutorial001.py

0
docs/img/tutorial/body-schema/image01.png → docs/img/tutorial/body-fields/image01.png

Before

Width:  |  Height:  |  Size: 77 KiB

After

Width:  |  Height:  |  Size: 77 KiB

0
docs/src/body_schema/tutorial001.py → docs/src/body_fields/tutorial001.py

0
docs/src/body_schema/tutorial002.py → docs/src/body_fields/tutorial002.py

10
docs/tutorial/body-schema.md → docs/tutorial/body-fields.md

@ -5,7 +5,7 @@ The same way you can declare additional validation and metadata in path operatio
First, you have to import it:
```Python hl_lines="2"
{!./src/body_schema/tutorial001.py!}
{!./src/body_fields/tutorial001.py!}
```
!!! warning
@ -17,7 +17,7 @@ First, you have to import it:
You can then use `Field` with model attributes:
```Python hl_lines="9 10"
{!./src/body_schema/tutorial001.py!}
{!./src/body_fields/tutorial001.py!}
```
`Field` works the same way as `Query`, `Path` and `Body`, it has all the same parameters, etc.
@ -34,7 +34,7 @@ You can then use `Field` with model attributes:
!!! tip
Notice how each model's attribute with a type, default value and `Field` has the same structure as a path operation function's parameter, with `Field` instead of `Path`, `Query` and `Body`.
## Schema extras
## JSON Schema extras
In `Field`, `Path`, `Query`, `Body` and others you'll see later, you can declare extra parameters apart from those described before.
@ -48,12 +48,12 @@ If you know JSON Schema and want to add extra information apart from what we hav
For example, you can use that functionality to pass a <a href="http://json-schema.org/latest/json-schema-validation.html#rfc.section.8.5" target="_blank">JSON Schema example</a> field to a body request JSON Schema:
```Python hl_lines="20 21 22 23 24 25"
{!./src/body_schema/tutorial002.py!}
{!./src/body_fields/tutorial002.py!}
```
And it would look in the `/docs` like this:
<img src="/img/tutorial/body-schema/image01.png">
<img src="/img/tutorial/body-fields/image01.png">
## Recap

2
mkdocs.yml

@ -30,7 +30,7 @@ nav:
- Query Parameters and String Validations: 'tutorial/query-params-str-validations.md'
- Path Parameters and Numeric Validations: 'tutorial/path-params-numeric-validations.md'
- Body - Multiple Parameters: 'tutorial/body-multiple-params.md'
- Body - Schema: 'tutorial/body-schema.md'
- Body - Fields: 'tutorial/body-fields.md'
- Body - Nested Models: 'tutorial/body-nested-models.md'
- Extra data types: 'tutorial/extra-data-types.md'
- Cookie Parameters: 'tutorial/cookie-params.md'

0
tests/test_tutorial/test_body_schema/__init__.py → tests/test_tutorial/test_body_fields/__init__.py

2
tests/test_tutorial/test_body_schema/test_tutorial001.py → tests/test_tutorial/test_body_fields/test_tutorial001.py

@ -1,7 +1,7 @@
import pytest
from starlette.testclient import TestClient
from body_schema.tutorial001 import app
from body_fields.tutorial001 import app
# TODO: remove when removing support for Pydantic < 1.0.0
try:
Loading…
Cancel
Save