@ -26,9 +26,9 @@ First, you need to import `BaseModel` from `pydantic`:
## Create your data model
Then you declare your data model as a class that inherits from `BaseModel`.
Then you declare your data model as a class that inherits from `BaseModel`. These classes will be the containers for the various requests and responses you intend to implement.
Use standard Python types for all the attributes:
`BaseModel` will handle the data validation of all requests and responses for you. All you have to do is declare what type each attribute is supposed to have. Use standard Python types for the attributes:
@ -24,7 +24,7 @@ That extra info will be added as-is to the output **JSON Schema** for that model
//// tab | Pydantic v2
In Pydantic version 2, you would use the attribute `model_config`, that takes a `dict` as described in <ahref="https://docs.pydantic.dev/latest/api/config/"class="external-link"target="_blank">Pydantic's docs: Configuration</a>.
In Pydantic version 2, you would use the attribute `model_config`, which formats the behavior of an entire model, as opposed to `Field` which formats the behavior of individual attributes. The `model_config` takes a `dict` as described in <ahref="https://docs.pydantic.dev/latest/api/config/"class="external-link"target="_blank">Pydantic's docs: Configuration</a>.
You can set `"json_schema_extra"` with a `dict` containing any additional data you would like to show up in the generated JSON Schema, including `examples`.