From 2591a1f071fcfad97887dce2c9da596cb0735d46 Mon Sep 17 00:00:00 2001 From: Denis Artyushin Date: Mon, 27 Nov 2023 16:25:28 +0300 Subject: [PATCH] Fix for datamodel-code-generator docs --- docs/integrations/datamodel_code_generator.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/integrations/datamodel_code_generator.md b/docs/integrations/datamodel_code_generator.md index 767c1a04db..eeab0cd629 100644 --- a/docs/integrations/datamodel_code_generator.md +++ b/docs/integrations/datamodel_code_generator.md @@ -2,11 +2,11 @@ The [datamodel-code-generator](https://github.com/koxudaxi/datamodel-code-generator/) project is a library and command-line utility to generate pydantic models from just about any data source, including: -* OpenAPI 3 (YAML/JSON); -* JSON Schema; -* JSON/YAML/CSV Data (which will converted to JSON Schema); -* Python dictionary (it will be converted to JSON Schema); -* GraphQL schema; +* OpenAPI 3 (YAML/JSON) +* JSON Schema +* JSON/YAML/CSV Data (which will converted to JSON Schema) +* Python dictionary (which will be converted to JSON Schema) +* GraphQL schema Whenever you find yourself with any data convertible JSON but without pydantic models, this tool will allow you to generate type-safe model hierarchies on demand.