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,30 +419,30 @@ class VolumeSchema(BaseModel):
419
419
  value: float
420
420
 
421
421
 
422
- class Name604(Enum):
422
+ class Name658(Enum):
423
423
  density = "density"
424
424
 
425
425
 
426
- class Units249(Enum):
426
+ class Units290(Enum):
427
427
  g_cm_3 = "g/cm^3"
428
428
 
429
429
 
430
430
  class DensitySchema(BaseModel):
431
431
  name: Literal["1#-datamodel-code-generator-#-object-#-special-#"]
432
- units: Optional[Units249] = None
432
+ units: Optional[Units290] = None
433
433
  value: float
434
434
 
435
435
 
436
- class Units250(Enum):
436
+ class Units291(Enum):
437
437
  angstrom = "angstrom"
438
438
 
439
439
 
440
440
  class ScalarSchema(BaseModel):
441
- units: Optional[Units250] = None
441
+ units: Optional[Units291] = None
442
442
  value: float
443
443
 
444
444
 
445
- class Name605(Enum):
445
+ class Name659(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 Name606(Enum):
465
+ class Name660(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 Name607(Enum):
478
+ class Name661(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 Name608(Enum):
491
+ class Name662(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 Name609(Enum):
500
+ class Name663(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 Name610(Enum):
579
+ class Name664(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: Name610
592
+ name: Name664
593
593
  """
594
594
  Name of the consistency check that is performed, which is listed in an enum.
595
595
  """
@@ -857,7 +857,7 @@ class LatticeVectorsSchema70(BaseModel):
857
857
  units: Optional[LatticeVectorsUnitsEnum] = Field("angstrom", title="lattice vectors units enum")
858
858
 
859
859
 
860
- class LatticeUnitsSchema71(BaseModel):
860
+ class LatticeUnitsSchema70(BaseModel):
861
861
  length: Optional[LatticeUnitsLengthEnum] = Field("angstrom", title="lattice units length enum")
862
862
  angle: Optional[LatticeUnitsAngleEnum] = Field("degree", title="lattice units angle enum")
863
863
 
@@ -889,50 +889,50 @@ class LatticeSchema70(BaseModel):
889
889
  """
890
890
  vectors: Optional[LatticeVectorsSchema70] = Field(None, title="lattice vectors schema")
891
891
  type: Optional[LatticeTypeEnum] = Field("TRI", title="lattice type enum")
892
- units: Optional[LatticeUnitsSchema71] = Field(
893
- default_factory=lambda: LatticeUnitsSchema71.model_validate({"length": "angstrom", "angle": "degree"}),
892
+ units: Optional[LatticeUnitsSchema70] = Field(
893
+ default_factory=lambda: LatticeUnitsSchema70.model_validate({"length": "angstrom", "angle": "degree"}),
894
894
  title="Lattice units schema",
895
895
  )
896
896
 
897
897
 
898
- class Name611(Enum):
898
+ class Name665(Enum):
899
899
  volume = "volume"
900
900
 
901
901
 
902
- class Units251(Enum):
902
+ class Units292(Enum):
903
903
  angstrom_3 = "angstrom^3"
904
904
 
905
905
 
906
906
  class VolumeSchema70(BaseModel):
907
907
  name: Literal["0#-datamodel-code-generator-#-object-#-special-#"]
908
- units: Optional[Units251] = None
908
+ units: Optional[Units292] = None
909
909
  value: float
910
910
 
911
911
 
912
- class Name612(Enum):
912
+ class Name666(Enum):
913
913
  density = "density"
914
914
 
915
915
 
916
- class Units252(Enum):
916
+ class Units293(Enum):
917
917
  g_cm_3 = "g/cm^3"
918
918
 
919
919
 
920
920
  class DensitySchema71(BaseModel):
921
921
  name: Literal["1#-datamodel-code-generator-#-object-#-special-#"]
922
- units: Optional[Units252] = None
922
+ units: Optional[Units293] = None
923
923
  value: float
924
924
 
925
925
 
926
- class Units253(Enum):
926
+ class Units294(Enum):
927
927
  angstrom = "angstrom"
928
928
 
929
929
 
930
- class ScalarSchema72(BaseModel):
931
- units: Optional[Units253] = None
930
+ class ScalarSchema86(BaseModel):
931
+ units: Optional[Units294] = None
932
932
  value: float
933
933
 
934
934
 
935
- class Name613(Enum):
935
+ class Name667(Enum):
936
936
  symmetry = "symmetry"
937
937
 
938
938
 
@@ -945,14 +945,14 @@ class SymmetrySchema70(BaseModel):
945
945
  """
946
946
  space group symbol in Hermann–Mauguin notation
947
947
  """
948
- tolerance: Optional[ScalarSchema72] = Field(None, title="scalar schema")
948
+ tolerance: Optional[ScalarSchema86] = Field(None, title="scalar schema")
949
949
  """
950
950
  tolerance used for symmetry calculation
951
951
  """
952
952
  name: Literal["2#-datamodel-code-generator-#-object-#-special-#"]
953
953
 
954
954
 
955
- class Name614(Enum):
955
+ class Name668(Enum):
956
956
  elemental_ratio = "elemental_ratio"
957
957
 
958
958
 
@@ -965,7 +965,7 @@ class ElementalRatio71(BaseModel):
965
965
  """
966
966
 
967
967
 
968
- class Name615(Enum):
968
+ class Name669(Enum):
969
969
  p_norm = "p-norm"
970
970
 
971
971
 
@@ -978,7 +978,7 @@ class PNorm71(BaseModel):
978
978
  value: float
979
979
 
980
980
 
981
- class Name616(Enum):
981
+ class Name670(Enum):
982
982
  inchi = "inchi"
983
983
 
984
984
 
@@ -987,7 +987,7 @@ class InChIRepresentationSchema71(BaseModel):
987
987
  value: str
988
988
 
989
989
 
990
- class Name617(Enum):
990
+ class Name671(Enum):
991
991
  inchi_key = "inchi_key"
992
992
 
993
993
 
@@ -1020,14 +1020,14 @@ class DerivedPropertiesSchema71(
1020
1020
  ] = Field(..., discriminator="name")
1021
1021
 
1022
1022
 
1023
- class Name618(Enum):
1023
+ class Name672(Enum):
1024
1024
  default = "default"
1025
1025
  atomsTooClose = "atomsTooClose"
1026
1026
  atomsOverlap = "atomsOverlap"
1027
1027
 
1028
1028
 
1029
1029
  class MaterialConsistencyCheckSchema70(BaseModel):
1030
- name: Name618
1030
+ name: Name672
1031
1031
  """
1032
1032
  Name of the consistency check that is performed, which is listed in an enum.
1033
1033
  """
@@ -1306,7 +1306,7 @@ class LatticeVectorsSchema71(BaseModel):
1306
1306
  units: Optional[LatticeVectorsUnitsEnum] = Field("angstrom", title="lattice vectors units enum")
1307
1307
 
1308
1308
 
1309
- class LatticeUnitsSchema72(BaseModel):
1309
+ class LatticeUnitsSchema71(BaseModel):
1310
1310
  length: Optional[LatticeUnitsLengthEnum] = Field("angstrom", title="lattice units length enum")
1311
1311
  angle: Optional[LatticeUnitsAngleEnum] = Field("degree", title="lattice units angle enum")
1312
1312
 
@@ -1338,50 +1338,50 @@ class LatticeSchema71(BaseModel):
1338
1338
  """
1339
1339
  vectors: Optional[LatticeVectorsSchema71] = Field(None, title="lattice vectors schema")
1340
1340
  type: Optional[LatticeTypeEnum] = Field("TRI", title="lattice type enum")
1341
- units: Optional[LatticeUnitsSchema72] = Field(
1342
- default_factory=lambda: LatticeUnitsSchema72.model_validate({"length": "angstrom", "angle": "degree"}),
1341
+ units: Optional[LatticeUnitsSchema71] = Field(
1342
+ default_factory=lambda: LatticeUnitsSchema71.model_validate({"length": "angstrom", "angle": "degree"}),
1343
1343
  title="Lattice units schema",
1344
1344
  )
1345
1345
 
1346
1346
 
1347
- class Name619(Enum):
1347
+ class Name673(Enum):
1348
1348
  volume = "volume"
1349
1349
 
1350
1350
 
1351
- class Units254(Enum):
1351
+ class Units295(Enum):
1352
1352
  angstrom_3 = "angstrom^3"
1353
1353
 
1354
1354
 
1355
1355
  class VolumeSchema71(BaseModel):
1356
1356
  name: Literal["0#-datamodel-code-generator-#-object-#-special-#"]
1357
- units: Optional[Units254] = None
1357
+ units: Optional[Units295] = None
1358
1358
  value: float
1359
1359
 
1360
1360
 
1361
- class Name620(Enum):
1361
+ class Name674(Enum):
1362
1362
  density = "density"
1363
1363
 
1364
1364
 
1365
- class Units255(Enum):
1365
+ class Units296(Enum):
1366
1366
  g_cm_3 = "g/cm^3"
1367
1367
 
1368
1368
 
1369
1369
  class DensitySchema72(BaseModel):
1370
1370
  name: Literal["1#-datamodel-code-generator-#-object-#-special-#"]
1371
- units: Optional[Units255] = None
1371
+ units: Optional[Units296] = None
1372
1372
  value: float
1373
1373
 
1374
1374
 
1375
- class Units256(Enum):
1375
+ class Units297(Enum):
1376
1376
  angstrom = "angstrom"
1377
1377
 
1378
1378
 
1379
- class ScalarSchema73(BaseModel):
1380
- units: Optional[Units256] = None
1379
+ class ScalarSchema87(BaseModel):
1380
+ units: Optional[Units297] = None
1381
1381
  value: float
1382
1382
 
1383
1383
 
1384
- class Name621(Enum):
1384
+ class Name675(Enum):
1385
1385
  symmetry = "symmetry"
1386
1386
 
1387
1387
 
@@ -1394,14 +1394,14 @@ class SymmetrySchema71(BaseModel):
1394
1394
  """
1395
1395
  space group symbol in Hermann–Mauguin notation
1396
1396
  """
1397
- tolerance: Optional[ScalarSchema73] = Field(None, title="scalar schema")
1397
+ tolerance: Optional[ScalarSchema87] = Field(None, title="scalar schema")
1398
1398
  """
1399
1399
  tolerance used for symmetry calculation
1400
1400
  """
1401
1401
  name: Literal["2#-datamodel-code-generator-#-object-#-special-#"]
1402
1402
 
1403
1403
 
1404
- class Name622(Enum):
1404
+ class Name676(Enum):
1405
1405
  elemental_ratio = "elemental_ratio"
1406
1406
 
1407
1407
 
@@ -1414,7 +1414,7 @@ class ElementalRatio72(BaseModel):
1414
1414
  """
1415
1415
 
1416
1416
 
1417
- class Name623(Enum):
1417
+ class Name677(Enum):
1418
1418
  p_norm = "p-norm"
1419
1419
 
1420
1420
 
@@ -1427,7 +1427,7 @@ class PNorm72(BaseModel):
1427
1427
  value: float
1428
1428
 
1429
1429
 
1430
- class Name624(Enum):
1430
+ class Name678(Enum):
1431
1431
  inchi = "inchi"
1432
1432
 
1433
1433
 
@@ -1436,7 +1436,7 @@ class InChIRepresentationSchema72(BaseModel):
1436
1436
  value: str
1437
1437
 
1438
1438
 
1439
- class Name625(Enum):
1439
+ class Name679(Enum):
1440
1440
  inchi_key = "inchi_key"
1441
1441
 
1442
1442
 
@@ -1469,14 +1469,14 @@ class DerivedPropertiesSchema72(
1469
1469
  ] = Field(..., discriminator="name")
1470
1470
 
1471
1471
 
1472
- class Name626(Enum):
1472
+ class Name680(Enum):
1473
1473
  default = "default"
1474
1474
  atomsTooClose = "atomsTooClose"
1475
1475
  atomsOverlap = "atomsOverlap"
1476
1476
 
1477
1477
 
1478
1478
  class MaterialConsistencyCheckSchema71(BaseModel):
1479
- name: Name626
1479
+ name: Name680
1480
1480
  """
1481
1481
  Name of the consistency check that is performed, which is listed in an enum.
1482
1482
  """
@@ -285,30 +285,30 @@ class VolumeSchema(BaseModel):
285
285
  value: float
286
286
 
287
287
 
288
- class Name562(Enum):
288
+ class Name614(Enum):
289
289
  density = "density"
290
290
 
291
291
 
292
- class Units228(Enum):
292
+ class Units269(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[Units228] = None
298
+ units: Optional[Units269] = None
299
299
  value: float
300
300
 
301
301
 
302
- class Units229(Enum):
302
+ class Units270(Enum):
303
303
  angstrom = "angstrom"
304
304
 
305
305
 
306
306
  class ScalarSchema(BaseModel):
307
- units: Optional[Units229] = None
307
+ units: Optional[Units270] = None
308
308
  value: float
309
309
 
310
310
 
311
- class Name563(Enum):
311
+ class Name615(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 Name564(Enum):
331
+ class Name616(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 Name565(Enum):
344
+ class Name617(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 Name566(Enum):
357
+ class Name618(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 Name567(Enum):
366
+ class Name619(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 Name568(Enum):
445
+ class Name620(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: Name568
458
+ name: Name620
459
459
  """
460
460
  Name of the consistency check that is performed, which is listed in an enum.
461
461
  """
@@ -129,7 +129,7 @@ class FileDataItem(BaseModel):
129
129
  """
130
130
  chemical element
131
131
  """
132
- hash: Optional[str] = None
132
+ hash: str
133
133
  """
134
134
  MD5 hash of the pseudopotential file
135
135
  """
@@ -159,7 +159,7 @@ class FileDataItem(BaseModel):
159
159
  """
160
160
  filename of pseudopotential file on filesystem
161
161
  """
162
- name: Optional[Name] = None
162
+ name: Name
163
163
  """
164
164
  name of the data category
165
165
  """
@@ -75,7 +75,7 @@ class FileDataItem(BaseModel):
75
75
  """
76
76
  chemical element
77
77
  """
78
- hash: Optional[str] = None
78
+ hash: str
79
79
  """
80
80
  MD5 hash of the pseudopotential file
81
81
  """
@@ -105,7 +105,7 @@ class FileDataItem(BaseModel):
105
105
  """
106
106
  filename of pseudopotential file on filesystem
107
107
  """
108
- name: Optional[Name] = None
108
+ name: Name
109
109
  """
110
110
  name of the data category
111
111
  """
@@ -71,7 +71,7 @@ class FileDataItem(BaseModel):
71
71
  """
72
72
  chemical element
73
73
  """
74
- hash: Optional[str] = None
74
+ hash: str
75
75
  """
76
76
  MD5 hash of the pseudopotential file
77
77
  """
@@ -101,7 +101,7 @@ class FileDataItem(BaseModel):
101
101
  """
102
102
  filename of pseudopotential file on filesystem
103
103
  """
104
- name: Optional[Name] = None
104
+ name: Name
105
105
  """
106
106
  name of the data category
107
107
  """
@@ -24,7 +24,7 @@ class VolumeSchema(BaseModel):
24
24
  value: float
25
25
 
26
26
 
27
- class Name452(Enum):
27
+ class Name453(Enum):
28
28
  density = "density"
29
29
 
30
30
 
@@ -47,7 +47,7 @@ class ScalarSchema(BaseModel):
47
47
  value: float
48
48
 
49
49
 
50
- class Name453(Enum):
50
+ class Name454(Enum):
51
51
  symmetry = "symmetry"
52
52
 
53
53
 
@@ -67,7 +67,7 @@ class SymmetrySchema(BaseModel):
67
67
  name: Literal["2#-datamodel-code-generator-#-object-#-special-#"]
68
68
 
69
69
 
70
- class Name454(Enum):
70
+ class Name455(Enum):
71
71
  elemental_ratio = "elemental_ratio"
72
72
 
73
73
 
@@ -80,7 +80,7 @@ class ElementalRatio(BaseModel):
80
80
  """
81
81
 
82
82
 
83
- class Name455(Enum):
83
+ class Name456(Enum):
84
84
  p_norm = "p-norm"
85
85
 
86
86
 
@@ -93,7 +93,7 @@ class PNorm(BaseModel):
93
93
  value: float
94
94
 
95
95
 
96
- class Name456(Enum):
96
+ class Name457(Enum):
97
97
  inchi = "inchi"
98
98
 
99
99
 
@@ -102,7 +102,7 @@ class InChIRepresentationSchema(BaseModel):
102
102
  value: str
103
103
 
104
104
 
105
- class Name457(Enum):
105
+ class Name458(Enum):
106
106
  inchi_key = "inchi_key"
107
107
 
108
108
 
@@ -28,6 +28,6 @@ class Units(Enum):
28
28
 
29
29
 
30
30
  class AtomicRadius(BaseModel):
31
- name: Optional[Name] = None
31
+ name: Name
32
32
  units: Optional[Units] = None
33
33
  value: float
@@ -5,7 +5,6 @@
5
5
  from __future__ import annotations
6
6
 
7
7
  from enum import Enum
8
- from typing import Optional
9
8
 
10
9
  from pydantic import BaseModel
11
10
 
@@ -15,5 +14,5 @@ class Name(Enum):
15
14
 
16
15
 
17
16
  class Electronegativity(BaseModel):
18
- name: Optional[Name] = None
17
+ name: Name
19
18
  value: float
@@ -5,7 +5,6 @@
5
5
  from __future__ import annotations
6
6
 
7
7
  from enum import Enum
8
- from typing import Optional
9
8
 
10
9
  from pydantic import BaseModel
11
10
 
@@ -24,7 +23,7 @@ class Units(Enum):
24
23
  eV_atom = "eV/atom"
25
24
 
26
25
 
27
- class IonizationPotential(BaseModel):
28
- name: Optional[Name] = None
29
- units: Optional[Units] = None
26
+ class IonizationPotentialElementalPropertySchema(BaseModel):
27
+ name: Name
28
+ units: Units
30
29
  value: float
@@ -0,0 +1,20 @@
1
+ # generated by datamodel-codegen:
2
+ # filename: properties_directory/jupyter_notebook_endpoint.json
3
+ # version: 0.28.5
4
+
5
+ from __future__ import annotations
6
+
7
+ from enum import Enum
8
+
9
+ from pydantic import BaseModel
10
+
11
+
12
+ class Name(Enum):
13
+ jupyter_notebook_endpoint = "jupyter_notebook_endpoint"
14
+
15
+
16
+ class JupyterNotebookEndpointPropertySchema(BaseModel):
17
+ name: Name
18
+ host: str
19
+ port: float
20
+ token: str
@@ -67,16 +67,12 @@ class Name(Enum):
67
67
  average_potential_profile = "average_potential_profile"
68
68
 
69
69
 
70
- class AveragePotentialProfileSchema(BaseModel):
70
+ class AveragePotentialProfilePropertySchema(BaseModel):
71
71
  xAxis: AxisSchema = Field(..., title="axis schema")
72
72
  yAxis: AxisSchema3 = Field(..., title="axis schema")
73
- name: Optional[Name] = None
74
- legend: Optional[List] = Field(None, min_length=1)
75
- """
76
- Legend of y Axis data series
77
- """
78
- xDataArray: List
73
+ name: Name
74
+ xDataArray: List[Union[float, List[float]]]
79
75
  """
80
76
  array containing values of x Axis
81
77
  """
82
- yDataSeries: List[List[Union[float, str]]] = Field(..., title="1 dimension data series schema")
78
+ yDataSeries: List[List[float]] = Field(..., title="1 dimension data series schema")
@@ -67,7 +67,7 @@ class Eigenvalue(BaseModel):
67
67
  eigenvalues: Optional[List[Eigenvalue1]] = None
68
68
 
69
69
 
70
- class BandGapsSchema(BaseModel):
70
+ class BandGapsPropertySchema(BaseModel):
71
71
  name: Name
72
- values: Optional[List[BandGapSchema]] = None
72
+ values: List[BandGapSchema]
73
73
  eigenvalues: Optional[List[Eigenvalue]] = None
@@ -64,20 +64,16 @@ class SpinEnum(Enum):
64
64
  number__0_5 = -0.5
65
65
 
66
66
 
67
- class BandStructureSchema(BaseModel):
67
+ class BandStructurePropertySchema(BaseModel):
68
68
  xAxis: AxisSchema = Field(..., title="axis schema")
69
69
  yAxis: AxisSchema6 = Field(..., title="axis schema")
70
- name: Optional[Name] = None
71
- spin: Optional[List[SpinEnum]] = None
70
+ name: Name
71
+ spin: List[SpinEnum]
72
72
  """
73
73
  spin of each band
74
74
  """
75
- legend: Optional[List] = Field(None, min_length=1)
76
- """
77
- Legend of y Axis data series
78
- """
79
- xDataArray: List
75
+ xDataArray: List[Union[float, List[float]]]
80
76
  """
81
77
  array containing values of x Axis
82
78
  """
83
- yDataSeries: List[List[Union[float, str]]] = Field(..., title="1 dimension data series schema")
79
+ yDataSeries: List[List[float]] = Field(..., title="1 dimension data series schema")