diff --git a/docs/en/docs/tutorial/body-fields.md b/docs/en/docs/tutorial/body-fields.md
index daba2eaff..71843a3aa 100644
--- a/docs/en/docs/tutorial/body-fields.md
+++ b/docs/en/docs/tutorial/body-fields.md
@@ -46,16 +46,27 @@ If you know JSON Schema and want to add extra information apart from what we hav
!!! warning
Have in mind that extra parameters passed won't add any validation, only annotation, for documentation purposes.
-For example, you can use that functionality to pass a JSON Schema example field to a body request JSON Schema:
+For example, you can use that functionality to pass an example for a body request:
```Python hl_lines="20 21 22 23 24 25"
{!../../../docs_src/body_fields/tutorial002.py!}
```
-And it would look in the `/docs` like this:
+Alternately, you can provide these extras on a per-field basis by using additional keyword arguments to `Field`:
+
+```Python hl_lines="2 8 9 10 11"
+{!./src/body_fields/tutorial003.py!}
+```
+
+Either way, in the `/docs` it would look like this:
+!!! note "Technical Details"
+ JSON Schema defines a field `examples` in the most recent versions, but OpenAPI is based on an older version of JSON Schema that didn't have `examples`.
+
+ So, OpenAPI defines its own `example` for the same purpose (as `example`, not `examples`), and that's what is used by the docs UI (using Swagger UI).
+
## Recap
You can use Pydantic's `Field` to declare extra validations and metadata for model attributes.
diff --git a/docs_src/body_fields/tutorial003.py b/docs_src/body_fields/tutorial003.py
new file mode 100644
index 000000000..edf9897d0
--- /dev/null
+++ b/docs_src/body_fields/tutorial003.py
@@ -0,0 +1,17 @@
+from fastapi import FastAPI
+from pydantic import BaseModel, Field
+
+app = FastAPI()
+
+
+class Item(BaseModel):
+ name: str = Field(..., example="Foo")
+ description: str = Field(None, example="A very nice Item")
+ price: float = Field(..., example=35.4)
+ tax: float = Field(None, example=3.2)
+
+
+@app.put("/items/{item_id}")
+async def update_item(*, item_id: int, item: Item):
+ results = {"item_id": item_id, "item": item}
+ return results