(self)
| 205 | |
| 206 | @property |
| 207 | def _schema_translate_map(self) -> Optional[SchemaTranslateMapType]: |
| 208 | schema_translate_map: Optional[SchemaTranslateMapType] = ( |
| 209 | self._execution_options.get("schema_translate_map", None) |
| 210 | ) |
| 211 | |
| 212 | return schema_translate_map |
| 213 | |
| 214 | def schema_for_object(self, obj: HasSchemaAttr) -> Optional[str]: |
| 215 | """Return the schema name for the given schema item taking into |