"""Schemas for MD documents."""fromemmet.core.structureimportStructureMetadatafrompydanticimportFieldfrompymatgen.coreimportStructure
[docs]classMultiMDOutput(StructureMetadata):"""Output of a MultiMD Flow."""structure:Structure=Field("Final structure of the last step of the flow")vasp_dir:str=Field("Path to the last vasp folder of the flow")traj_ids:list[str]=Field("List of uuids of the MD calculations in the flow")full_traj_ids:list[str]=Field("List of uuids of the MD calculations in the flow and in previous linked flows")