Specification faststream.specification.Specification # Bases: Protocol title property # title: str to_json # to_json() -> str Source code in faststream/specification/base/specification.py 9def to_json(self) -> str: ... to_jsonable # to_jsonable() -> Any Source code in faststream/specification/base/specification.py 11def to_jsonable(self) -> Any: ... to_yaml # to_yaml() -> str Source code in faststream/specification/base/specification.py 13def to_yaml(self) -> str: ...