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
|
# generated by datamodel-codegen:
# filename: pattern_properties_by_reference.json
# timestamp: 2019-07-26T00:00:00+00:00
from __future__ import annotations
from typing import Any, Dict, Optional
from pydantic import BaseModel, Extra, Field, constr
class Stt(BaseModel):
class Config:
extra = Extra.forbid
timeout: Optional[float] = Field(None, title='STT Timeout')
class TextResponse(BaseModel):
class Config:
extra = Extra.forbid
__root__: Dict[constr(regex=r'^[a-z]{1}[0-9]{1}$'), Any]
class SomeschemaSchema(BaseModel):
class Config:
extra = Extra.forbid
KeyWithExplicitPatternProperties: Optional[
Dict[constr(regex=r'^[a-z]{1}[0-9]{1}$'), Any]
] = None
KeyWithPatternPropertiesByReference: Optional[TextResponse] = None
SomeOtherBoringReference: Optional[Stt] = None
|