diff --git a/docs/img/tutorial/body-schema/image01.png b/docs/img/tutorial/body-fields/image01.png
similarity index 100%
rename from docs/img/tutorial/body-schema/image01.png
rename to docs/img/tutorial/body-fields/image01.png
diff --git a/docs/src/body_schema/tutorial001.py b/docs/src/body_fields/tutorial001.py
similarity index 100%
rename from docs/src/body_schema/tutorial001.py
rename to docs/src/body_fields/tutorial001.py
diff --git a/docs/src/body_schema/tutorial002.py b/docs/src/body_fields/tutorial002.py
similarity index 100%
rename from docs/src/body_schema/tutorial002.py
rename to docs/src/body_fields/tutorial002.py
diff --git a/docs/tutorial/body-schema.md b/docs/tutorial/body-fields.md
similarity index 93%
rename from docs/tutorial/body-schema.md
rename to docs/tutorial/body-fields.md
index 9f0a49370..08b854e55 100644
--- a/docs/tutorial/body-schema.md
+++ b/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 JSON Schema example 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:
-
+
## Recap
diff --git a/mkdocs.yml b/mkdocs.yml
index 9140e6a3f..d458366a7 100644
--- a/mkdocs.yml
+++ b/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'
diff --git a/tests/test_tutorial/test_body_schema/__init__.py b/tests/test_tutorial/test_body_fields/__init__.py
similarity index 100%
rename from tests/test_tutorial/test_body_schema/__init__.py
rename to tests/test_tutorial/test_body_fields/__init__.py
diff --git a/tests/test_tutorial/test_body_schema/test_tutorial001.py b/tests/test_tutorial/test_body_fields/test_tutorial001.py
similarity index 99%
rename from tests/test_tutorial/test_body_schema/test_tutorial001.py
rename to tests/test_tutorial/test_body_fields/test_tutorial001.py
index 2d822cbfe..b77f75218 100644
--- a/tests/test_tutorial/test_body_schema/test_tutorial001.py
+++ b/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: