# Alembic Export Options

---

## Key Alembic Options Reference
| Key | Type | Description |
| --- | --- | --- |
| `ExportMeshes` | `bool` | Include meshes in final select (default `True`) |
| `ExportBones` | `bool` | Include bones in final select (default `True`) |
| `RemoveNameSpace` | `bool` | Remove namespace before export |
| `ResetRoot` | `bool` | Temporarily reset Root transform, then restore |
| `ResetRootMode` | `str` | `"auto"` or `"name"` |
| `ResetRootName` | `str` | Node name for name mode |
| `ResetAxisX/Y/Z` | `float` | Rotation applied after root reset (degrees) |
| `ArchiveType` | `str` | `"ogawa"` / `"hdf5"` |
| `CoordinateSystem` | `str` | `"yup"` / `"zup"` / `"max"` |
| `Hidden` | `bool` | Export hidden geometry |
| `UVs` / `Normals` / `VertexColors` | `bool` | Export data flags |
| `AnimTimeRange` | `str` | `"CurrentFrame"` / `"TimeSlider"` / `"StartEnd"` |
| `BatchCreateSubfolder` | `bool` | Per-reference subfolder on batch export |

Lookup:
```python
info = api.get_abc_default_options()
print(info["preset_name"])
print(info["options"].keys())
```