1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
# generated by datamodel-codegen:
# filename: json_pointer.json
# timestamp: 2019-07-26T00:00:00+00:00
from __future__ import annotations
from enum import Enum
from typing import Any, Optional, Union
from pydantic import BaseModel, Extra, Field
class Pets(BaseModel):
__root__: Any
class PetType(Enum):
Cat = 'Cat'
class Cat(BaseModel):
pet_type: PetType
hunts: bool
age: str
class PetType1(Enum):
Dog = 'Dog'
class Dog(BaseModel):
pet_type: PetType1
bark: bool
breed: str
class Person(BaseModel):
class Config:
extra = Extra.forbid
name: Optional[str] = Field(None, title='name')
pet: Optional[Union[Cat, Dog]] = Field(None, title='pet')
|