mat3ra-esse 2025.8.20.post0__py3-none-any.whl → 2025.10.8.post0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of mat3ra-esse might be problematic. Click here for more details.

Files changed (123) hide show
  1. mat3ra/esse/data/examples.py +1 -1
  2. mat3ra/esse/data/schemas.py +1 -1
  3. mat3ra/esse/models/core/abstract/_2d_data.py +2 -2
  4. mat3ra/esse/models/core/abstract/_2d_plot.py +2 -6
  5. mat3ra/esse/models/core/primitive/_1d_data_series.py +3 -3
  6. mat3ra/esse/models/core/primitive/axis_3d_names_enum.py +13 -0
  7. mat3ra/esse/models/core/reference/__init__.py +8 -8
  8. mat3ra/esse/models/core/reference/exabyte.py +2 -8
  9. mat3ra/esse/models/core/reference/experiment/__init__.py +2 -2
  10. mat3ra/esse/models/core/reusable/coordinate_conditions/__init__.py +1 -78
  11. mat3ra/esse/models/core/reusable/coordinate_conditions/index.py +80 -0
  12. mat3ra/esse/models/core/reusable/hubbard_parameters.py +48 -0
  13. mat3ra/esse/models/core/reusable/kpoint.py +16 -0
  14. mat3ra/esse/models/core/reusable/repetition.py +14 -0
  15. mat3ra/esse/models/definitions/material.py +13 -0
  16. mat3ra/esse/models/element.py +10 -8
  17. mat3ra/esse/models/job/__init__.py +62 -62
  18. mat3ra/esse/models/material/__init__.py +12 -12
  19. mat3ra/esse/models/materials_category/compound_pristine_structures/two_dimensional/interface/configuration.py +80 -80
  20. mat3ra/esse/models/materials_category/defective_structures/one_dimensional/grain_boundary_linear/configuration.py +80 -80
  21. mat3ra/esse/models/materials_category/defective_structures/two_dimensional/adatom/configuration.py +35 -35
  22. mat3ra/esse/models/materials_category/defective_structures/two_dimensional/grain_boundary_planar/configuration.py +80 -80
  23. mat3ra/esse/models/materials_category/defective_structures/two_dimensional/island/configuration.py +53 -53
  24. mat3ra/esse/models/materials_category/defective_structures/two_dimensional/terrace/configuration.py +53 -53
  25. mat3ra/esse/models/materials_category/defective_structures/zero_dimensional/point_defect/interstitial.py +29 -29
  26. mat3ra/esse/models/materials_category/defective_structures/zero_dimensional/point_defect/substitutional.py +32 -32
  27. mat3ra/esse/models/materials_category/defective_structures/zero_dimensional/point_defect/vacancy.py +12 -12
  28. mat3ra/esse/models/materials_category/pristine_structures/three_dimensional/ideal_crystal.py +12 -12
  29. mat3ra/esse/models/materials_category/pristine_structures/two_dimensional/nanoribbon.py +52 -52
  30. mat3ra/esse/models/materials_category/pristine_structures/two_dimensional/nanotape.py +32 -32
  31. mat3ra/esse/models/materials_category/pristine_structures/two_dimensional/slab.py +32 -32
  32. mat3ra/esse/models/materials_category/pristine_structures/two_dimensional/slab_strained_supercell.py +32 -32
  33. mat3ra/esse/models/materials_category/pristine_structures/two_dimensional/slab_strained_supercell_with_gap.py +1151 -0
  34. mat3ra/esse/models/materials_category/processed_structures/two_dimensional/passivation/configuration.py +17 -17
  35. mat3ra/esse/models/materials_category_components/entities/auxiliary/zero_dimensional/crystal_site.py +8 -8
  36. mat3ra/esse/models/materials_category_components/entities/auxiliary/zero_dimensional/point_defect_site.py +12 -12
  37. mat3ra/esse/models/materials_category_components/entities/auxiliary/zero_dimensional/void_region.py +12 -12
  38. mat3ra/esse/models/materials_category_components/entities/core/three_dimensional/crystal.py +8 -8
  39. mat3ra/esse/models/materials_category_components/entities/core/two_dimensional/vacuum.py +12 -12
  40. mat3ra/esse/models/materials_category_components/entities/reusable/one_dimensional/crystal_lattice_lines.py +8 -8
  41. mat3ra/esse/models/materials_category_components/entities/reusable/one_dimensional/crystal_lattice_lines_unique_repeated.py +8 -8
  42. mat3ra/esse/models/materials_category_components/entities/reusable/three_dimensional/crystal_lattice_base.py +8 -8
  43. mat3ra/esse/models/materials_category_components/entities/reusable/three_dimensional/strained_non_uniform.py +12 -12
  44. mat3ra/esse/models/materials_category_components/entities/reusable/three_dimensional/strained_uniform.py +12 -12
  45. mat3ra/esse/models/materials_category_components/entities/reusable/three_dimensional/supercell.py +12 -12
  46. mat3ra/esse/models/materials_category_components/entities/reusable/two_dimensional/crystal_lattice_planes.py +8 -8
  47. mat3ra/esse/models/materials_category_components/entities/reusable/two_dimensional/slab_stack_configuration.py +52 -52
  48. mat3ra/esse/models/materials_category_components/operations/core/modifications/perturb.py +12 -12
  49. mat3ra/esse/models/methods_directory/physical/psp/__init__.py +2 -2
  50. mat3ra/esse/models/methods_directory/physical/psp/file.py +2 -2
  51. mat3ra/esse/models/methods_directory/physical/psp/file_data_item.py +2 -2
  52. mat3ra/esse/models/properties_directory/derived_properties.py +6 -6
  53. mat3ra/esse/models/properties_directory/elemental/atomic_radius.py +1 -1
  54. mat3ra/esse/models/properties_directory/elemental/electronegativity.py +1 -2
  55. mat3ra/esse/models/properties_directory/elemental/ionization_potential.py +3 -4
  56. mat3ra/esse/models/properties_directory/jupyter_notebook_endpoint.py +20 -0
  57. mat3ra/esse/models/properties_directory/non_scalar/average_potential_profile.py +4 -8
  58. mat3ra/esse/models/properties_directory/non_scalar/band_gaps.py +2 -2
  59. mat3ra/esse/models/properties_directory/non_scalar/band_structure.py +5 -9
  60. mat3ra/esse/models/properties_directory/non_scalar/charge_density_profile.py +4 -8
  61. mat3ra/esse/models/properties_directory/non_scalar/density_of_states.py +5 -8
  62. mat3ra/esse/models/properties_directory/non_scalar/dielectric_tensor.py +2 -2
  63. mat3ra/esse/models/properties_directory/non_scalar/file_content.py +2 -2
  64. mat3ra/esse/models/properties_directory/non_scalar/final_structure.py +22 -0
  65. mat3ra/esse/models/properties_directory/non_scalar/hubbard_u.py +4 -4
  66. mat3ra/esse/models/properties_directory/non_scalar/hubbard_v.py +3 -4
  67. mat3ra/esse/models/properties_directory/non_scalar/hubbard_v_nn.py +3 -4
  68. mat3ra/esse/models/properties_directory/non_scalar/is_relaxed.py +22 -0
  69. mat3ra/esse/models/properties_directory/non_scalar/phonon_dispersions.py +10 -14
  70. mat3ra/esse/models/properties_directory/non_scalar/phonon_dos.py +10 -14
  71. mat3ra/esse/models/properties_directory/non_scalar/potential_profile.py +8 -12
  72. mat3ra/esse/models/properties_directory/non_scalar/reaction_energy_profile.py +8 -12
  73. mat3ra/esse/models/properties_directory/non_scalar/stress_tensor.py +5 -7
  74. mat3ra/esse/models/properties_directory/non_scalar/total_energy_contributions.py +64 -51
  75. mat3ra/esse/models/properties_directory/non_scalar/vibrational_spectrum.py +10 -14
  76. mat3ra/esse/models/properties_directory/non_scalar/workflow.py +2234 -0
  77. mat3ra/esse/models/properties_directory/reusable/__init__.py +3 -0
  78. mat3ra/esse/models/properties_directory/reusable/hubbard_parameters.py +48 -0
  79. mat3ra/esse/models/properties_directory/scalar/electron_affinity.py +1 -1
  80. mat3ra/esse/models/properties_directory/scalar/fermi_energy.py +1 -1
  81. mat3ra/esse/models/properties_directory/scalar/formation_energy.py +1 -1
  82. mat3ra/esse/models/properties_directory/scalar/ionization_potential.py +3 -3
  83. mat3ra/esse/models/properties_directory/scalar/pressure.py +3 -4
  84. mat3ra/esse/models/properties_directory/scalar/reaction_energy_barrier.py +3 -3
  85. mat3ra/esse/models/properties_directory/scalar/surface_energy.py +3 -3
  86. mat3ra/esse/models/properties_directory/scalar/total_energy.py +3 -3
  87. mat3ra/esse/models/properties_directory/scalar/total_force.py +3 -4
  88. mat3ra/esse/models/properties_directory/scalar/valence_band_offset.py +3 -3
  89. mat3ra/esse/models/properties_directory/scalar/zero_point_energy.py +3 -3
  90. mat3ra/esse/models/properties_directory/structural/atomic_forces.py +5 -5
  91. mat3ra/esse/models/properties_directory/structural/basis/atomic_constraints_property.py +3 -3
  92. mat3ra/esse/models/properties_directory/structural/basis/boundary_conditions.py +30 -0
  93. mat3ra/esse/models/properties_directory/structural/basis/predicted_properties.py +82 -0
  94. mat3ra/esse/models/properties_directory/structural/lattice/units/__init__.py +23 -1
  95. mat3ra/esse/models/properties_directory/structural/magnetic_moments.py +5 -5
  96. mat3ra/esse/models/properties_directory/structural/molecular_pattern.py +5 -5
  97. mat3ra/esse/models/properties_directory/structural/patterns/functional_group.py +1 -1
  98. mat3ra/esse/models/properties_directory/structural/patterns/ring.py +1 -1
  99. mat3ra/esse/models/properties_directory/structural/patterns/special_bond.py +1 -1
  100. mat3ra/esse/models/properties_directory/workflow/convergence/electronic.py +4 -4
  101. mat3ra/esse/models/properties_directory/workflow/convergence/ionic.py +6 -6
  102. mat3ra/esse/models/property/base.py +1492 -14
  103. mat3ra/esse/models/property/holder.py +3568 -0
  104. mat3ra/esse/models/property/meta_holder/Reusable_schema_for_energy_value_with_unit_corresponding_to_a_specific_accuracy_level__e/__init__.py +3 -0
  105. mat3ra/esse/models/property/meta_holder/Reusable_schema_for_energy_value_with_unit_corresponding_to_a_specific_accuracy_level__e/g.py +31 -0
  106. mat3ra/esse/models/property/meta_holder.py +140 -0
  107. mat3ra/esse/models/property/proto_holder.py +86 -0
  108. mat3ra/esse/models/property/raw.py +27 -11
  109. mat3ra/esse/models/property/source.py +26 -3
  110. mat3ra/esse/models/workflow/__init__.py +54 -54
  111. mat3ra/esse/models/workflow/base_flow.py +4 -4
  112. mat3ra/esse/models/workflow/subworkflow/__init__.py +13 -13
  113. mat3ra/esse/models/workflow/subworkflow/unit.py +10 -10
  114. mat3ra/esse/models/workflow/unit/__init__.py +12 -12
  115. mat3ra/esse/models/workflow/unit/io/__init__.py +4 -4
  116. mat3ra/esse/models/workflow/unit/io/db.py +2 -2
  117. mat3ra/esse/models/workflow/unit/io/object_storage.py +1 -1
  118. {mat3ra_esse-2025.8.20.post0.dist-info → mat3ra_esse-2025.10.8.post0.dist-info}/METADATA +1 -1
  119. {mat3ra_esse-2025.8.20.post0.dist-info → mat3ra_esse-2025.10.8.post0.dist-info}/RECORD +122 -103
  120. mat3ra/esse/models/property/meta.py +0 -200
  121. {mat3ra_esse-2025.8.20.post0.dist-info → mat3ra_esse-2025.10.8.post0.dist-info}/WHEEL +0 -0
  122. {mat3ra_esse-2025.8.20.post0.dist-info → mat3ra_esse-2025.10.8.post0.dist-info}/licenses/LICENSE.md +0 -0
  123. {mat3ra_esse-2025.8.20.post0.dist-info → mat3ra_esse-2025.10.8.post0.dist-info}/top_level.txt +0 -0
@@ -419,7 +419,7 @@ class VolumeSchema(BaseModel):
419
419
  value: float
420
420
 
421
421
 
422
- class Name112(Enum):
422
+ class Name113(Enum):
423
423
  density = "density"
424
424
 
425
425
 
@@ -442,7 +442,7 @@ class ScalarSchema(BaseModel):
442
442
  value: float
443
443
 
444
444
 
445
- class Name113(Enum):
445
+ class Name114(Enum):
446
446
  symmetry = "symmetry"
447
447
 
448
448
 
@@ -462,7 +462,7 @@ class SymmetrySchema(BaseModel):
462
462
  name: Literal["2#-datamodel-code-generator-#-object-#-special-#"]
463
463
 
464
464
 
465
- class Name114(Enum):
465
+ class Name115(Enum):
466
466
  elemental_ratio = "elemental_ratio"
467
467
 
468
468
 
@@ -475,7 +475,7 @@ class ElementalRatio(BaseModel):
475
475
  """
476
476
 
477
477
 
478
- class Name115(Enum):
478
+ class Name116(Enum):
479
479
  p_norm = "p-norm"
480
480
 
481
481
 
@@ -488,7 +488,7 @@ class PNorm(BaseModel):
488
488
  value: float
489
489
 
490
490
 
491
- class Name116(Enum):
491
+ class Name117(Enum):
492
492
  inchi = "inchi"
493
493
 
494
494
 
@@ -497,7 +497,7 @@ class InChIRepresentationSchema(BaseModel):
497
497
  value: str
498
498
 
499
499
 
500
- class Name117(Enum):
500
+ class Name118(Enum):
501
501
  inchi_key = "inchi_key"
502
502
 
503
503
 
@@ -576,7 +576,7 @@ class FileSourceSchema(BaseModel):
576
576
  """
577
577
 
578
578
 
579
- class Name118(Enum):
579
+ class Name119(Enum):
580
580
  default = "default"
581
581
  atomsTooClose = "atomsTooClose"
582
582
  atomsOverlap = "atomsOverlap"
@@ -589,7 +589,7 @@ class Severity(Enum):
589
589
 
590
590
 
591
591
  class MaterialConsistencyCheckSchema(BaseModel):
592
- name: Name118
592
+ name: Name119
593
593
  """
594
594
  Name of the consistency check that is performed, which is listed in an enum.
595
595
  """
@@ -895,7 +895,7 @@ class LatticeSchema14(BaseModel):
895
895
  )
896
896
 
897
897
 
898
- class Name119(Enum):
898
+ class Name120(Enum):
899
899
  volume = "volume"
900
900
 
901
901
 
@@ -909,7 +909,7 @@ class VolumeSchema14(BaseModel):
909
909
  value: float
910
910
 
911
911
 
912
- class Name120(Enum):
912
+ class Name121(Enum):
913
913
  density = "density"
914
914
 
915
915
 
@@ -932,7 +932,7 @@ class ScalarSchema15(BaseModel):
932
932
  value: float
933
933
 
934
934
 
935
- class Name121(Enum):
935
+ class Name122(Enum):
936
936
  symmetry = "symmetry"
937
937
 
938
938
 
@@ -952,7 +952,7 @@ class SymmetrySchema14(BaseModel):
952
952
  name: Literal["2#-datamodel-code-generator-#-object-#-special-#"]
953
953
 
954
954
 
955
- class Name122(Enum):
955
+ class Name123(Enum):
956
956
  elemental_ratio = "elemental_ratio"
957
957
 
958
958
 
@@ -965,7 +965,7 @@ class ElementalRatio14(BaseModel):
965
965
  """
966
966
 
967
967
 
968
- class Name123(Enum):
968
+ class Name124(Enum):
969
969
  p_norm = "p-norm"
970
970
 
971
971
 
@@ -978,7 +978,7 @@ class PNorm14(BaseModel):
978
978
  value: float
979
979
 
980
980
 
981
- class Name124(Enum):
981
+ class Name125(Enum):
982
982
  inchi = "inchi"
983
983
 
984
984
 
@@ -987,7 +987,7 @@ class InChIRepresentationSchema14(BaseModel):
987
987
  value: str
988
988
 
989
989
 
990
- class Name125(Enum):
990
+ class Name126(Enum):
991
991
  inchi_key = "inchi_key"
992
992
 
993
993
 
@@ -1020,14 +1020,14 @@ class DerivedPropertiesSchema14(
1020
1020
  ] = Field(..., discriminator="name")
1021
1021
 
1022
1022
 
1023
- class Name126(Enum):
1023
+ class Name127(Enum):
1024
1024
  default = "default"
1025
1025
  atomsTooClose = "atomsTooClose"
1026
1026
  atomsOverlap = "atomsOverlap"
1027
1027
 
1028
1028
 
1029
1029
  class MaterialConsistencyCheckSchema14(BaseModel):
1030
- name: Name126
1030
+ name: Name127
1031
1031
  """
1032
1032
  Name of the consistency check that is performed, which is listed in an enum.
1033
1033
  """
@@ -1357,7 +1357,7 @@ class LatticeSchema15(BaseModel):
1357
1357
  )
1358
1358
 
1359
1359
 
1360
- class Name127(Enum):
1360
+ class Name128(Enum):
1361
1361
  volume = "volume"
1362
1362
 
1363
1363
 
@@ -1371,7 +1371,7 @@ class VolumeSchema15(BaseModel):
1371
1371
  value: float
1372
1372
 
1373
1373
 
1374
- class Name128(Enum):
1374
+ class Name129(Enum):
1375
1375
  density = "density"
1376
1376
 
1377
1377
 
@@ -1394,7 +1394,7 @@ class ScalarSchema16(BaseModel):
1394
1394
  value: float
1395
1395
 
1396
1396
 
1397
- class Name129(Enum):
1397
+ class Name130(Enum):
1398
1398
  symmetry = "symmetry"
1399
1399
 
1400
1400
 
@@ -1414,7 +1414,7 @@ class SymmetrySchema15(BaseModel):
1414
1414
  name: Literal["2#-datamodel-code-generator-#-object-#-special-#"]
1415
1415
 
1416
1416
 
1417
- class Name130(Enum):
1417
+ class Name131(Enum):
1418
1418
  elemental_ratio = "elemental_ratio"
1419
1419
 
1420
1420
 
@@ -1427,7 +1427,7 @@ class ElementalRatio15(BaseModel):
1427
1427
  """
1428
1428
 
1429
1429
 
1430
- class Name131(Enum):
1430
+ class Name132(Enum):
1431
1431
  p_norm = "p-norm"
1432
1432
 
1433
1433
 
@@ -1440,7 +1440,7 @@ class PNorm15(BaseModel):
1440
1440
  value: float
1441
1441
 
1442
1442
 
1443
- class Name132(Enum):
1443
+ class Name133(Enum):
1444
1444
  inchi = "inchi"
1445
1445
 
1446
1446
 
@@ -1449,7 +1449,7 @@ class InChIRepresentationSchema15(BaseModel):
1449
1449
  value: str
1450
1450
 
1451
1451
 
1452
- class Name133(Enum):
1452
+ class Name134(Enum):
1453
1453
  inchi_key = "inchi_key"
1454
1454
 
1455
1455
 
@@ -1482,14 +1482,14 @@ class DerivedPropertiesSchema15(
1482
1482
  ] = Field(..., discriminator="name")
1483
1483
 
1484
1484
 
1485
- class Name134(Enum):
1485
+ class Name135(Enum):
1486
1486
  default = "default"
1487
1487
  atomsTooClose = "atomsTooClose"
1488
1488
  atomsOverlap = "atomsOverlap"
1489
1489
 
1490
1490
 
1491
1491
  class MaterialConsistencyCheckSchema15(BaseModel):
1492
- name: Name134
1492
+ name: Name135
1493
1493
  """
1494
1494
  Name of the consistency check that is performed, which is listed in an enum.
1495
1495
  """
@@ -1789,7 +1789,7 @@ class LatticeSchema16(BaseModel):
1789
1789
  )
1790
1790
 
1791
1791
 
1792
- class Name135(Enum):
1792
+ class Name136(Enum):
1793
1793
  volume = "volume"
1794
1794
 
1795
1795
 
@@ -1803,7 +1803,7 @@ class VolumeSchema16(BaseModel):
1803
1803
  value: float
1804
1804
 
1805
1805
 
1806
- class Name136(Enum):
1806
+ class Name137(Enum):
1807
1807
  density = "density"
1808
1808
 
1809
1809
 
@@ -1826,7 +1826,7 @@ class ScalarSchema17(BaseModel):
1826
1826
  value: float
1827
1827
 
1828
1828
 
1829
- class Name137(Enum):
1829
+ class Name138(Enum):
1830
1830
  symmetry = "symmetry"
1831
1831
 
1832
1832
 
@@ -1846,7 +1846,7 @@ class SymmetrySchema16(BaseModel):
1846
1846
  name: Literal["2#-datamodel-code-generator-#-object-#-special-#"]
1847
1847
 
1848
1848
 
1849
- class Name138(Enum):
1849
+ class Name139(Enum):
1850
1850
  elemental_ratio = "elemental_ratio"
1851
1851
 
1852
1852
 
@@ -1859,7 +1859,7 @@ class ElementalRatio16(BaseModel):
1859
1859
  """
1860
1860
 
1861
1861
 
1862
- class Name139(Enum):
1862
+ class Name140(Enum):
1863
1863
  p_norm = "p-norm"
1864
1864
 
1865
1865
 
@@ -1872,7 +1872,7 @@ class PNorm16(BaseModel):
1872
1872
  value: float
1873
1873
 
1874
1874
 
1875
- class Name140(Enum):
1875
+ class Name141(Enum):
1876
1876
  inchi = "inchi"
1877
1877
 
1878
1878
 
@@ -1881,7 +1881,7 @@ class InChIRepresentationSchema16(BaseModel):
1881
1881
  value: str
1882
1882
 
1883
1883
 
1884
- class Name141(Enum):
1884
+ class Name142(Enum):
1885
1885
  inchi_key = "inchi_key"
1886
1886
 
1887
1887
 
@@ -1914,14 +1914,14 @@ class DerivedPropertiesSchema16(
1914
1914
  ] = Field(..., discriminator="name")
1915
1915
 
1916
1916
 
1917
- class Name142(Enum):
1917
+ class Name143(Enum):
1918
1918
  default = "default"
1919
1919
  atomsTooClose = "atomsTooClose"
1920
1920
  atomsOverlap = "atomsOverlap"
1921
1921
 
1922
1922
 
1923
1923
  class MaterialConsistencyCheckSchema16(BaseModel):
1924
- name: Name142
1924
+ name: Name143
1925
1925
  """
1926
1926
  Name of the consistency check that is performed, which is listed in an enum.
1927
1927
  """
@@ -2227,7 +2227,7 @@ class LatticeSchema17(BaseModel):
2227
2227
  )
2228
2228
 
2229
2229
 
2230
- class Name143(Enum):
2230
+ class Name144(Enum):
2231
2231
  volume = "volume"
2232
2232
 
2233
2233
 
@@ -2241,7 +2241,7 @@ class VolumeSchema17(BaseModel):
2241
2241
  value: float
2242
2242
 
2243
2243
 
2244
- class Name144(Enum):
2244
+ class Name145(Enum):
2245
2245
  density = "density"
2246
2246
 
2247
2247
 
@@ -2264,7 +2264,7 @@ class ScalarSchema18(BaseModel):
2264
2264
  value: float
2265
2265
 
2266
2266
 
2267
- class Name145(Enum):
2267
+ class Name146(Enum):
2268
2268
  symmetry = "symmetry"
2269
2269
 
2270
2270
 
@@ -2284,7 +2284,7 @@ class SymmetrySchema17(BaseModel):
2284
2284
  name: Literal["2#-datamodel-code-generator-#-object-#-special-#"]
2285
2285
 
2286
2286
 
2287
- class Name146(Enum):
2287
+ class Name147(Enum):
2288
2288
  elemental_ratio = "elemental_ratio"
2289
2289
 
2290
2290
 
@@ -2297,7 +2297,7 @@ class ElementalRatio17(BaseModel):
2297
2297
  """
2298
2298
 
2299
2299
 
2300
- class Name147(Enum):
2300
+ class Name148(Enum):
2301
2301
  p_norm = "p-norm"
2302
2302
 
2303
2303
 
@@ -2310,7 +2310,7 @@ class PNorm17(BaseModel):
2310
2310
  value: float
2311
2311
 
2312
2312
 
2313
- class Name148(Enum):
2313
+ class Name149(Enum):
2314
2314
  inchi = "inchi"
2315
2315
 
2316
2316
 
@@ -2319,7 +2319,7 @@ class InChIRepresentationSchema17(BaseModel):
2319
2319
  value: str
2320
2320
 
2321
2321
 
2322
- class Name149(Enum):
2322
+ class Name150(Enum):
2323
2323
  inchi_key = "inchi_key"
2324
2324
 
2325
2325
 
@@ -2352,14 +2352,14 @@ class DerivedPropertiesSchema17(
2352
2352
  ] = Field(..., discriminator="name")
2353
2353
 
2354
2354
 
2355
- class Name150(Enum):
2355
+ class Name151(Enum):
2356
2356
  default = "default"
2357
2357
  atomsTooClose = "atomsTooClose"
2358
2358
  atomsOverlap = "atomsOverlap"
2359
2359
 
2360
2360
 
2361
2361
  class MaterialConsistencyCheckSchema17(BaseModel):
2362
- name: Name150
2362
+ name: Name151
2363
2363
  """
2364
2364
  Name of the consistency check that is performed, which is listed in an enum.
2365
2365
  """
@@ -2714,7 +2714,7 @@ class LatticeSchema18(BaseModel):
2714
2714
  )
2715
2715
 
2716
2716
 
2717
- class Name151(Enum):
2717
+ class Name152(Enum):
2718
2718
  volume = "volume"
2719
2719
 
2720
2720
 
@@ -2728,7 +2728,7 @@ class VolumeSchema18(BaseModel):
2728
2728
  value: float
2729
2729
 
2730
2730
 
2731
- class Name152(Enum):
2731
+ class Name153(Enum):
2732
2732
  density = "density"
2733
2733
 
2734
2734
 
@@ -2751,7 +2751,7 @@ class ScalarSchema19(BaseModel):
2751
2751
  value: float
2752
2752
 
2753
2753
 
2754
- class Name153(Enum):
2754
+ class Name154(Enum):
2755
2755
  symmetry = "symmetry"
2756
2756
 
2757
2757
 
@@ -2771,7 +2771,7 @@ class SymmetrySchema18(BaseModel):
2771
2771
  name: Literal["2#-datamodel-code-generator-#-object-#-special-#"]
2772
2772
 
2773
2773
 
2774
- class Name154(Enum):
2774
+ class Name155(Enum):
2775
2775
  elemental_ratio = "elemental_ratio"
2776
2776
 
2777
2777
 
@@ -2784,7 +2784,7 @@ class ElementalRatio18(BaseModel):
2784
2784
  """
2785
2785
 
2786
2786
 
2787
- class Name155(Enum):
2787
+ class Name156(Enum):
2788
2788
  p_norm = "p-norm"
2789
2789
 
2790
2790
 
@@ -2797,7 +2797,7 @@ class PNorm18(BaseModel):
2797
2797
  value: float
2798
2798
 
2799
2799
 
2800
- class Name156(Enum):
2800
+ class Name157(Enum):
2801
2801
  inchi = "inchi"
2802
2802
 
2803
2803
 
@@ -2806,7 +2806,7 @@ class InChIRepresentationSchema18(BaseModel):
2806
2806
  value: str
2807
2807
 
2808
2808
 
2809
- class Name157(Enum):
2809
+ class Name158(Enum):
2810
2810
  inchi_key = "inchi_key"
2811
2811
 
2812
2812
 
@@ -2839,14 +2839,14 @@ class DerivedPropertiesSchema18(
2839
2839
  ] = Field(..., discriminator="name")
2840
2840
 
2841
2841
 
2842
- class Name158(Enum):
2842
+ class Name159(Enum):
2843
2843
  default = "default"
2844
2844
  atomsTooClose = "atomsTooClose"
2845
2845
  atomsOverlap = "atomsOverlap"
2846
2846
 
2847
2847
 
2848
2848
  class MaterialConsistencyCheckSchema18(BaseModel):
2849
- name: Name158
2849
+ name: Name159
2850
2850
  """
2851
2851
  Name of the consistency check that is performed, which is listed in an enum.
2852
2852
  """
@@ -285,30 +285,30 @@ class VolumeSchema(BaseModel):
285
285
  value: float
286
286
 
287
287
 
288
- class Name487(Enum):
288
+ class Name536(Enum):
289
289
  density = "density"
290
290
 
291
291
 
292
- class Units198(Enum):
292
+ class Units239(Enum):
293
293
  g_cm_3 = "g/cm^3"
294
294
 
295
295
 
296
296
  class DensitySchema(BaseModel):
297
297
  name: Literal["1#-datamodel-code-generator-#-object-#-special-#"]
298
- units: Optional[Units198] = None
298
+ units: Optional[Units239] = None
299
299
  value: float
300
300
 
301
301
 
302
- class Units199(Enum):
302
+ class Units240(Enum):
303
303
  angstrom = "angstrom"
304
304
 
305
305
 
306
306
  class ScalarSchema(BaseModel):
307
- units: Optional[Units199] = None
307
+ units: Optional[Units240] = None
308
308
  value: float
309
309
 
310
310
 
311
- class Name488(Enum):
311
+ class Name537(Enum):
312
312
  symmetry = "symmetry"
313
313
 
314
314
 
@@ -328,7 +328,7 @@ class SymmetrySchema(BaseModel):
328
328
  name: Literal["2#-datamodel-code-generator-#-object-#-special-#"]
329
329
 
330
330
 
331
- class Name489(Enum):
331
+ class Name538(Enum):
332
332
  elemental_ratio = "elemental_ratio"
333
333
 
334
334
 
@@ -341,7 +341,7 @@ class ElementalRatio(BaseModel):
341
341
  """
342
342
 
343
343
 
344
- class Name490(Enum):
344
+ class Name539(Enum):
345
345
  p_norm = "p-norm"
346
346
 
347
347
 
@@ -354,7 +354,7 @@ class PNorm(BaseModel):
354
354
  value: float
355
355
 
356
356
 
357
- class Name491(Enum):
357
+ class Name540(Enum):
358
358
  inchi = "inchi"
359
359
 
360
360
 
@@ -363,7 +363,7 @@ class InChIRepresentationSchema(BaseModel):
363
363
  value: str
364
364
 
365
365
 
366
- class Name492(Enum):
366
+ class Name541(Enum):
367
367
  inchi_key = "inchi_key"
368
368
 
369
369
 
@@ -442,7 +442,7 @@ class FileSourceSchema(BaseModel):
442
442
  """
443
443
 
444
444
 
445
- class Name493(Enum):
445
+ class Name542(Enum):
446
446
  default = "default"
447
447
  atomsTooClose = "atomsTooClose"
448
448
  atomsOverlap = "atomsOverlap"
@@ -455,7 +455,7 @@ class Severity(Enum):
455
455
 
456
456
 
457
457
  class MaterialConsistencyCheckSchema(BaseModel):
458
- name: Name493
458
+ name: Name542
459
459
  """
460
460
  Name of the consistency check that is performed, which is listed in an enum.
461
461
  """
@@ -732,44 +732,44 @@ class LatticeSchema57(BaseModel):
732
732
  )
733
733
 
734
734
 
735
- class Name494(Enum):
735
+ class Name543(Enum):
736
736
  volume = "volume"
737
737
 
738
738
 
739
- class Units200(Enum):
739
+ class Units241(Enum):
740
740
  angstrom_3 = "angstrom^3"
741
741
 
742
742
 
743
743
  class VolumeSchema58(BaseModel):
744
744
  name: Literal["0#-datamodel-code-generator-#-object-#-special-#"]
745
- units: Optional[Units200] = None
745
+ units: Optional[Units241] = None
746
746
  value: float
747
747
 
748
748
 
749
- class Name495(Enum):
749
+ class Name544(Enum):
750
750
  density = "density"
751
751
 
752
752
 
753
- class Units201(Enum):
753
+ class Units242(Enum):
754
754
  g_cm_3 = "g/cm^3"
755
755
 
756
756
 
757
757
  class DensitySchema59(BaseModel):
758
758
  name: Literal["1#-datamodel-code-generator-#-object-#-special-#"]
759
- units: Optional[Units201] = None
759
+ units: Optional[Units242] = None
760
760
  value: float
761
761
 
762
762
 
763
- class Units202(Enum):
763
+ class Units243(Enum):
764
764
  angstrom = "angstrom"
765
765
 
766
766
 
767
- class ScalarSchema59(BaseModel):
768
- units: Optional[Units202] = None
767
+ class ScalarSchema73(BaseModel):
768
+ units: Optional[Units243] = None
769
769
  value: float
770
770
 
771
771
 
772
- class Name496(Enum):
772
+ class Name545(Enum):
773
773
  symmetry = "symmetry"
774
774
 
775
775
 
@@ -782,14 +782,14 @@ class SymmetrySchema58(BaseModel):
782
782
  """
783
783
  space group symbol in Hermann–Mauguin notation
784
784
  """
785
- tolerance: Optional[ScalarSchema59] = Field(None, title="scalar schema")
785
+ tolerance: Optional[ScalarSchema73] = Field(None, title="scalar schema")
786
786
  """
787
787
  tolerance used for symmetry calculation
788
788
  """
789
789
  name: Literal["2#-datamodel-code-generator-#-object-#-special-#"]
790
790
 
791
791
 
792
- class Name497(Enum):
792
+ class Name546(Enum):
793
793
  elemental_ratio = "elemental_ratio"
794
794
 
795
795
 
@@ -802,7 +802,7 @@ class ElementalRatio59(BaseModel):
802
802
  """
803
803
 
804
804
 
805
- class Name498(Enum):
805
+ class Name547(Enum):
806
806
  p_norm = "p-norm"
807
807
 
808
808
 
@@ -815,7 +815,7 @@ class PNorm58(BaseModel):
815
815
  value: float
816
816
 
817
817
 
818
- class Name499(Enum):
818
+ class Name548(Enum):
819
819
  inchi = "inchi"
820
820
 
821
821
 
@@ -824,7 +824,7 @@ class InChIRepresentationSchema59(BaseModel):
824
824
  value: str
825
825
 
826
826
 
827
- class Name500(Enum):
827
+ class Name549(Enum):
828
828
  inchi_key = "inchi_key"
829
829
 
830
830
 
@@ -857,14 +857,14 @@ class DerivedPropertiesSchema59(
857
857
  ] = Field(..., discriminator="name")
858
858
 
859
859
 
860
- class Name501(Enum):
860
+ class Name550(Enum):
861
861
  default = "default"
862
862
  atomsTooClose = "atomsTooClose"
863
863
  atomsOverlap = "atomsOverlap"
864
864
 
865
865
 
866
866
  class MaterialConsistencyCheckSchema58(BaseModel):
867
- name: Name501
867
+ name: Name550
868
868
  """
869
869
  Name of the consistency check that is performed, which is listed in an enum.
870
870
  """