Browse Source

📝 Update enum examples to use str, and improve Swagger UI in examples (#351)

pull/356/head
Sebastián Ramírez 6 years ago
committed by GitHub
parent
commit
9a71672a95
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      docs/src/path_params/tutorial005.py
  2. 4
      docs/tutorial/path-params.md
  3. 1
      tests/test_tutorial/test_path_params/test_tutorial005.py

2
docs/src/path_params/tutorial005.py

@ -3,7 +3,7 @@ from enum import Enum
from fastapi import FastAPI from fastapi import FastAPI
class ModelName(Enum): class ModelName(str, Enum):
alexnet = "alexnet" alexnet = "alexnet"
resnet = "resnet" resnet = "resnet"
lenet = "lenet" lenet = "lenet"

4
docs/tutorial/path-params.md

@ -119,7 +119,9 @@ If you have a *path operation* that receives a *path parameter*, but you want th
### Create an `Enum` class ### Create an `Enum` class
Import `Enum` and create a sub-class that inherits from it. Import `Enum` and create a sub-class that inherits from `str` and from `Enum`.
By inheriting from `str` the API docs will be able to know that the values must be of type `string` and will be able to render correctly.
And create class attributes with fixed values, those fixed values will be the available valid values: And create class attributes with fixed values, those fixed values will be the available valid values:

1
tests/test_tutorial/test_path_params/test_tutorial005.py

@ -35,6 +35,7 @@ openapi_schema = {
"schema": { "schema": {
"title": "Model_Name", "title": "Model_Name",
"enum": ["alexnet", "resnet", "lenet"], "enum": ["alexnet", "resnet", "lenet"],
"type": "string",
}, },
"name": "model_name", "name": "model_name",
"in": "path", "in": "path",

Loading…
Cancel
Save