mat3ra-esse 2025.6.5.post0__py3-none-any.whl → 2025.6.14.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 (37) hide show
  1. mat3ra/esse/data/examples.py +1 -1
  2. mat3ra/esse/data/schemas.py +1 -1
  3. mat3ra/esse/models/apse/file/applications/espresso/7.2/pw_x.py +6 -6
  4. mat3ra/esse/models/material/builders/single_material/two_dimensional/slab/selector_parameters.py +1 -1
  5. mat3ra/esse/models/material/reusable/slab/termination.py +1 -1
  6. mat3ra/esse/models/material/reusable/slab_configuration_with_termination.py +1 -1
  7. mat3ra/esse/models/material/reusable/stack/slab_in_stack.py +1 -1
  8. mat3ra/esse/models/materials_category/defects/two_dimensional/grain_boundary_plane/configuration.py +2 -2
  9. mat3ra/esse/models/materials_category/multi_material/interfaces/configuration.py +1 -1
  10. mat3ra/esse/models/materials_category/pristine_structures/two_dimensional/slab.py +428 -15
  11. mat3ra/esse/models/materials_category_components/entities/auxiliary/two_dimensional/termination.py +1 -1
  12. mat3ra/esse/models/materials_category_components/entities/core/two_dimensional/vacuum.py +526 -2
  13. mat3ra/esse/models/materials_category_components/entities/reusable/three_dimensional/strained_non_uniform.py +14 -14
  14. mat3ra/esse/models/materials_category_components/entities/reusable/three_dimensional/strained_uniform.py +14 -14
  15. mat3ra/esse/models/materials_category_components/entities/reusable/three_dimensional/supercell.py +14 -14
  16. mat3ra/esse/models/materials_category_components/entities/reusable/two_dimensional/atomic_layers.py +1 -1
  17. mat3ra/esse/models/materials_category_components/entities/reusable/two_dimensional/atomic_layers_unique.py +1 -1
  18. mat3ra/esse/models/materials_category_components/entities/reusable/two_dimensional/atomic_layers_unique_repeated.py +1 -1
  19. mat3ra/esse/models/materials_category_components/entities/reusable/two_dimensional/slab_unit_cell.py +428 -15
  20. mat3ra/esse/models/materials_category_components/operations/core/combinations/merge.py +413 -0
  21. mat3ra/esse/models/materials_category_components/operations/core/combinations/stack.py +427 -14
  22. mat3ra/esse/models/materials_category_components/operations/core/combinations/stack_component.py +427 -14
  23. mat3ra/esse/models/properties_directory/non_scalar/phonon_dispersions.py +2 -2
  24. mat3ra/esse/models/properties_directory/non_scalar/phonon_dos.py +2 -2
  25. mat3ra/esse/models/properties_directory/non_scalar/total_energy_contributions.py +50 -50
  26. mat3ra/esse/models/properties_directory/non_scalar/vibrational_spectrum.py +2 -2
  27. mat3ra/esse/models/properties_directory/scalar/reaction_energy_barrier.py +2 -2
  28. mat3ra/esse/models/properties_directory/scalar/surface_energy.py +2 -2
  29. mat3ra/esse/models/properties_directory/scalar/total_energy.py +2 -2
  30. mat3ra/esse/models/properties_directory/scalar/valence_band_offset.py +2 -2
  31. mat3ra/esse/models/properties_directory/scalar/zero_point_energy.py +2 -2
  32. mat3ra/esse/models/properties_directory/structural/molecular_pattern.py +4 -4
  33. {mat3ra_esse-2025.6.5.post0.dist-info → mat3ra_esse-2025.6.14.post0.dist-info}/METADATA +1 -1
  34. {mat3ra_esse-2025.6.5.post0.dist-info → mat3ra_esse-2025.6.14.post0.dist-info}/RECORD +37 -37
  35. {mat3ra_esse-2025.6.5.post0.dist-info → mat3ra_esse-2025.6.14.post0.dist-info}/WHEEL +0 -0
  36. {mat3ra_esse-2025.6.5.post0.dist-info → mat3ra_esse-2025.6.14.post0.dist-info}/licenses/LICENSE.md +0 -0
  37. {mat3ra_esse-2025.6.5.post0.dist-info → mat3ra_esse-2025.6.14.post0.dist-info}/top_level.txt +0 -0
@@ -5,9 +5,9 @@
5
5
  from __future__ import annotations
6
6
 
7
7
  from enum import Enum
8
- from typing import Optional
8
+ from typing import Any, Dict, List, Literal, Optional, Union
9
9
 
10
- from pydantic import BaseModel, Field, confloat
10
+ from pydantic import BaseModel, Field, RootModel, confloat, conint
11
11
 
12
12
 
13
13
  class AxisEnum(Enum):
@@ -16,6 +16,526 @@ class AxisEnum(Enum):
16
16
  z = "z"
17
17
 
18
18
 
19
+ class Value(Enum):
20
+ H = "H"
21
+ He = "He"
22
+ Li = "Li"
23
+ Be = "Be"
24
+ B = "B"
25
+ C = "C"
26
+ N = "N"
27
+ O = "O"
28
+ F = "F"
29
+ Ne = "Ne"
30
+ Na = "Na"
31
+ Mg = "Mg"
32
+ Al = "Al"
33
+ Si = "Si"
34
+ P = "P"
35
+ S = "S"
36
+ Cl = "Cl"
37
+ Ar = "Ar"
38
+ K = "K"
39
+ Ca = "Ca"
40
+ Sc = "Sc"
41
+ Ti = "Ti"
42
+ V = "V"
43
+ Cr = "Cr"
44
+ Mn = "Mn"
45
+ Fe = "Fe"
46
+ Co = "Co"
47
+ Ni = "Ni"
48
+ Cu = "Cu"
49
+ Zn = "Zn"
50
+ Ga = "Ga"
51
+ Ge = "Ge"
52
+ As = "As"
53
+ Se = "Se"
54
+ Br = "Br"
55
+ Kr = "Kr"
56
+ Rb = "Rb"
57
+ Sr = "Sr"
58
+ Y = "Y"
59
+ Zr = "Zr"
60
+ Nb = "Nb"
61
+ Mo = "Mo"
62
+ Tc = "Tc"
63
+ Ru = "Ru"
64
+ Rh = "Rh"
65
+ Pd = "Pd"
66
+ Ag = "Ag"
67
+ Cd = "Cd"
68
+ In = "In"
69
+ Sn = "Sn"
70
+ Sb = "Sb"
71
+ Te = "Te"
72
+ I = "I"
73
+ Xe = "Xe"
74
+ Cs = "Cs"
75
+ Ba = "Ba"
76
+ La = "La"
77
+ Ce = "Ce"
78
+ Pr = "Pr"
79
+ Nd = "Nd"
80
+ Pm = "Pm"
81
+ Sm = "Sm"
82
+ Eu = "Eu"
83
+ Gd = "Gd"
84
+ Tb = "Tb"
85
+ Dy = "Dy"
86
+ Ho = "Ho"
87
+ Er = "Er"
88
+ Tm = "Tm"
89
+ Yb = "Yb"
90
+ Lu = "Lu"
91
+ Hf = "Hf"
92
+ Ta = "Ta"
93
+ W = "W"
94
+ Re = "Re"
95
+ Os = "Os"
96
+ Ir = "Ir"
97
+ Pt = "Pt"
98
+ Au = "Au"
99
+ Hg = "Hg"
100
+ Tl = "Tl"
101
+ Pb = "Pb"
102
+ Bi = "Bi"
103
+ Po = "Po"
104
+ At = "At"
105
+ Rn = "Rn"
106
+ Fr = "Fr"
107
+ Ra = "Ra"
108
+ Ac = "Ac"
109
+ Th = "Th"
110
+ Pa = "Pa"
111
+ U = "U"
112
+ Np = "Np"
113
+ Pu = "Pu"
114
+ Am = "Am"
115
+ Cm = "Cm"
116
+ Bk = "Bk"
117
+ Cf = "Cf"
118
+ Es = "Es"
119
+ Fm = "Fm"
120
+ Md = "Md"
121
+ No = "No"
122
+ Lr = "Lr"
123
+ Rf = "Rf"
124
+ Db = "Db"
125
+ Sg = "Sg"
126
+ Bh = "Bh"
127
+ Hs = "Hs"
128
+ Mt = "Mt"
129
+ Ds = "Ds"
130
+ Rg = "Rg"
131
+ Cn = "Cn"
132
+ Nh = "Nh"
133
+ Fl = "Fl"
134
+ Mc = "Mc"
135
+ Lv = "Lv"
136
+ Ts = "Ts"
137
+ Og = "Og"
138
+
139
+
140
+ class Value55(Enum):
141
+ X = "X"
142
+ Vac = "Vac"
143
+
144
+
145
+ class AtomicElementSchema(BaseModel):
146
+ value: Union[Value, Value55]
147
+ """
148
+ All elements, including extra elements
149
+ """
150
+ id: int
151
+ """
152
+ integer id of this entry
153
+ """
154
+
155
+
156
+ class AtomicCoordinateSchema(BaseModel):
157
+ value: List[float] = Field(..., max_length=3, min_length=3, title="coordinate 3d schema")
158
+ """
159
+ value of this entry
160
+ """
161
+ id: int
162
+ """
163
+ integer id of this entry
164
+ """
165
+
166
+
167
+ class BasisUnitsEnum(Enum):
168
+ crystal = "crystal"
169
+ cartesian = "cartesian"
170
+
171
+
172
+ class AtomicLabelSchema(BaseModel):
173
+ value: Union[Union[int, str, float], conint(ge=1, le=9)]
174
+ """
175
+ value of this entry
176
+ """
177
+ id: int
178
+ """
179
+ integer id of this entry
180
+ """
181
+
182
+
183
+ class BasisSchema(BaseModel):
184
+ elements: List[AtomicElementSchema] = Field(..., title="atomic elements schema")
185
+ """
186
+ atomic elements schema
187
+ """
188
+ coordinates: List[AtomicCoordinateSchema] = Field(..., title="atomic coordinates schema")
189
+ """
190
+ atomic coordinates schema
191
+ """
192
+ units: Optional[BasisUnitsEnum] = Field("crystal", title="basis units enum")
193
+ labels: Optional[List[AtomicLabelSchema]] = Field(None, title="atomic labels schema")
194
+ """
195
+ atomic labels schema
196
+ """
197
+
198
+
199
+ class LatticeVectorsUnitsEnum(Enum):
200
+ angstrom = "angstrom"
201
+ bohr = "bohr"
202
+
203
+
204
+ class LatticeVectorsSchema(BaseModel):
205
+ a: List[float] = Field(..., max_length=3, min_length=3, title="vector 3d schema")
206
+ b: List[float] = Field(..., max_length=3, min_length=3, title="vector 3d schema")
207
+ c: List[float] = Field(..., max_length=3, min_length=3, title="vector 3d schema")
208
+ alat: Optional[float] = 1
209
+ """
210
+ lattice parameter for fractional coordinates
211
+ """
212
+ units: Optional[LatticeVectorsUnitsEnum] = Field("angstrom", title="lattice vectors units enum")
213
+
214
+
215
+ class LatticeTypeEnum(Enum):
216
+ CUB = "CUB"
217
+ BCC = "BCC"
218
+ FCC = "FCC"
219
+ TET = "TET"
220
+ MCL = "MCL"
221
+ ORC = "ORC"
222
+ ORCC = "ORCC"
223
+ ORCF = "ORCF"
224
+ ORCI = "ORCI"
225
+ HEX = "HEX"
226
+ BCT = "BCT"
227
+ TRI = "TRI"
228
+ MCLC = "MCLC"
229
+ RHL = "RHL"
230
+
231
+
232
+ class LatticeUnitsLengthEnum(Enum):
233
+ angstrom = "angstrom"
234
+ bohr = "bohr"
235
+
236
+
237
+ class LatticeUnitsAngleEnum(Enum):
238
+ degree = "degree"
239
+ radian = "radian"
240
+
241
+
242
+ class LatticeUnitsSchema(BaseModel):
243
+ length: Optional[LatticeUnitsLengthEnum] = Field("angstrom", title="lattice units length enum")
244
+ angle: Optional[LatticeUnitsAngleEnum] = Field("degree", title="lattice units angle enum")
245
+
246
+
247
+ class LatticeSchema(BaseModel):
248
+ a: float
249
+ """
250
+ length of the first lattice vector
251
+ """
252
+ b: float
253
+ """
254
+ length of the second lattice vector
255
+ """
256
+ c: float
257
+ """
258
+ length of the third lattice vector
259
+ """
260
+ alpha: float
261
+ """
262
+ angle between first and second lattice vector
263
+ """
264
+ beta: float
265
+ """
266
+ angle between second and third lattice vector
267
+ """
268
+ gamma: float
269
+ """
270
+ angle between first and third lattice vector
271
+ """
272
+ vectors: Optional[LatticeVectorsSchema] = Field(None, title="lattice vectors schema")
273
+ type: Optional[LatticeTypeEnum] = Field("TRI", title="lattice type enum")
274
+ units: Optional[LatticeUnitsSchema] = Field(
275
+ default_factory=lambda: LatticeUnitsSchema.model_validate({"length": "angstrom", "angle": "degree"}),
276
+ title="Lattice units schema",
277
+ )
278
+
279
+
280
+ class Name(Enum):
281
+ volume = "volume"
282
+
283
+
284
+ class Units(Enum):
285
+ angstrom_3 = "angstrom^3"
286
+
287
+
288
+ class VolumeSchema(BaseModel):
289
+ name: Literal["0#-datamodel-code-generator-#-object-#-special-#"]
290
+ units: Optional[Units] = None
291
+ value: float
292
+
293
+
294
+ class Name241(Enum):
295
+ density = "density"
296
+
297
+
298
+ class Units113(Enum):
299
+ g_cm_3 = "g/cm^3"
300
+
301
+
302
+ class DensitySchema(BaseModel):
303
+ name: Literal["1#-datamodel-code-generator-#-object-#-special-#"]
304
+ units: Optional[Units113] = None
305
+ value: float
306
+
307
+
308
+ class Units114(Enum):
309
+ angstrom = "angstrom"
310
+
311
+
312
+ class ScalarSchema(BaseModel):
313
+ units: Optional[Units114] = None
314
+ value: float
315
+
316
+
317
+ class Name242(Enum):
318
+ symmetry = "symmetry"
319
+
320
+
321
+ class SymmetrySchema(BaseModel):
322
+ pointGroupSymbol: Optional[str] = None
323
+ """
324
+ point group symbol in Schoenflies notation
325
+ """
326
+ spaceGroupSymbol: Optional[str] = None
327
+ """
328
+ space group symbol in Hermann–Mauguin notation
329
+ """
330
+ tolerance: Optional[ScalarSchema] = Field(None, title="scalar schema")
331
+ """
332
+ tolerance used for symmetry calculation
333
+ """
334
+ name: Literal["2#-datamodel-code-generator-#-object-#-special-#"]
335
+
336
+
337
+ class Name243(Enum):
338
+ elemental_ratio = "elemental_ratio"
339
+
340
+
341
+ class ElementalRatio(BaseModel):
342
+ name: Literal["3#-datamodel-code-generator-#-object-#-special-#"]
343
+ value: confloat(ge=0.0, le=1.0)
344
+ element: Optional[str] = None
345
+ """
346
+ the element this ratio is for
347
+ """
348
+
349
+
350
+ class Name244(Enum):
351
+ p_norm = "p-norm"
352
+
353
+
354
+ class PNorm(BaseModel):
355
+ name: Literal["4#-datamodel-code-generator-#-object-#-special-#"]
356
+ degree: Optional[int] = None
357
+ """
358
+ degree of the dimensionality of the norm
359
+ """
360
+ value: float
361
+
362
+
363
+ class Name245(Enum):
364
+ inchi = "inchi"
365
+
366
+
367
+ class InChIRepresentationSchema(BaseModel):
368
+ name: Literal["5#-datamodel-code-generator-#-object-#-special-#"]
369
+ value: str
370
+
371
+
372
+ class Name246(Enum):
373
+ inchi_key = "inchi_key"
374
+
375
+
376
+ class InChIKeyRepresentationSchema(BaseModel):
377
+ name: Literal["6#-datamodel-code-generator-#-object-#-special-#"]
378
+ value: str
379
+
380
+
381
+ class DerivedPropertiesSchema(
382
+ RootModel[
383
+ Union[
384
+ VolumeSchema,
385
+ DensitySchema,
386
+ SymmetrySchema,
387
+ ElementalRatio,
388
+ PNorm,
389
+ InChIRepresentationSchema,
390
+ InChIKeyRepresentationSchema,
391
+ ]
392
+ ]
393
+ ):
394
+ root: Union[
395
+ VolumeSchema,
396
+ DensitySchema,
397
+ SymmetrySchema,
398
+ ElementalRatio,
399
+ PNorm,
400
+ InChIRepresentationSchema,
401
+ InChIKeyRepresentationSchema,
402
+ ] = Field(..., discriminator="name")
403
+
404
+
405
+ class DatabaseSourceSchema(BaseModel):
406
+ id: Union[str, float]
407
+ """
408
+ ID string for the materials uploaded from a third party source inside the third party source. For materialsproject.org an example ID is mp-32
409
+ """
410
+ source: str
411
+ """
412
+ Third party source name, e.g. materials project, 2dmatpedia, ICSD, etc.
413
+ """
414
+ origin: bool
415
+ """
416
+ Deprecated. To be removed. A flag that is true when material is initially imported from a third party * (as opposed to being independently designed from scratch).
417
+ """
418
+ data: Optional[Dict[str, Any]] = None
419
+ """
420
+ Original response from external source.
421
+ """
422
+ doi: Optional[str] = None
423
+ """
424
+ Digital Object Identifier, e.g. 10.1088/0953-8984/25/10/105506
425
+ """
426
+ url: Optional[str] = None
427
+ """
428
+ The URL of the original record, e.g. https://next-gen.materialsproject.org/materials/mp-48; ToDo: update to use URI type per https://json-schema.org/understanding-json-schema/reference/string#resource-identifiers
429
+ """
430
+
431
+
432
+ class FileSourceSchema(BaseModel):
433
+ extension: Optional[str] = None
434
+ """
435
+ file extension
436
+ """
437
+ filename: str
438
+ """
439
+ file name without extension
440
+ """
441
+ text: str
442
+ """
443
+ file content as raw text
444
+ """
445
+ hash: str
446
+ """
447
+ MD5 hash based on file content
448
+ """
449
+
450
+
451
+ class Name247(Enum):
452
+ default = "default"
453
+ atomsTooClose = "atomsTooClose"
454
+ atomsOverlap = "atomsOverlap"
455
+
456
+
457
+ class Severity(Enum):
458
+ info = "info"
459
+ warning = "warning"
460
+ error = "error"
461
+
462
+
463
+ class MaterialConsistencyCheckSchema(BaseModel):
464
+ name: Name247
465
+ """
466
+ Name of the consistency check that is performed, which is listed in an enum.
467
+ """
468
+ key: str
469
+ """
470
+ Key of the property of the entity on which the consistency check is performed in Mongo dot notation, e.g. 'basis.coordinates.1'
471
+ """
472
+ severity: Severity
473
+ """
474
+ Severity level of the problem, which is used in UI to differentiate.
475
+ """
476
+ message: str
477
+ """
478
+ Message generated by the consistency check describing the problem.
479
+ """
480
+
481
+
482
+ class CrystalSchema(BaseModel):
483
+ formula: Optional[str] = None
484
+ """
485
+ reduced chemical formula
486
+ """
487
+ unitCellFormula: Optional[str] = None
488
+ """
489
+ chemical formula based on the number of atoms of each element in the supercell
490
+ """
491
+ basis: BasisSchema = Field(..., title="basis schema")
492
+ lattice: LatticeSchema = Field(..., title="lattice schema")
493
+ derivedProperties: Optional[List[DerivedPropertiesSchema]] = Field(None, title="derived properties schema")
494
+ external: Optional[DatabaseSourceSchema] = Field(None, title="database source schema")
495
+ """
496
+ information about a database source
497
+ """
498
+ src: Optional[FileSourceSchema] = Field(None, title="file source schema")
499
+ """
500
+ file source with the information inside
501
+ """
502
+ scaledHash: Optional[str] = None
503
+ """
504
+ Hash string for a scaled structure with lattice vector a set to 1 (eg. for materials under pressure).
505
+ """
506
+ icsdId: Optional[int] = None
507
+ """
508
+ Corresponding ICSD id of the material
509
+ """
510
+ isNonPeriodic: Optional[bool] = None
511
+ """
512
+ Whether to work in the finite molecular picture (usually with atomic orbital basis)
513
+ """
514
+ consistencyChecks: Optional[List[MaterialConsistencyCheckSchema]] = None
515
+ field_id: Optional[str] = Field(None, alias="_id")
516
+ """
517
+ entity identity
518
+ """
519
+ slug: Optional[str] = None
520
+ """
521
+ entity slug
522
+ """
523
+ systemName: Optional[str] = None
524
+ schemaVersion: Optional[str] = "2022.8.16"
525
+ """
526
+ entity's schema version. Used to distinct between different schemas.
527
+ """
528
+ name: Optional[str] = None
529
+ """
530
+ entity name
531
+ """
532
+ isDefault: Optional[bool] = False
533
+ """
534
+ Identifies that entity is defaultable
535
+ """
536
+ metadata: Optional[Dict[str, Any]] = None
537
+
538
+
19
539
  class VacuumConfigurationSchema(BaseModel):
20
540
  direction: AxisEnum = Field(..., title="Axis Enum")
21
541
  """
@@ -25,3 +545,7 @@ class VacuumConfigurationSchema(BaseModel):
25
545
  """
26
546
  Size of the vacuum slab in angstroms
27
547
  """
548
+ crystal: CrystalSchema = Field(..., title="Crystal Schema")
549
+ """
550
+ A crystal structure, referencing the base material schema
551
+ """
@@ -131,13 +131,13 @@ class Value(Enum):
131
131
  Og = "Og"
132
132
 
133
133
 
134
- class Value39(Enum):
134
+ class Value49(Enum):
135
135
  X = "X"
136
136
  Vac = "Vac"
137
137
 
138
138
 
139
139
  class AtomicElementSchema(BaseModel):
140
- value: Union[Value, Value39]
140
+ value: Union[Value, Value49]
141
141
  """
142
142
  All elements, including extra elements
143
143
  """
@@ -285,30 +285,30 @@ class VolumeSchema(BaseModel):
285
285
  value: float
286
286
 
287
287
 
288
- class Name158(Enum):
288
+ class Name198(Enum):
289
289
  density = "density"
290
290
 
291
291
 
292
- class Units81(Enum):
292
+ class Units96(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[Units81] = None
298
+ units: Optional[Units96] = None
299
299
  value: float
300
300
 
301
301
 
302
- class Units82(Enum):
302
+ class Units97(Enum):
303
303
  angstrom = "angstrom"
304
304
 
305
305
 
306
306
  class ScalarSchema(BaseModel):
307
- units: Optional[Units82] = None
307
+ units: Optional[Units97] = None
308
308
  value: float
309
309
 
310
310
 
311
- class Name159(Enum):
311
+ class Name199(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 Name160(Enum):
331
+ class Name200(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 Name161(Enum):
344
+ class Name201(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 Name162(Enum):
357
+ class Name202(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 Name163(Enum):
366
+ class Name203(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 Name164(Enum):
445
+ class Name204(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: Name164
458
+ name: Name204
459
459
  """
460
460
  Name of the consistency check that is performed, which is listed in an enum.
461
461
  """