mat3ra-esse 2024.2.6.post0__tar.gz → 2024.2.19.post1__tar.gz

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 (1013) hide show
  1. mat3ra-esse-2024.2.19.post1/.eslintrc.json +11 -0
  2. mat3ra-esse-2024.2.19.post1/.mocharc.json +5 -0
  3. mat3ra-esse-2024.2.19.post1/PKG-INFO +193 -0
  4. mat3ra-esse-2024.2.19.post1/build_schemas.js +47 -0
  5. mat3ra-esse-2024.2.19.post1/compile_ts.ts +3 -0
  6. mat3ra-esse-2024.2.19.post1/example/models_directory/re.json +10 -0
  7. mat3ra-esse-2024.2.19.post1/example/workflow/subworkflow.json +18 -0
  8. mat3ra-esse-2024.2.19.post1/example/workflow.json +35 -0
  9. mat3ra-esse-2024.2.19.post1/modules.d.ts +5 -0
  10. mat3ra-esse-2024.2.19.post1/package-lock.json +6810 -0
  11. mat3ra-esse-2024.2.19.post1/package.json +102 -0
  12. mat3ra-esse-2024.2.19.post1/schema/3pse/file/applications/espresso/7.2/pw.x/atomic_positions.json +66 -0
  13. mat3ra-esse-2024.2.19.post1/schema/3pse/file/applications/espresso/7.2/pw.x/atomic_species.json +30 -0
  14. mat3ra-esse-2024.2.19.post1/schema/3pse/file/applications/espresso/7.2/pw.x/cell.json +89 -0
  15. mat3ra-esse-2024.2.19.post1/schema/3pse/file/applications/espresso/7.2/pw.x/cell_parameters.json +36 -0
  16. mat3ra-esse-2024.2.19.post1/schema/3pse/file/applications/espresso/7.2/pw.x/control.json +181 -0
  17. mat3ra-esse-2024.2.19.post1/schema/3pse/file/applications/espresso/7.2/pw.x/electrons.json +157 -0
  18. mat3ra-esse-2024.2.19.post1/schema/3pse/file/applications/espresso/7.2/pw.x/hubbard.json +219 -0
  19. mat3ra-esse-2024.2.19.post1/schema/3pse/file/applications/espresso/7.2/pw.x/ions.json +216 -0
  20. mat3ra-esse-2024.2.19.post1/schema/3pse/file/applications/espresso/7.2/pw.x/k_points.json +87 -0
  21. mat3ra-esse-2024.2.19.post1/schema/3pse/file/applications/espresso/7.2/pw.x/system.json +652 -0
  22. mat3ra-esse-2024.2.19.post1/schema/3pse/file/applications/espresso/7.2/pw.x.json +53 -0
  23. mat3ra-esse-2024.2.19.post1/schema/core/abstract/2d_data.json +19 -0
  24. mat3ra-esse-2024.2.19.post1/schema/core/abstract/2d_plot.json +30 -0
  25. mat3ra-esse-2024.2.19.post1/schema/core/abstract/3d_grid.json +18 -0
  26. mat3ra-esse-2024.2.19.post1/schema/core/abstract/3d_tensor.json +11 -0
  27. mat3ra-esse-2024.2.19.post1/schema/core/abstract/3d_vector_basis.json +25 -0
  28. mat3ra-esse-2024.2.19.post1/schema/core/abstract/point.json +10 -0
  29. mat3ra-esse-2024.2.19.post1/schema/core/abstract/vector.json +13 -0
  30. mat3ra-esse-2024.2.19.post1/schema/core/primitive/1d_data_series.json +16 -0
  31. mat3ra-esse-2024.2.19.post1/schema/core/primitive/3d_lattice.json +40 -0
  32. mat3ra-esse-2024.2.19.post1/schema/core/primitive/array_of_3_booleans.json +11 -0
  33. mat3ra-esse-2024.2.19.post1/schema/core/primitive/array_of_3_numbers.json +11 -0
  34. mat3ra-esse-2024.2.19.post1/schema/core/primitive/array_of_ids.json +16 -0
  35. mat3ra-esse-2024.2.19.post1/schema/core/primitive/array_of_strings.json +11 -0
  36. mat3ra-esse-2024.2.19.post1/schema/core/primitive/axis.json +19 -0
  37. mat3ra-esse-2024.2.19.post1/schema/core/primitive/group_info.json +16 -0
  38. mat3ra-esse-2024.2.19.post1/schema/core/primitive/integer_one_or_zero.json +8 -0
  39. mat3ra-esse-2024.2.19.post1/schema/core/primitive/linked_list/base_node.json +34 -0
  40. mat3ra-esse-2024.2.19.post1/schema/core/primitive/linked_list/named_node.json +14 -0
  41. mat3ra-esse-2024.2.19.post1/schema/core/primitive/linked_list/named_node_in_group.json +14 -0
  42. mat3ra-esse-2024.2.19.post1/schema/core/primitive/linked_list/node_with_type.json +16 -0
  43. mat3ra-esse-2024.2.19.post1/schema/core/primitive/linked_list.json +24 -0
  44. mat3ra-esse-2024.2.19.post1/schema/core/primitive/scalar.json +14 -0
  45. mat3ra-esse-2024.2.19.post1/schema/core/primitive/slugified_entry.json +21 -0
  46. mat3ra-esse-2024.2.19.post1/schema/core/primitive/slugified_entry_or_slug.json +14 -0
  47. mat3ra-esse-2024.2.19.post1/schema/core/primitive/string.json +14 -0
  48. mat3ra-esse-2024.2.19.post1/schema/core/reference/exabyte.json +19 -0
  49. mat3ra-esse-2024.2.19.post1/schema/core/reference/experiment/condition.json +31 -0
  50. mat3ra-esse-2024.2.19.post1/schema/core/reference/experiment/location.json +20 -0
  51. mat3ra-esse-2024.2.19.post1/schema/core/reference/experiment.json +59 -0
  52. mat3ra-esse-2024.2.19.post1/schema/core/reference/literature/name.json +24 -0
  53. mat3ra-esse-2024.2.19.post1/schema/core/reference/literature/pages.json +17 -0
  54. mat3ra-esse-2024.2.19.post1/schema/core/reference/literature.json +83 -0
  55. mat3ra-esse-2024.2.19.post1/schema/core/reference/modeling/exabyte.json +31 -0
  56. mat3ra-esse-2024.2.19.post1/schema/core/reference/modeling.json +10 -0
  57. mat3ra-esse-2024.2.19.post1/schema/core/reference.json +16 -0
  58. mat3ra-esse-2024.2.19.post1/schema/core/reusable/atomic_data/per_orbital.json +22 -0
  59. mat3ra-esse-2024.2.19.post1/schema/core/reusable/atomic_data/per_orbital_pair.json +39 -0
  60. mat3ra-esse-2024.2.19.post1/schema/core/reusable/atomic_data/value_number.json +13 -0
  61. mat3ra-esse-2024.2.19.post1/schema/core/reusable/atomic_data/value_string.json +13 -0
  62. mat3ra-esse-2024.2.19.post1/schema/core/reusable/atomic_data_per_orbital_numeric.json +15 -0
  63. mat3ra-esse-2024.2.19.post1/schema/core/reusable/atomic_data_per_orbital_pair_numeric.json +15 -0
  64. mat3ra-esse-2024.2.19.post1/schema/core/reusable/atomic_orbital.json +32 -0
  65. mat3ra-esse-2024.2.19.post1/schema/core/reusable/atomic_scalars.json +18 -0
  66. mat3ra-esse-2024.2.19.post1/schema/core/reusable/atomic_strings.json +17 -0
  67. mat3ra-esse-2024.2.19.post1/schema/core/reusable/atomic_vectors.json +19 -0
  68. mat3ra-esse-2024.2.19.post1/schema/core/reusable/band_gap.json +45 -0
  69. mat3ra-esse-2024.2.19.post1/schema/core/reusable/categories.json +29 -0
  70. mat3ra-esse-2024.2.19.post1/schema/core/reusable/category_path.json +7 -0
  71. mat3ra-esse-2024.2.19.post1/schema/core/reusable/dielectric_tensor_component.json +29 -0
  72. mat3ra-esse-2024.2.19.post1/schema/core/reusable/energy.json +30 -0
  73. mat3ra-esse-2024.2.19.post1/schema/core/reusable/file_metadata.json +21 -0
  74. mat3ra-esse-2024.2.19.post1/schema/core/reusable/frequency_function_matrix.json +23 -0
  75. mat3ra-esse-2024.2.19.post1/schema/core/reusable/object_storage_container_data.json +38 -0
  76. mat3ra-esse-2024.2.19.post1/schema/element.json +29 -0
  77. mat3ra-esse-2024.2.19.post1/schema/in_memory_entity/base.json +31 -0
  78. mat3ra-esse-2024.2.19.post1/schema/in_memory_entity/defaultable.json +13 -0
  79. mat3ra-esse-2024.2.19.post1/schema/in_memory_entity/named.json +13 -0
  80. mat3ra-esse-2024.2.19.post1/schema/in_memory_entity/named_defaultable.json +16 -0
  81. mat3ra-esse-2024.2.19.post1/schema/in_memory_entity/named_defaultable_has_metadata.json +19 -0
  82. mat3ra-esse-2024.2.19.post1/schema/in_memory_entity/named_defaultable_runtime_items.json +19 -0
  83. mat3ra-esse-2024.2.19.post1/schema/job/base.json +81 -0
  84. mat3ra-esse-2024.2.19.post1/schema/job/compute.json +137 -0
  85. mat3ra-esse-2024.2.19.post1/schema/job.json +20 -0
  86. mat3ra-esse-2024.2.19.post1/schema/material/conventional.json +11 -0
  87. mat3ra-esse-2024.2.19.post1/schema/material.json +58 -0
  88. mat3ra-esse-2024.2.19.post1/schema/method/categorized_method.json +25 -0
  89. mat3ra-esse-2024.2.19.post1/schema/method/method_parameters.json +20 -0
  90. mat3ra-esse-2024.2.19.post1/schema/method/unit_method.json +28 -0
  91. mat3ra-esse-2024.2.19.post1/schema/method.json +28 -0
  92. mat3ra-esse-2024.2.19.post1/schema/methods_category/mathematical/diff/fd.json +16 -0
  93. mat3ra-esse-2024.2.19.post1/schema/methods_category/mathematical/diff.json +16 -0
  94. mat3ra-esse-2024.2.19.post1/schema/methods_category/mathematical/discr/mesh/hybrid.json +16 -0
  95. mat3ra-esse-2024.2.19.post1/schema/methods_category/mathematical/discr/mesh/nstruct.json +16 -0
  96. mat3ra-esse-2024.2.19.post1/schema/methods_category/mathematical/discr/mesh/struct/cartesian.json +16 -0
  97. mat3ra-esse-2024.2.19.post1/schema/methods_category/mathematical/discr/mesh/struct.json +16 -0
  98. mat3ra-esse-2024.2.19.post1/schema/methods_category/mathematical/discr/mesh.json +16 -0
  99. mat3ra-esse-2024.2.19.post1/schema/methods_category/mathematical/discr.json +16 -0
  100. mat3ra-esse-2024.2.19.post1/schema/methods_category/mathematical/fapprx/basisexp.json +16 -0
  101. mat3ra-esse-2024.2.19.post1/schema/methods_category/mathematical/fapprx/ipol/lin.json +16 -0
  102. mat3ra-esse-2024.2.19.post1/schema/methods_category/mathematical/fapprx/ipol/poly.json +16 -0
  103. mat3ra-esse-2024.2.19.post1/schema/methods_category/mathematical/fapprx/ipol/spline.json +16 -0
  104. mat3ra-esse-2024.2.19.post1/schema/methods_category/mathematical/fapprx/ipol.json +16 -0
  105. mat3ra-esse-2024.2.19.post1/schema/methods_category/mathematical/fapprx.json +16 -0
  106. mat3ra-esse-2024.2.19.post1/schema/methods_category/mathematical/intgr/analytic/volume.json +19 -0
  107. mat3ra-esse-2024.2.19.post1/schema/methods_category/mathematical/intgr/analytic.json +16 -0
  108. mat3ra-esse-2024.2.19.post1/schema/methods_category/mathematical/intgr/diffeq/order1.json +17 -0
  109. mat3ra-esse-2024.2.19.post1/schema/methods_category/mathematical/intgr/diffeq/order2.json +17 -0
  110. mat3ra-esse-2024.2.19.post1/schema/methods_category/mathematical/intgr/diffeq.json +16 -0
  111. mat3ra-esse-2024.2.19.post1/schema/methods_category/mathematical/intgr/numquad/gauss.json +16 -0
  112. mat3ra-esse-2024.2.19.post1/schema/methods_category/mathematical/intgr/numquad/newcot.json +16 -0
  113. mat3ra-esse-2024.2.19.post1/schema/methods_category/mathematical/intgr/numquad.json +16 -0
  114. mat3ra-esse-2024.2.19.post1/schema/methods_category/mathematical/intgr/transf/fourier.json +17 -0
  115. mat3ra-esse-2024.2.19.post1/schema/methods_category/mathematical/intgr/transf.json +17 -0
  116. mat3ra-esse-2024.2.19.post1/schema/methods_category/mathematical/intgr.json +16 -0
  117. mat3ra-esse-2024.2.19.post1/schema/methods_category/mathematical/linalg/dcomp.json +16 -0
  118. mat3ra-esse-2024.2.19.post1/schema/methods_category/mathematical/linalg/diag/davidson.json +16 -0
  119. mat3ra-esse-2024.2.19.post1/schema/methods_category/mathematical/linalg/diag.json +16 -0
  120. mat3ra-esse-2024.2.19.post1/schema/methods_category/mathematical/linalg/lintra.json +16 -0
  121. mat3ra-esse-2024.2.19.post1/schema/methods_category/mathematical/linalg/matf.json +16 -0
  122. mat3ra-esse-2024.2.19.post1/schema/methods_category/mathematical/linalg.json +16 -0
  123. mat3ra-esse-2024.2.19.post1/schema/methods_category/mathematical/opt/diff/bracket.json +16 -0
  124. mat3ra-esse-2024.2.19.post1/schema/methods_category/mathematical/opt/diff/local.json +16 -0
  125. mat3ra-esse-2024.2.19.post1/schema/methods_category/mathematical/opt/diff/order1.json +16 -0
  126. mat3ra-esse-2024.2.19.post1/schema/methods_category/mathematical/opt/diff/order2.json +16 -0
  127. mat3ra-esse-2024.2.19.post1/schema/methods_category/mathematical/opt/diff/ordern/cg.json +16 -0
  128. mat3ra-esse-2024.2.19.post1/schema/methods_category/mathematical/opt/diff/ordern.json +16 -0
  129. mat3ra-esse-2024.2.19.post1/schema/methods_category/mathematical/opt/diff.json +16 -0
  130. mat3ra-esse-2024.2.19.post1/schema/methods_category/mathematical/opt/ndiff/direct.json +16 -0
  131. mat3ra-esse-2024.2.19.post1/schema/methods_category/mathematical/opt/ndiff/pop.json +16 -0
  132. mat3ra-esse-2024.2.19.post1/schema/methods_category/mathematical/opt/ndiff/stoch.json +16 -0
  133. mat3ra-esse-2024.2.19.post1/schema/methods_category/mathematical/opt/ndiff.json +16 -0
  134. mat3ra-esse-2024.2.19.post1/schema/methods_category/mathematical/opt/root/bracket.json +16 -0
  135. mat3ra-esse-2024.2.19.post1/schema/methods_category/mathematical/opt/root/iter.json +16 -0
  136. mat3ra-esse-2024.2.19.post1/schema/methods_category/mathematical/opt/root.json +16 -0
  137. mat3ra-esse-2024.2.19.post1/schema/methods_category/mathematical/opt.json +16 -0
  138. mat3ra-esse-2024.2.19.post1/schema/methods_category/mathematical/regression.json +19 -0
  139. mat3ra-esse-2024.2.19.post1/schema/methods_category/physical/qm/wf/ao/dunning.json +18 -0
  140. mat3ra-esse-2024.2.19.post1/schema/methods_category/physical/qm/wf/ao/other.json +18 -0
  141. mat3ra-esse-2024.2.19.post1/schema/methods_category/physical/qm/wf/ao/pople.json +18 -0
  142. mat3ra-esse-2024.2.19.post1/schema/methods_category/physical/qm/wf/ao.json +19 -0
  143. mat3ra-esse-2024.2.19.post1/schema/methods_category/physical/qm/wf/psp.json +19 -0
  144. mat3ra-esse-2024.2.19.post1/schema/methods_category/physical/qm/wf/pw.json +16 -0
  145. mat3ra-esse-2024.2.19.post1/schema/methods_category/physical/qm/wf/smearing.json +20 -0
  146. mat3ra-esse-2024.2.19.post1/schema/methods_category/physical/qm/wf/tetrahedron.json +19 -0
  147. mat3ra-esse-2024.2.19.post1/schema/methods_category/physical/qm/wf.json +16 -0
  148. mat3ra-esse-2024.2.19.post1/schema/methods_category/physical/qm.json +16 -0
  149. mat3ra-esse-2024.2.19.post1/schema/methods_directory/legacy/localorbital.json +23 -0
  150. mat3ra-esse-2024.2.19.post1/schema/methods_directory/legacy/pseudopotential.json +26 -0
  151. mat3ra-esse-2024.2.19.post1/schema/methods_directory/legacy/regression.json +35 -0
  152. mat3ra-esse-2024.2.19.post1/schema/methods_directory/legacy/unknown.json +23 -0
  153. mat3ra-esse-2024.2.19.post1/schema/methods_directory/mathematical/cg.json +20 -0
  154. mat3ra-esse-2024.2.19.post1/schema/methods_directory/mathematical/davidson.json +20 -0
  155. mat3ra-esse-2024.2.19.post1/schema/methods_directory/mathematical/regression/data.json +24 -0
  156. mat3ra-esse-2024.2.19.post1/schema/methods_directory/mathematical/regression/dataset.json +21 -0
  157. mat3ra-esse-2024.2.19.post1/schema/methods_directory/mathematical/regression/kernel_ridge/data_per_property.json +28 -0
  158. mat3ra-esse-2024.2.19.post1/schema/methods_directory/mathematical/regression/linear/data_per_property.json +23 -0
  159. mat3ra-esse-2024.2.19.post1/schema/methods_directory/mathematical/regression/per_feature_item.json +23 -0
  160. mat3ra-esse-2024.2.19.post1/schema/methods_directory/mathematical/regression/precision.json +14 -0
  161. mat3ra-esse-2024.2.19.post1/schema/methods_directory/mathematical/regression/precision_per_property.json +23 -0
  162. mat3ra-esse-2024.2.19.post1/schema/methods_directory/mathematical/regression.json +27 -0
  163. mat3ra-esse-2024.2.19.post1/schema/methods_directory/physical/ao/dunning.json +37 -0
  164. mat3ra-esse-2024.2.19.post1/schema/methods_directory/physical/ao/other.json +37 -0
  165. mat3ra-esse-2024.2.19.post1/schema/methods_directory/physical/ao/pople.json +37 -0
  166. mat3ra-esse-2024.2.19.post1/schema/methods_directory/physical/psp/file.json +29 -0
  167. mat3ra-esse-2024.2.19.post1/schema/methods_directory/physical/psp/file_data_item.json +83 -0
  168. mat3ra-esse-2024.2.19.post1/schema/methods_directory/physical/psp.json +27 -0
  169. mat3ra-esse-2024.2.19.post1/schema/methods_directory/physical/pw.json +20 -0
  170. mat3ra-esse-2024.2.19.post1/schema/methods_directory/physical/smearing.json +20 -0
  171. mat3ra-esse-2024.2.19.post1/schema/methods_directory/physical/tetrahedron.json +19 -0
  172. mat3ra-esse-2024.2.19.post1/schema/model/categorized_model.json +19 -0
  173. mat3ra-esse-2024.2.19.post1/schema/model/mixins/dft/double_hybrid_functional.json +12 -0
  174. mat3ra-esse-2024.2.19.post1/schema/model/mixins/dft/gga_functional.json +13 -0
  175. mat3ra-esse-2024.2.19.post1/schema/model/mixins/dft/hybrid_functional.json +12 -0
  176. mat3ra-esse-2024.2.19.post1/schema/model/mixins/dft/lda_functional.json +13 -0
  177. mat3ra-esse-2024.2.19.post1/schema/model/mixins/dft/mgga_functional.json +13 -0
  178. mat3ra-esse-2024.2.19.post1/schema/model/mixins/dispersion_correction.json +12 -0
  179. mat3ra-esse-2024.2.19.post1/schema/model/mixins/hubbard.json +12 -0
  180. mat3ra-esse-2024.2.19.post1/schema/model/mixins/spin_orbit_coupling.json +12 -0
  181. mat3ra-esse-2024.2.19.post1/schema/model/mixins/spin_polarization.json +13 -0
  182. mat3ra-esse-2024.2.19.post1/schema/model/model_parameters.json +39 -0
  183. mat3ra-esse-2024.2.19.post1/schema/model/model_without_method.json +31 -0
  184. mat3ra-esse-2024.2.19.post1/schema/model.json +25 -0
  185. mat3ra-esse-2024.2.19.post1/schema/models_category/pb/qm/abin/gw.json +19 -0
  186. mat3ra-esse-2024.2.19.post1/schema/models_category/pb/qm/abin.json +16 -0
  187. mat3ra-esse-2024.2.19.post1/schema/models_category/pb/qm/dft/ksdft/double_hybrid.json +16 -0
  188. mat3ra-esse-2024.2.19.post1/schema/models_category/pb/qm/dft/ksdft/gga.json +16 -0
  189. mat3ra-esse-2024.2.19.post1/schema/models_category/pb/qm/dft/ksdft/hybrid.json +16 -0
  190. mat3ra-esse-2024.2.19.post1/schema/models_category/pb/qm/dft/ksdft/lda.json +16 -0
  191. mat3ra-esse-2024.2.19.post1/schema/models_category/pb/qm/dft/ksdft/mgga.json +16 -0
  192. mat3ra-esse-2024.2.19.post1/schema/models_category/pb/qm/dft/ksdft.json +16 -0
  193. mat3ra-esse-2024.2.19.post1/schema/models_category/pb/qm/dft.json +16 -0
  194. mat3ra-esse-2024.2.19.post1/schema/models_category/pb/qm/semp.json +16 -0
  195. mat3ra-esse-2024.2.19.post1/schema/models_category/pb/qm.json +16 -0
  196. mat3ra-esse-2024.2.19.post1/schema/models_category/pb.json +16 -0
  197. mat3ra-esse-2024.2.19.post1/schema/models_category/st/det/ml/re.json +16 -0
  198. mat3ra-esse-2024.2.19.post1/schema/models_category/st/det/ml.json +15 -0
  199. mat3ra-esse-2024.2.19.post1/schema/models_category/st/det.json +15 -0
  200. mat3ra-esse-2024.2.19.post1/schema/models_category/st.json +16 -0
  201. mat3ra-esse-2024.2.19.post1/schema/models_directory/double_hybrid.json +40 -0
  202. mat3ra-esse-2024.2.19.post1/schema/models_directory/gga.json +43 -0
  203. mat3ra-esse-2024.2.19.post1/schema/models_directory/gw.json +56 -0
  204. mat3ra-esse-2024.2.19.post1/schema/models_directory/hybrid.json +43 -0
  205. mat3ra-esse-2024.2.19.post1/schema/models_directory/lda.json +43 -0
  206. mat3ra-esse-2024.2.19.post1/schema/models_directory/legacy/dft.json +82 -0
  207. mat3ra-esse-2024.2.19.post1/schema/models_directory/legacy/ml.json +23 -0
  208. mat3ra-esse-2024.2.19.post1/schema/models_directory/legacy/unknown.json +23 -0
  209. mat3ra-esse-2024.2.19.post1/schema/models_directory/mgga.json +43 -0
  210. mat3ra-esse-2024.2.19.post1/schema/models_directory/re.json +24 -0
  211. mat3ra-esse-2024.2.19.post1/schema/project.json +40 -0
  212. mat3ra-esse-2024.2.19.post1/schema/properties_directory/derived_properties.json +37 -0
  213. mat3ra-esse-2024.2.19.post1/schema/properties_directory/electronic_configuration.json +16 -0
  214. mat3ra-esse-2024.2.19.post1/schema/properties_directory/elemental/atomic_radius.json +22 -0
  215. mat3ra-esse-2024.2.19.post1/schema/properties_directory/elemental/electronegativity.json +19 -0
  216. mat3ra-esse-2024.2.19.post1/schema/properties_directory/elemental/ionization_potential.json +22 -0
  217. mat3ra-esse-2024.2.19.post1/schema/properties_directory/non-scalar/average_potential_profile.json +42 -0
  218. mat3ra-esse-2024.2.19.post1/schema/properties_directory/non-scalar/band_gaps.json +54 -0
  219. mat3ra-esse-2024.2.19.post1/schema/properties_directory/non-scalar/band_structure.json +55 -0
  220. mat3ra-esse-2024.2.19.post1/schema/properties_directory/non-scalar/charge_density_profile.json +41 -0
  221. mat3ra-esse-2024.2.19.post1/schema/properties_directory/non-scalar/density_of_states.json +73 -0
  222. mat3ra-esse-2024.2.19.post1/schema/properties_directory/non-scalar/dielectric_tensor.json +23 -0
  223. mat3ra-esse-2024.2.19.post1/schema/properties_directory/non-scalar/file_content.json +35 -0
  224. mat3ra-esse-2024.2.19.post1/schema/properties_directory/non-scalar/hubbard_u.json +39 -0
  225. mat3ra-esse-2024.2.19.post1/schema/properties_directory/non-scalar/hubbard_v.json +41 -0
  226. mat3ra-esse-2024.2.19.post1/schema/properties_directory/non-scalar/hubbard_v_nn.json +12 -0
  227. mat3ra-esse-2024.2.19.post1/schema/properties_directory/non-scalar/phonon_dispersions.json +44 -0
  228. mat3ra-esse-2024.2.19.post1/schema/properties_directory/non-scalar/phonon_dos.json +44 -0
  229. mat3ra-esse-2024.2.19.post1/schema/properties_directory/non-scalar/potential_profile.json +41 -0
  230. mat3ra-esse-2024.2.19.post1/schema/properties_directory/non-scalar/reaction_energy_profile.json +41 -0
  231. mat3ra-esse-2024.2.19.post1/schema/properties_directory/non-scalar/stress_tensor.json +19 -0
  232. mat3ra-esse-2024.2.19.post1/schema/properties_directory/non-scalar/total_energy_contributions.json +224 -0
  233. mat3ra-esse-2024.2.19.post1/schema/properties_directory/non-scalar/vibrational_spectrum.json +47 -0
  234. mat3ra-esse-2024.2.19.post1/schema/properties_directory/scalar/electron_affinity.json +18 -0
  235. mat3ra-esse-2024.2.19.post1/schema/properties_directory/scalar/fermi_energy.json +18 -0
  236. mat3ra-esse-2024.2.19.post1/schema/properties_directory/scalar/formation_energy.json +18 -0
  237. mat3ra-esse-2024.2.19.post1/schema/properties_directory/scalar/ionization_potential.json +18 -0
  238. mat3ra-esse-2024.2.19.post1/schema/properties_directory/scalar/pressure.json +22 -0
  239. mat3ra-esse-2024.2.19.post1/schema/properties_directory/scalar/reaction_energy_barrier.json +18 -0
  240. mat3ra-esse-2024.2.19.post1/schema/properties_directory/scalar/surface_energy.json +18 -0
  241. mat3ra-esse-2024.2.19.post1/schema/properties_directory/scalar/total_energy.json +18 -0
  242. mat3ra-esse-2024.2.19.post1/schema/properties_directory/scalar/total_force.json +21 -0
  243. mat3ra-esse-2024.2.19.post1/schema/properties_directory/scalar/valence_band_offset.json +18 -0
  244. mat3ra-esse-2024.2.19.post1/schema/properties_directory/scalar/zero_point_energy.json +18 -0
  245. mat3ra-esse-2024.2.19.post1/schema/properties_directory/structural/atomic_forces.json +20 -0
  246. mat3ra-esse-2024.2.19.post1/schema/properties_directory/structural/basis/atomic_constraints.json +17 -0
  247. mat3ra-esse-2024.2.19.post1/schema/properties_directory/structural/basis/atomic_coordinate.json +15 -0
  248. mat3ra-esse-2024.2.19.post1/schema/properties_directory/structural/basis/atomic_coordinates.json +22 -0
  249. mat3ra-esse-2024.2.19.post1/schema/properties_directory/structural/basis/atomic_element.json +26 -0
  250. mat3ra-esse-2024.2.19.post1/schema/properties_directory/structural/basis/bonds.json +36 -0
  251. mat3ra-esse-2024.2.19.post1/schema/properties_directory/structural/basis.json +33 -0
  252. mat3ra-esse-2024.2.19.post1/schema/properties_directory/structural/density.json +23 -0
  253. mat3ra-esse-2024.2.19.post1/schema/properties_directory/structural/elemental_ratio.json +28 -0
  254. mat3ra-esse-2024.2.19.post1/schema/properties_directory/structural/inchi.json +18 -0
  255. mat3ra-esse-2024.2.19.post1/schema/properties_directory/structural/inchi_key.json +18 -0
  256. mat3ra-esse-2024.2.19.post1/schema/properties_directory/structural/lattice/lattice_bravais.json +39 -0
  257. mat3ra-esse-2024.2.19.post1/schema/properties_directory/structural/lattice/lattice_vectors.json +21 -0
  258. mat3ra-esse-2024.2.19.post1/schema/properties_directory/structural/lattice/type_enum.json +22 -0
  259. mat3ra-esse-2024.2.19.post1/schema/properties_directory/structural/lattice/type_extended_enum.json +32 -0
  260. mat3ra-esse-2024.2.19.post1/schema/properties_directory/structural/lattice.json +25 -0
  261. mat3ra-esse-2024.2.19.post1/schema/properties_directory/structural/magnetic_moments.json +20 -0
  262. mat3ra-esse-2024.2.19.post1/schema/properties_directory/structural/molecular_pattern.json +19 -0
  263. mat3ra-esse-2024.2.19.post1/schema/properties_directory/structural/p-norm.json +23 -0
  264. mat3ra-esse-2024.2.19.post1/schema/properties_directory/structural/patterns/functional_group.json +34 -0
  265. mat3ra-esse-2024.2.19.post1/schema/properties_directory/structural/patterns/ring.json +33 -0
  266. mat3ra-esse-2024.2.19.post1/schema/properties_directory/structural/patterns/special_bond.json +31 -0
  267. mat3ra-esse-2024.2.19.post1/schema/properties_directory/structural/symmetry.json +37 -0
  268. mat3ra-esse-2024.2.19.post1/schema/properties_directory/structural/volume.json +23 -0
  269. mat3ra-esse-2024.2.19.post1/schema/properties_directory/workflow/convergence/electronic.json +32 -0
  270. mat3ra-esse-2024.2.19.post1/schema/properties_directory/workflow/convergence/ionic.json +62 -0
  271. mat3ra-esse-2024.2.19.post1/schema/properties_directory/workflow/convergence/kpoint.json +48 -0
  272. mat3ra-esse-2024.2.19.post1/schema/property/base.json +58 -0
  273. mat3ra-esse-2024.2.19.post1/schema/property/meta.json +11 -0
  274. mat3ra-esse-2024.2.19.post1/schema/property/raw.json +58 -0
  275. mat3ra-esse-2024.2.19.post1/schema/property/source.json +26 -0
  276. mat3ra-esse-2024.2.19.post1/schema/software/application.json +38 -0
  277. mat3ra-esse-2024.2.19.post1/schema/software/executable.json +31 -0
  278. mat3ra-esse-2024.2.19.post1/schema/software/flavor.json +32 -0
  279. mat3ra-esse-2024.2.19.post1/schema/software/template.json +35 -0
  280. mat3ra-esse-2024.2.19.post1/schema/software_directory/ml/exabyteml.json +23 -0
  281. mat3ra-esse-2024.2.19.post1/schema/software_directory/ml/unit/execution/evaluate/cross-validate.json +26 -0
  282. mat3ra-esse-2024.2.19.post1/schema/software_directory/ml/unit/execution/initialize.json +30 -0
  283. mat3ra-esse-2024.2.19.post1/schema/software_directory/ml/unit/execution/score.json +14 -0
  284. mat3ra-esse-2024.2.19.post1/schema/software_directory/ml/unit/execution/train.json +39 -0
  285. mat3ra-esse-2024.2.19.post1/schema/software_directory/ml/unit/processing/data_transformation/manipulation.json +50 -0
  286. mat3ra-esse-2024.2.19.post1/schema/software_directory/ml/unit/processing/data_transformation/scale_and_reduce.json +70 -0
  287. mat3ra-esse-2024.2.19.post1/schema/software_directory/ml/unit/processing/feature_selection/filter_based.json +45 -0
  288. mat3ra-esse-2024.2.19.post1/schema/software_directory/modeling/deepmd.json +35 -0
  289. mat3ra-esse-2024.2.19.post1/schema/software_directory/modeling/espresso/arguments.json +44 -0
  290. mat3ra-esse-2024.2.19.post1/schema/software_directory/modeling/espresso.json +34 -0
  291. mat3ra-esse-2024.2.19.post1/schema/software_directory/modeling/nwchem.json +34 -0
  292. mat3ra-esse-2024.2.19.post1/schema/software_directory/modeling/unit/execution.json +14 -0
  293. mat3ra-esse-2024.2.19.post1/schema/software_directory/modeling/vasp.json +40 -0
  294. mat3ra-esse-2024.2.19.post1/schema/software_directory/scripting/jupyter-lab.json +38 -0
  295. mat3ra-esse-2024.2.19.post1/schema/software_directory/scripting/python.json +52 -0
  296. mat3ra-esse-2024.2.19.post1/schema/software_directory/scripting/shell.json +52 -0
  297. mat3ra-esse-2024.2.19.post1/schema/software_directory/scripting/unit/execution.json +14 -0
  298. mat3ra-esse-2024.2.19.post1/schema/system/_material.json +20 -0
  299. mat3ra-esse-2024.2.19.post1/schema/system/_parent_job.json +20 -0
  300. mat3ra-esse-2024.2.19.post1/schema/system/_project.json +20 -0
  301. mat3ra-esse-2024.2.19.post1/schema/system/bankable.json +16 -0
  302. mat3ra-esse-2024.2.19.post1/schema/system/consistency_check.json +39 -0
  303. mat3ra-esse-2024.2.19.post1/schema/system/creator.json +20 -0
  304. mat3ra-esse-2024.2.19.post1/schema/system/creator_account.json +11 -0
  305. mat3ra-esse-2024.2.19.post1/schema/system/database_source.json +38 -0
  306. mat3ra-esse-2024.2.19.post1/schema/system/defaultable.json +13 -0
  307. mat3ra-esse-2024.2.19.post1/schema/system/description.json +15 -0
  308. mat3ra-esse-2024.2.19.post1/schema/system/entity_reference.json +20 -0
  309. mat3ra-esse-2024.2.19.post1/schema/system/file_source.json +30 -0
  310. mat3ra-esse-2024.2.19.post1/schema/system/history.json +26 -0
  311. mat3ra-esse-2024.2.19.post1/schema/system/in_set.json +29 -0
  312. mat3ra-esse-2024.2.19.post1/schema/system/is_multi_material.json +11 -0
  313. mat3ra-esse-2024.2.19.post1/schema/system/is_outdated.json +11 -0
  314. mat3ra-esse-2024.2.19.post1/schema/system/job_extended.json +40 -0
  315. mat3ra-esse-2024.2.19.post1/schema/system/message.json +68 -0
  316. mat3ra-esse-2024.2.19.post1/schema/system/metadata.json +11 -0
  317. mat3ra-esse-2024.2.19.post1/schema/system/name.json +12 -0
  318. mat3ra-esse-2024.2.19.post1/schema/system/owner.json +20 -0
  319. mat3ra-esse-2024.2.19.post1/schema/system/path.json +11 -0
  320. mat3ra-esse-2024.2.19.post1/schema/system/path_entity.json +13 -0
  321. mat3ra-esse-2024.2.19.post1/schema/system/schema_version.json +13 -0
  322. mat3ra-esse-2024.2.19.post1/schema/system/scope.json +11 -0
  323. mat3ra-esse-2024.2.19.post1/schema/system/set.json +17 -0
  324. mat3ra-esse-2024.2.19.post1/schema/system/sharing.json +11 -0
  325. mat3ra-esse-2024.2.19.post1/schema/system/soft_removable.json +16 -0
  326. mat3ra-esse-2024.2.19.post1/schema/system/status.json +32 -0
  327. mat3ra-esse-2024.2.19.post1/schema/system/tags.json +15 -0
  328. mat3ra-esse-2024.2.19.post1/schema/system/timestampable.json +38 -0
  329. mat3ra-esse-2024.2.19.post1/schema/system/use_values.json +11 -0
  330. mat3ra-esse-2024.2.19.post1/schema/workflow/base.json +39 -0
  331. mat3ra-esse-2024.2.19.post1/schema/workflow/base_flow.json +46 -0
  332. mat3ra-esse-2024.2.19.post1/schema/workflow/scope.json +20 -0
  333. mat3ra-esse-2024.2.19.post1/schema/workflow/subworkflow/unit.json +35 -0
  334. mat3ra-esse-2024.2.19.post1/schema/workflow/subworkflow.json +37 -0
  335. mat3ra-esse-2024.2.19.post1/schema/workflow/unit/assertion.json +30 -0
  336. mat3ra-esse-2024.2.19.post1/schema/workflow/unit/assignment.json +51 -0
  337. mat3ra-esse-2024.2.19.post1/schema/workflow/unit/base.json +68 -0
  338. mat3ra-esse-2024.2.19.post1/schema/workflow/unit/condition.json +52 -0
  339. mat3ra-esse-2024.2.19.post1/schema/workflow/unit/execution.json +40 -0
  340. mat3ra-esse-2024.2.19.post1/schema/workflow/unit/input/_input.json +22 -0
  341. mat3ra-esse-2024.2.19.post1/schema/workflow/unit/input/_inputItem.json +20 -0
  342. mat3ra-esse-2024.2.19.post1/schema/workflow/unit/input/_inputItemId.json +19 -0
  343. mat3ra-esse-2024.2.19.post1/schema/workflow/unit/input/_inputItemScope.json +20 -0
  344. mat3ra-esse-2024.2.19.post1/schema/workflow/unit/input/_map_input/values.json +11 -0
  345. mat3ra-esse-2024.2.19.post1/schema/workflow/unit/input/_map_input.json +36 -0
  346. mat3ra-esse-2024.2.19.post1/schema/workflow/unit/io/api.json +24 -0
  347. mat3ra-esse-2024.2.19.post1/schema/workflow/unit/io/db.json +39 -0
  348. mat3ra-esse-2024.2.19.post1/schema/workflow/unit/io/object_storage.json +25 -0
  349. mat3ra-esse-2024.2.19.post1/schema/workflow/unit/io.json +53 -0
  350. mat3ra-esse-2024.2.19.post1/schema/workflow/unit/map.json +67 -0
  351. mat3ra-esse-2024.2.19.post1/schema/workflow/unit/processing.json +34 -0
  352. mat3ra-esse-2024.2.19.post1/schema/workflow/unit/reduce.json +50 -0
  353. mat3ra-esse-2024.2.19.post1/schema/workflow/unit/runtime/_runtime_item_full_object.json +15 -0
  354. mat3ra-esse-2024.2.19.post1/schema/workflow/unit/runtime/_runtime_item_name_object.json +15 -0
  355. mat3ra-esse-2024.2.19.post1/schema/workflow/unit/runtime/_runtime_item_string.json +7 -0
  356. mat3ra-esse-2024.2.19.post1/schema/workflow/unit/runtime/runtime_item.json +13 -0
  357. mat3ra-esse-2024.2.19.post1/schema/workflow/unit/runtime/runtime_items.json +36 -0
  358. mat3ra-esse-2024.2.19.post1/schema/workflow/unit/subworkflow.json +18 -0
  359. mat3ra-esse-2024.2.19.post1/schema/workflow/unit.json +41 -0
  360. mat3ra-esse-2024.2.19.post1/schema/workflow.json +35 -0
  361. mat3ra-esse-2024.2.19.post1/set_schema_ids.ts +3 -0
  362. mat3ra-esse-2024.2.19.post1/src/js/esse/JSONSchemasGenerator.ts +94 -0
  363. mat3ra-esse-2024.2.19.post1/src/js/esse/JSONSchemasInterface.ts +56 -0
  364. mat3ra-esse-2024.2.19.post1/src/js/esse/JSONSchemasInterfaceServer.ts +49 -0
  365. mat3ra-esse-2024.2.19.post1/src/js/esse/schemaUtils.ts +28 -0
  366. mat3ra-esse-2024.2.19.post1/src/js/esse/types.ts +3 -0
  367. mat3ra-esse-2024.2.19.post1/src/js/esse/utils.ts +72 -0
  368. mat3ra-esse-2024.2.19.post1/src/js/json_include/index.ts +75 -0
  369. mat3ra-esse-2024.2.19.post1/src/js/scripts/compileTs.ts +84 -0
  370. mat3ra-esse-2024.2.19.post1/src/js/scripts/createEnumsFromYaml.ts +29 -0
  371. mat3ra-esse-2024.2.19.post1/src/js/scripts/setSchemaIds.ts +28 -0
  372. mat3ra-esse-2024.2.19.post1/src/js/utils/ajv.ts +119 -0
  373. mat3ra-esse-2024.2.19.post1/src/js/utils/common.ts +15 -0
  374. mat3ra-esse-2024.2.19.post1/src/js/utils/filesystem.ts +34 -0
  375. mat3ra-esse-2024.2.19.post1/src/py/mat3ra/esse/data/examples.py +2 -0
  376. mat3ra-esse-2024.2.19.post1/src/py/mat3ra/esse/data/properties.py +3 -0
  377. mat3ra-esse-2024.2.19.post1/src/py/mat3ra/esse/data/schemas.py +2 -0
  378. mat3ra-esse-2024.2.19.post1/src/py/mat3ra_esse.egg-info/PKG-INFO +193 -0
  379. mat3ra-esse-2024.2.19.post1/src/py/mat3ra_esse.egg-info/SOURCES.txt +645 -0
  380. mat3ra-esse-2024.2.19.post1/tests/js/JSONSchemasInterface.tests.ts +42 -0
  381. mat3ra-esse-2024.2.19.post1/tests/js/fixtures/json/1.json +13 -0
  382. mat3ra-esse-2024.2.19.post1/tests/js/fixtures/json/2.json +36 -0
  383. mat3ra-esse-2024.2.19.post1/tests/js/validate.ts +52 -0
  384. mat3ra-esse-2024.2.19.post1/tsconfig.json +34 -0
  385. mat3ra-esse-2024.2.6.post0/.eslintrc.json +0 -3
  386. mat3ra-esse-2024.2.6.post0/PKG-INFO +0 -193
  387. mat3ra-esse-2024.2.6.post0/build_schemas.js +0 -72
  388. mat3ra-esse-2024.2.6.post0/example/models_directory/re.json +0 -9
  389. mat3ra-esse-2024.2.6.post0/example/workflow/subworkflow.json +0 -18
  390. mat3ra-esse-2024.2.6.post0/example/workflow/unit.json +0 -8
  391. mat3ra-esse-2024.2.6.post0/example/workflow.json +0 -34
  392. mat3ra-esse-2024.2.6.post0/package-lock.json +0 -5549
  393. mat3ra-esse-2024.2.6.post0/package.json +0 -77
  394. mat3ra-esse-2024.2.6.post0/schema/3pse/file/applications/espresso/7.2/pw.x/atomic_positions.json +0 -66
  395. mat3ra-esse-2024.2.6.post0/schema/3pse/file/applications/espresso/7.2/pw.x/atomic_species.json +0 -30
  396. mat3ra-esse-2024.2.6.post0/schema/3pse/file/applications/espresso/7.2/pw.x/cell.json +0 -89
  397. mat3ra-esse-2024.2.6.post0/schema/3pse/file/applications/espresso/7.2/pw.x/cell_parameters.json +0 -36
  398. mat3ra-esse-2024.2.6.post0/schema/3pse/file/applications/espresso/7.2/pw.x/control.json +0 -181
  399. mat3ra-esse-2024.2.6.post0/schema/3pse/file/applications/espresso/7.2/pw.x/electrons.json +0 -157
  400. mat3ra-esse-2024.2.6.post0/schema/3pse/file/applications/espresso/7.2/pw.x/hubbard.json +0 -219
  401. mat3ra-esse-2024.2.6.post0/schema/3pse/file/applications/espresso/7.2/pw.x/ions.json +0 -216
  402. mat3ra-esse-2024.2.6.post0/schema/3pse/file/applications/espresso/7.2/pw.x/k_points.json +0 -87
  403. mat3ra-esse-2024.2.6.post0/schema/3pse/file/applications/espresso/7.2/pw.x/system.json +0 -649
  404. mat3ra-esse-2024.2.6.post0/schema/3pse/file/applications/espresso/7.2/pw.x.json +0 -52
  405. mat3ra-esse-2024.2.6.post0/schema/core/abstract/2d_data.json +0 -19
  406. mat3ra-esse-2024.2.6.post0/schema/core/abstract/2d_plot.json +0 -29
  407. mat3ra-esse-2024.2.6.post0/schema/core/abstract/3d_grid.json +0 -17
  408. mat3ra-esse-2024.2.6.post0/schema/core/abstract/3d_tensor.json +0 -11
  409. mat3ra-esse-2024.2.6.post0/schema/core/abstract/3d_vector_basis.json +0 -25
  410. mat3ra-esse-2024.2.6.post0/schema/core/abstract/point.json +0 -10
  411. mat3ra-esse-2024.2.6.post0/schema/core/abstract/vector.json +0 -13
  412. mat3ra-esse-2024.2.6.post0/schema/core/primitive/1d_data_series.json +0 -16
  413. mat3ra-esse-2024.2.6.post0/schema/core/primitive/3d_lattice.json +0 -40
  414. mat3ra-esse-2024.2.6.post0/schema/core/primitive/array_of_3_booleans.json +0 -11
  415. mat3ra-esse-2024.2.6.post0/schema/core/primitive/array_of_3_numbers.json +0 -11
  416. mat3ra-esse-2024.2.6.post0/schema/core/primitive/array_of_ids.json +0 -17
  417. mat3ra-esse-2024.2.6.post0/schema/core/primitive/array_of_strings.json +0 -11
  418. mat3ra-esse-2024.2.6.post0/schema/core/primitive/axis.json +0 -18
  419. mat3ra-esse-2024.2.6.post0/schema/core/primitive/group_info.json +0 -16
  420. mat3ra-esse-2024.2.6.post0/schema/core/primitive/integer_one_or_zero.json +0 -8
  421. mat3ra-esse-2024.2.6.post0/schema/core/primitive/linked_list/base_node.json +0 -34
  422. mat3ra-esse-2024.2.6.post0/schema/core/primitive/linked_list/named_node.json +0 -14
  423. mat3ra-esse-2024.2.6.post0/schema/core/primitive/linked_list/named_node_in_group.json +0 -14
  424. mat3ra-esse-2024.2.6.post0/schema/core/primitive/linked_list/node_with_type.json +0 -16
  425. mat3ra-esse-2024.2.6.post0/schema/core/primitive/linked_list.json +0 -24
  426. mat3ra-esse-2024.2.6.post0/schema/core/primitive/scalar.json +0 -14
  427. mat3ra-esse-2024.2.6.post0/schema/core/primitive/slugified_entry.json +0 -21
  428. mat3ra-esse-2024.2.6.post0/schema/core/primitive/slugified_entry_or_slug.json +0 -14
  429. mat3ra-esse-2024.2.6.post0/schema/core/primitive/string.json +0 -14
  430. mat3ra-esse-2024.2.6.post0/schema/core/reference/exabyte.json +0 -19
  431. mat3ra-esse-2024.2.6.post0/schema/core/reference/experiment/condition.json +0 -29
  432. mat3ra-esse-2024.2.6.post0/schema/core/reference/experiment/location.json +0 -19
  433. mat3ra-esse-2024.2.6.post0/schema/core/reference/experiment.json +0 -58
  434. mat3ra-esse-2024.2.6.post0/schema/core/reference/literature/name.json +0 -24
  435. mat3ra-esse-2024.2.6.post0/schema/core/reference/literature/pages.json +0 -17
  436. mat3ra-esse-2024.2.6.post0/schema/core/reference/literature.json +0 -82
  437. mat3ra-esse-2024.2.6.post0/schema/core/reference/modeling/exabyte.json +0 -30
  438. mat3ra-esse-2024.2.6.post0/schema/core/reference/modeling.json +0 -10
  439. mat3ra-esse-2024.2.6.post0/schema/core/reference.json +0 -16
  440. mat3ra-esse-2024.2.6.post0/schema/core/reusable/atomic_data/per_orbital.json +0 -22
  441. mat3ra-esse-2024.2.6.post0/schema/core/reusable/atomic_data/per_orbital_pair.json +0 -39
  442. mat3ra-esse-2024.2.6.post0/schema/core/reusable/atomic_data/value_number.json +0 -13
  443. mat3ra-esse-2024.2.6.post0/schema/core/reusable/atomic_data/value_string.json +0 -13
  444. mat3ra-esse-2024.2.6.post0/schema/core/reusable/atomic_data_per_orbital_numeric.json +0 -15
  445. mat3ra-esse-2024.2.6.post0/schema/core/reusable/atomic_data_per_orbital_pair_numeric.json +0 -15
  446. mat3ra-esse-2024.2.6.post0/schema/core/reusable/atomic_orbital.json +0 -32
  447. mat3ra-esse-2024.2.6.post0/schema/core/reusable/atomic_scalars.json +0 -17
  448. mat3ra-esse-2024.2.6.post0/schema/core/reusable/atomic_strings.json +0 -17
  449. mat3ra-esse-2024.2.6.post0/schema/core/reusable/atomic_vectors.json +0 -17
  450. mat3ra-esse-2024.2.6.post0/schema/core/reusable/band_gap.json +0 -44
  451. mat3ra-esse-2024.2.6.post0/schema/core/reusable/categories.json +0 -29
  452. mat3ra-esse-2024.2.6.post0/schema/core/reusable/category_path.json +0 -7
  453. mat3ra-esse-2024.2.6.post0/schema/core/reusable/dielectric_tensor_component.json +0 -28
  454. mat3ra-esse-2024.2.6.post0/schema/core/reusable/energy.json +0 -29
  455. mat3ra-esse-2024.2.6.post0/schema/core/reusable/file_metadata.json +0 -20
  456. mat3ra-esse-2024.2.6.post0/schema/core/reusable/frequency_function_matrix.json +0 -23
  457. mat3ra-esse-2024.2.6.post0/schema/core/reusable/object_storage_container_data.json +0 -37
  458. mat3ra-esse-2024.2.6.post0/schema/element.json +0 -28
  459. mat3ra-esse-2024.2.6.post0/schema/in_memory_entity/base.json +0 -30
  460. mat3ra-esse-2024.2.6.post0/schema/in_memory_entity/defaultable.json +0 -13
  461. mat3ra-esse-2024.2.6.post0/schema/in_memory_entity/named.json +0 -13
  462. mat3ra-esse-2024.2.6.post0/schema/in_memory_entity/named_defaultable.json +0 -16
  463. mat3ra-esse-2024.2.6.post0/schema/in_memory_entity/named_defaultable_has_metadata.json +0 -19
  464. mat3ra-esse-2024.2.6.post0/schema/in_memory_entity/named_defaultable_runtime_items.json +0 -19
  465. mat3ra-esse-2024.2.6.post0/schema/job/base.json +0 -80
  466. mat3ra-esse-2024.2.6.post0/schema/job/compute.json +0 -145
  467. mat3ra-esse-2024.2.6.post0/schema/job.json +0 -19
  468. mat3ra-esse-2024.2.6.post0/schema/material/conventional.json +0 -10
  469. mat3ra-esse-2024.2.6.post0/schema/material.json +0 -57
  470. mat3ra-esse-2024.2.6.post0/schema/method/categorized_method.json +0 -24
  471. mat3ra-esse-2024.2.6.post0/schema/method/method_parameters.json +0 -20
  472. mat3ra-esse-2024.2.6.post0/schema/method/unit_method.json +0 -27
  473. mat3ra-esse-2024.2.6.post0/schema/method.json +0 -27
  474. mat3ra-esse-2024.2.6.post0/schema/methods_category/mathematical/diff/fd.json +0 -15
  475. mat3ra-esse-2024.2.6.post0/schema/methods_category/mathematical/diff.json +0 -15
  476. mat3ra-esse-2024.2.6.post0/schema/methods_category/mathematical/discr/mesh/hybrid.json +0 -15
  477. mat3ra-esse-2024.2.6.post0/schema/methods_category/mathematical/discr/mesh/nstruct.json +0 -15
  478. mat3ra-esse-2024.2.6.post0/schema/methods_category/mathematical/discr/mesh/struct/cartesian.json +0 -15
  479. mat3ra-esse-2024.2.6.post0/schema/methods_category/mathematical/discr/mesh/struct.json +0 -15
  480. mat3ra-esse-2024.2.6.post0/schema/methods_category/mathematical/discr/mesh.json +0 -15
  481. mat3ra-esse-2024.2.6.post0/schema/methods_category/mathematical/discr.json +0 -15
  482. mat3ra-esse-2024.2.6.post0/schema/methods_category/mathematical/fapprx/basisexp.json +0 -15
  483. mat3ra-esse-2024.2.6.post0/schema/methods_category/mathematical/fapprx/ipol/lin.json +0 -15
  484. mat3ra-esse-2024.2.6.post0/schema/methods_category/mathematical/fapprx/ipol/poly.json +0 -15
  485. mat3ra-esse-2024.2.6.post0/schema/methods_category/mathematical/fapprx/ipol/spline.json +0 -15
  486. mat3ra-esse-2024.2.6.post0/schema/methods_category/mathematical/fapprx/ipol.json +0 -15
  487. mat3ra-esse-2024.2.6.post0/schema/methods_category/mathematical/fapprx.json +0 -15
  488. mat3ra-esse-2024.2.6.post0/schema/methods_category/mathematical/intgr/analytic/volume.json +0 -18
  489. mat3ra-esse-2024.2.6.post0/schema/methods_category/mathematical/intgr/analytic.json +0 -15
  490. mat3ra-esse-2024.2.6.post0/schema/methods_category/mathematical/intgr/diffeq/order1.json +0 -15
  491. mat3ra-esse-2024.2.6.post0/schema/methods_category/mathematical/intgr/diffeq/order2.json +0 -15
  492. mat3ra-esse-2024.2.6.post0/schema/methods_category/mathematical/intgr/diffeq.json +0 -15
  493. mat3ra-esse-2024.2.6.post0/schema/methods_category/mathematical/intgr/numquad/gauss.json +0 -15
  494. mat3ra-esse-2024.2.6.post0/schema/methods_category/mathematical/intgr/numquad/newcot.json +0 -15
  495. mat3ra-esse-2024.2.6.post0/schema/methods_category/mathematical/intgr/numquad.json +0 -15
  496. mat3ra-esse-2024.2.6.post0/schema/methods_category/mathematical/intgr/transf/fourier.json +0 -15
  497. mat3ra-esse-2024.2.6.post0/schema/methods_category/mathematical/intgr/transf.json +0 -15
  498. mat3ra-esse-2024.2.6.post0/schema/methods_category/mathematical/intgr.json +0 -15
  499. mat3ra-esse-2024.2.6.post0/schema/methods_category/mathematical/linalg/dcomp.json +0 -15
  500. mat3ra-esse-2024.2.6.post0/schema/methods_category/mathematical/linalg/diag/davidson.json +0 -15
  501. mat3ra-esse-2024.2.6.post0/schema/methods_category/mathematical/linalg/diag.json +0 -15
  502. mat3ra-esse-2024.2.6.post0/schema/methods_category/mathematical/linalg/lintra.json +0 -15
  503. mat3ra-esse-2024.2.6.post0/schema/methods_category/mathematical/linalg/matf.json +0 -15
  504. mat3ra-esse-2024.2.6.post0/schema/methods_category/mathematical/linalg.json +0 -15
  505. mat3ra-esse-2024.2.6.post0/schema/methods_category/mathematical/opt/diff/bracket.json +0 -15
  506. mat3ra-esse-2024.2.6.post0/schema/methods_category/mathematical/opt/diff/local.json +0 -15
  507. mat3ra-esse-2024.2.6.post0/schema/methods_category/mathematical/opt/diff/order1.json +0 -15
  508. mat3ra-esse-2024.2.6.post0/schema/methods_category/mathematical/opt/diff/order2.json +0 -15
  509. mat3ra-esse-2024.2.6.post0/schema/methods_category/mathematical/opt/diff/ordern/cg.json +0 -15
  510. mat3ra-esse-2024.2.6.post0/schema/methods_category/mathematical/opt/diff/ordern.json +0 -15
  511. mat3ra-esse-2024.2.6.post0/schema/methods_category/mathematical/opt/diff.json +0 -15
  512. mat3ra-esse-2024.2.6.post0/schema/methods_category/mathematical/opt/ndiff/direct.json +0 -15
  513. mat3ra-esse-2024.2.6.post0/schema/methods_category/mathematical/opt/ndiff/pop.json +0 -15
  514. mat3ra-esse-2024.2.6.post0/schema/methods_category/mathematical/opt/ndiff/stoch.json +0 -15
  515. mat3ra-esse-2024.2.6.post0/schema/methods_category/mathematical/opt/ndiff.json +0 -15
  516. mat3ra-esse-2024.2.6.post0/schema/methods_category/mathematical/opt/root/bracket.json +0 -15
  517. mat3ra-esse-2024.2.6.post0/schema/methods_category/mathematical/opt/root/iter.json +0 -15
  518. mat3ra-esse-2024.2.6.post0/schema/methods_category/mathematical/opt/root.json +0 -15
  519. mat3ra-esse-2024.2.6.post0/schema/methods_category/mathematical/opt.json +0 -15
  520. mat3ra-esse-2024.2.6.post0/schema/methods_category/mathematical/regression.json +0 -18
  521. mat3ra-esse-2024.2.6.post0/schema/methods_category/physical/qm/wf/ao/dunning.json +0 -17
  522. mat3ra-esse-2024.2.6.post0/schema/methods_category/physical/qm/wf/ao/other.json +0 -17
  523. mat3ra-esse-2024.2.6.post0/schema/methods_category/physical/qm/wf/ao/pople.json +0 -17
  524. mat3ra-esse-2024.2.6.post0/schema/methods_category/physical/qm/wf/ao.json +0 -18
  525. mat3ra-esse-2024.2.6.post0/schema/methods_category/physical/qm/wf/psp.json +0 -18
  526. mat3ra-esse-2024.2.6.post0/schema/methods_category/physical/qm/wf/pw.json +0 -15
  527. mat3ra-esse-2024.2.6.post0/schema/methods_category/physical/qm/wf/smearing.json +0 -19
  528. mat3ra-esse-2024.2.6.post0/schema/methods_category/physical/qm/wf/tetrahedron.json +0 -18
  529. mat3ra-esse-2024.2.6.post0/schema/methods_category/physical/qm/wf.json +0 -15
  530. mat3ra-esse-2024.2.6.post0/schema/methods_category/physical/qm.json +0 -15
  531. mat3ra-esse-2024.2.6.post0/schema/methods_directory/legacy/localorbital.json +0 -22
  532. mat3ra-esse-2024.2.6.post0/schema/methods_directory/legacy/pseudopotential.json +0 -25
  533. mat3ra-esse-2024.2.6.post0/schema/methods_directory/legacy/regression.json +0 -34
  534. mat3ra-esse-2024.2.6.post0/schema/methods_directory/legacy/unknown.json +0 -22
  535. mat3ra-esse-2024.2.6.post0/schema/methods_directory/mathematical/cg.json +0 -17
  536. mat3ra-esse-2024.2.6.post0/schema/methods_directory/mathematical/davidson.json +0 -17
  537. mat3ra-esse-2024.2.6.post0/schema/methods_directory/mathematical/regression/data.json +0 -24
  538. mat3ra-esse-2024.2.6.post0/schema/methods_directory/mathematical/regression/dataset.json +0 -21
  539. mat3ra-esse-2024.2.6.post0/schema/methods_directory/mathematical/regression/kernel_ridge/data_per_property.json +0 -27
  540. mat3ra-esse-2024.2.6.post0/schema/methods_directory/mathematical/regression/linear/data_per_property.json +0 -22
  541. mat3ra-esse-2024.2.6.post0/schema/methods_directory/mathematical/regression/per_feature_item.json +0 -22
  542. mat3ra-esse-2024.2.6.post0/schema/methods_directory/mathematical/regression/precision.json +0 -14
  543. mat3ra-esse-2024.2.6.post0/schema/methods_directory/mathematical/regression/precision_per_property.json +0 -23
  544. mat3ra-esse-2024.2.6.post0/schema/methods_directory/mathematical/regression.json +0 -26
  545. mat3ra-esse-2024.2.6.post0/schema/methods_directory/physical/ao/dunning.json +0 -33
  546. mat3ra-esse-2024.2.6.post0/schema/methods_directory/physical/ao/other.json +0 -33
  547. mat3ra-esse-2024.2.6.post0/schema/methods_directory/physical/ao/pople.json +0 -33
  548. mat3ra-esse-2024.2.6.post0/schema/methods_directory/physical/psp/file.json +0 -26
  549. mat3ra-esse-2024.2.6.post0/schema/methods_directory/physical/psp/file_data_item.json +0 -80
  550. mat3ra-esse-2024.2.6.post0/schema/methods_directory/physical/psp.json +0 -24
  551. mat3ra-esse-2024.2.6.post0/schema/methods_directory/physical/pw.json +0 -17
  552. mat3ra-esse-2024.2.6.post0/schema/methods_directory/physical/smearing.json +0 -17
  553. mat3ra-esse-2024.2.6.post0/schema/methods_directory/physical/tetrahedron.json +0 -16
  554. mat3ra-esse-2024.2.6.post0/schema/model/categorized_model.json +0 -18
  555. mat3ra-esse-2024.2.6.post0/schema/model/mixins/dft/double_hybrid_functional.json +0 -12
  556. mat3ra-esse-2024.2.6.post0/schema/model/mixins/dft/gga_functional.json +0 -12
  557. mat3ra-esse-2024.2.6.post0/schema/model/mixins/dft/hybrid_functional.json +0 -12
  558. mat3ra-esse-2024.2.6.post0/schema/model/mixins/dft/lda_functional.json +0 -12
  559. mat3ra-esse-2024.2.6.post0/schema/model/mixins/dft/mgga_functional.json +0 -12
  560. mat3ra-esse-2024.2.6.post0/schema/model/mixins/dispersion_correction.json +0 -12
  561. mat3ra-esse-2024.2.6.post0/schema/model/mixins/hubbard.json +0 -12
  562. mat3ra-esse-2024.2.6.post0/schema/model/mixins/spin_orbit_coupling.json +0 -11
  563. mat3ra-esse-2024.2.6.post0/schema/model/mixins/spin_polarization.json +0 -12
  564. mat3ra-esse-2024.2.6.post0/schema/model/model_parameters.json +0 -38
  565. mat3ra-esse-2024.2.6.post0/schema/model/model_without_method.json +0 -30
  566. mat3ra-esse-2024.2.6.post0/schema/model.json +0 -24
  567. mat3ra-esse-2024.2.6.post0/schema/models_category/pb/qm/abin/gw.json +0 -18
  568. mat3ra-esse-2024.2.6.post0/schema/models_category/pb/qm/abin.json +0 -15
  569. mat3ra-esse-2024.2.6.post0/schema/models_category/pb/qm/dft/ksdft/double_hybrid.json +0 -15
  570. mat3ra-esse-2024.2.6.post0/schema/models_category/pb/qm/dft/ksdft/gga.json +0 -15
  571. mat3ra-esse-2024.2.6.post0/schema/models_category/pb/qm/dft/ksdft/hybrid.json +0 -15
  572. mat3ra-esse-2024.2.6.post0/schema/models_category/pb/qm/dft/ksdft/lda.json +0 -15
  573. mat3ra-esse-2024.2.6.post0/schema/models_category/pb/qm/dft/ksdft/mgga.json +0 -15
  574. mat3ra-esse-2024.2.6.post0/schema/models_category/pb/qm/dft/ksdft.json +0 -15
  575. mat3ra-esse-2024.2.6.post0/schema/models_category/pb/qm/dft.json +0 -15
  576. mat3ra-esse-2024.2.6.post0/schema/models_category/pb/qm/semp.json +0 -15
  577. mat3ra-esse-2024.2.6.post0/schema/models_category/pb/qm.json +0 -15
  578. mat3ra-esse-2024.2.6.post0/schema/models_category/pb.json +0 -15
  579. mat3ra-esse-2024.2.6.post0/schema/models_category/st/det/ml/re.json +0 -15
  580. mat3ra-esse-2024.2.6.post0/schema/models_category/st/det/ml.json +0 -15
  581. mat3ra-esse-2024.2.6.post0/schema/models_category/st/det.json +0 -15
  582. mat3ra-esse-2024.2.6.post0/schema/models_category/st.json +0 -15
  583. mat3ra-esse-2024.2.6.post0/schema/models_directory/double_hybrid.json +0 -39
  584. mat3ra-esse-2024.2.6.post0/schema/models_directory/gga.json +0 -42
  585. mat3ra-esse-2024.2.6.post0/schema/models_directory/gw.json +0 -54
  586. mat3ra-esse-2024.2.6.post0/schema/models_directory/hybrid.json +0 -42
  587. mat3ra-esse-2024.2.6.post0/schema/models_directory/lda.json +0 -42
  588. mat3ra-esse-2024.2.6.post0/schema/models_directory/legacy/dft.json +0 -81
  589. mat3ra-esse-2024.2.6.post0/schema/models_directory/legacy/ml.json +0 -22
  590. mat3ra-esse-2024.2.6.post0/schema/models_directory/legacy/unknown.json +0 -22
  591. mat3ra-esse-2024.2.6.post0/schema/models_directory/mgga.json +0 -42
  592. mat3ra-esse-2024.2.6.post0/schema/models_directory/re.json +0 -23
  593. mat3ra-esse-2024.2.6.post0/schema/project.json +0 -40
  594. mat3ra-esse-2024.2.6.post0/schema/properties_directory/derived_properties.json +0 -31
  595. mat3ra-esse-2024.2.6.post0/schema/properties_directory/electronic_configuration.json +0 -16
  596. mat3ra-esse-2024.2.6.post0/schema/properties_directory/elemental/atomic_radius.json +0 -21
  597. mat3ra-esse-2024.2.6.post0/schema/properties_directory/elemental/electronegativity.json +0 -18
  598. mat3ra-esse-2024.2.6.post0/schema/properties_directory/elemental/ionization_potential.json +0 -21
  599. mat3ra-esse-2024.2.6.post0/schema/properties_directory/non-scalar/average_potential_profile.json +0 -41
  600. mat3ra-esse-2024.2.6.post0/schema/properties_directory/non-scalar/band_gaps.json +0 -51
  601. mat3ra-esse-2024.2.6.post0/schema/properties_directory/non-scalar/band_structure.json +0 -52
  602. mat3ra-esse-2024.2.6.post0/schema/properties_directory/non-scalar/charge_density_profile.json +0 -38
  603. mat3ra-esse-2024.2.6.post0/schema/properties_directory/non-scalar/density_of_states.json +0 -70
  604. mat3ra-esse-2024.2.6.post0/schema/properties_directory/non-scalar/dielectric_tensor.json +0 -22
  605. mat3ra-esse-2024.2.6.post0/schema/properties_directory/non-scalar/file_content.json +0 -34
  606. mat3ra-esse-2024.2.6.post0/schema/properties_directory/non-scalar/hubbard_u.json +0 -32
  607. mat3ra-esse-2024.2.6.post0/schema/properties_directory/non-scalar/hubbard_v.json +0 -33
  608. mat3ra-esse-2024.2.6.post0/schema/properties_directory/non-scalar/hubbard_v_nn.json +0 -11
  609. mat3ra-esse-2024.2.6.post0/schema/properties_directory/non-scalar/phonon_dispersions.json +0 -41
  610. mat3ra-esse-2024.2.6.post0/schema/properties_directory/non-scalar/phonon_dos.json +0 -42
  611. mat3ra-esse-2024.2.6.post0/schema/properties_directory/non-scalar/potential_profile.json +0 -38
  612. mat3ra-esse-2024.2.6.post0/schema/properties_directory/non-scalar/reaction_energy_profile.json +0 -38
  613. mat3ra-esse-2024.2.6.post0/schema/properties_directory/non-scalar/stress_tensor.json +0 -18
  614. mat3ra-esse-2024.2.6.post0/schema/properties_directory/non-scalar/total_energy_contributions.json +0 -211
  615. mat3ra-esse-2024.2.6.post0/schema/properties_directory/non-scalar/vibrational_spectrum.json +0 -45
  616. mat3ra-esse-2024.2.6.post0/schema/properties_directory/scalar/electron_affinity.json +0 -17
  617. mat3ra-esse-2024.2.6.post0/schema/properties_directory/scalar/fermi_energy.json +0 -17
  618. mat3ra-esse-2024.2.6.post0/schema/properties_directory/scalar/formation_energy.json +0 -17
  619. mat3ra-esse-2024.2.6.post0/schema/properties_directory/scalar/ionization_potential.json +0 -17
  620. mat3ra-esse-2024.2.6.post0/schema/properties_directory/scalar/pressure.json +0 -21
  621. mat3ra-esse-2024.2.6.post0/schema/properties_directory/scalar/reaction_energy_barrier.json +0 -17
  622. mat3ra-esse-2024.2.6.post0/schema/properties_directory/scalar/surface_energy.json +0 -17
  623. mat3ra-esse-2024.2.6.post0/schema/properties_directory/scalar/total_energy.json +0 -17
  624. mat3ra-esse-2024.2.6.post0/schema/properties_directory/scalar/total_force.json +0 -20
  625. mat3ra-esse-2024.2.6.post0/schema/properties_directory/scalar/valence_band_offset.json +0 -17
  626. mat3ra-esse-2024.2.6.post0/schema/properties_directory/scalar/zero_point_energy.json +0 -17
  627. mat3ra-esse-2024.2.6.post0/schema/properties_directory/structural/atomic_forces.json +0 -19
  628. mat3ra-esse-2024.2.6.post0/schema/properties_directory/structural/basis/atomic_constraints.json +0 -16
  629. mat3ra-esse-2024.2.6.post0/schema/properties_directory/structural/basis/atomic_coordinate.json +0 -14
  630. mat3ra-esse-2024.2.6.post0/schema/properties_directory/structural/basis/atomic_coordinates.json +0 -21
  631. mat3ra-esse-2024.2.6.post0/schema/properties_directory/structural/basis/atomic_element.json +0 -25
  632. mat3ra-esse-2024.2.6.post0/schema/properties_directory/structural/basis/bonds.json +0 -35
  633. mat3ra-esse-2024.2.6.post0/schema/properties_directory/structural/basis.json +0 -33
  634. mat3ra-esse-2024.2.6.post0/schema/properties_directory/structural/density.json +0 -22
  635. mat3ra-esse-2024.2.6.post0/schema/properties_directory/structural/elemental_ratio.json +0 -27
  636. mat3ra-esse-2024.2.6.post0/schema/properties_directory/structural/inchi.json +0 -17
  637. mat3ra-esse-2024.2.6.post0/schema/properties_directory/structural/inchi_key.json +0 -17
  638. mat3ra-esse-2024.2.6.post0/schema/properties_directory/structural/lattice/lattice_bravais.json +0 -38
  639. mat3ra-esse-2024.2.6.post0/schema/properties_directory/structural/lattice/lattice_vectors.json +0 -20
  640. mat3ra-esse-2024.2.6.post0/schema/properties_directory/structural/lattice/type_enum.json +0 -23
  641. mat3ra-esse-2024.2.6.post0/schema/properties_directory/structural/lattice/type_extended_enum.json +0 -32
  642. mat3ra-esse-2024.2.6.post0/schema/properties_directory/structural/lattice.json +0 -25
  643. mat3ra-esse-2024.2.6.post0/schema/properties_directory/structural/magnetic_moments.json +0 -19
  644. mat3ra-esse-2024.2.6.post0/schema/properties_directory/structural/molecular_pattern.json +0 -19
  645. mat3ra-esse-2024.2.6.post0/schema/properties_directory/structural/p-norm.json +0 -22
  646. mat3ra-esse-2024.2.6.post0/schema/properties_directory/structural/patterns/functional_group.json +0 -32
  647. mat3ra-esse-2024.2.6.post0/schema/properties_directory/structural/patterns/ring.json +0 -31
  648. mat3ra-esse-2024.2.6.post0/schema/properties_directory/structural/patterns/special_bond.json +0 -29
  649. mat3ra-esse-2024.2.6.post0/schema/properties_directory/structural/symmetry.json +0 -35
  650. mat3ra-esse-2024.2.6.post0/schema/properties_directory/structural/volume.json +0 -22
  651. mat3ra-esse-2024.2.6.post0/schema/properties_directory/workflow/convergence/electronic.json +0 -31
  652. mat3ra-esse-2024.2.6.post0/schema/properties_directory/workflow/convergence/ionic.json +0 -60
  653. mat3ra-esse-2024.2.6.post0/schema/properties_directory/workflow/convergence/kpoint.json +0 -46
  654. mat3ra-esse-2024.2.6.post0/schema/property/base.json +0 -57
  655. mat3ra-esse-2024.2.6.post0/schema/property/meta.json +0 -10
  656. mat3ra-esse-2024.2.6.post0/schema/property/raw.json +0 -57
  657. mat3ra-esse-2024.2.6.post0/schema/property/source.json +0 -26
  658. mat3ra-esse-2024.2.6.post0/schema/software/application.json +0 -40
  659. mat3ra-esse-2024.2.6.post0/schema/software/executable.json +0 -32
  660. mat3ra-esse-2024.2.6.post0/schema/software/flavor.json +0 -40
  661. mat3ra-esse-2024.2.6.post0/schema/software/template.json +0 -33
  662. mat3ra-esse-2024.2.6.post0/schema/software_directory/ml/exabyteml.json +0 -23
  663. mat3ra-esse-2024.2.6.post0/schema/software_directory/ml/unit/execution/evaluate/cross-validate.json +0 -25
  664. mat3ra-esse-2024.2.6.post0/schema/software_directory/ml/unit/execution/initialize.json +0 -29
  665. mat3ra-esse-2024.2.6.post0/schema/software_directory/ml/unit/execution/score.json +0 -13
  666. mat3ra-esse-2024.2.6.post0/schema/software_directory/ml/unit/execution/train.json +0 -38
  667. mat3ra-esse-2024.2.6.post0/schema/software_directory/ml/unit/processing/data_transformation/manipulation.json +0 -50
  668. mat3ra-esse-2024.2.6.post0/schema/software_directory/ml/unit/processing/data_transformation/scale_and_reduce.json +0 -70
  669. mat3ra-esse-2024.2.6.post0/schema/software_directory/ml/unit/processing/feature_selection/filter_based.json +0 -45
  670. mat3ra-esse-2024.2.6.post0/schema/software_directory/modeling/deepmd.json +0 -35
  671. mat3ra-esse-2024.2.6.post0/schema/software_directory/modeling/espresso/arguments.json +0 -44
  672. mat3ra-esse-2024.2.6.post0/schema/software_directory/modeling/espresso.json +0 -34
  673. mat3ra-esse-2024.2.6.post0/schema/software_directory/modeling/nwchem.json +0 -34
  674. mat3ra-esse-2024.2.6.post0/schema/software_directory/modeling/unit/execution.json +0 -14
  675. mat3ra-esse-2024.2.6.post0/schema/software_directory/modeling/vasp.json +0 -40
  676. mat3ra-esse-2024.2.6.post0/schema/software_directory/scripting/jupyter-lab.json +0 -38
  677. mat3ra-esse-2024.2.6.post0/schema/software_directory/scripting/python.json +0 -52
  678. mat3ra-esse-2024.2.6.post0/schema/software_directory/scripting/shell.json +0 -52
  679. mat3ra-esse-2024.2.6.post0/schema/software_directory/scripting/unit/execution.json +0 -14
  680. mat3ra-esse-2024.2.6.post0/schema/system/_material.json +0 -19
  681. mat3ra-esse-2024.2.6.post0/schema/system/_parent_job.json +0 -19
  682. mat3ra-esse-2024.2.6.post0/schema/system/_project.json +0 -19
  683. mat3ra-esse-2024.2.6.post0/schema/system/bankable.json +0 -15
  684. mat3ra-esse-2024.2.6.post0/schema/system/consistency_check.json +0 -39
  685. mat3ra-esse-2024.2.6.post0/schema/system/creator.json +0 -19
  686. mat3ra-esse-2024.2.6.post0/schema/system/creator_account.json +0 -10
  687. mat3ra-esse-2024.2.6.post0/schema/system/database_source.json +0 -40
  688. mat3ra-esse-2024.2.6.post0/schema/system/defaultable.json +0 -12
  689. mat3ra-esse-2024.2.6.post0/schema/system/description.json +0 -14
  690. mat3ra-esse-2024.2.6.post0/schema/system/entity_reference.json +0 -19
  691. mat3ra-esse-2024.2.6.post0/schema/system/file_source.json +0 -30
  692. mat3ra-esse-2024.2.6.post0/schema/system/history.json +0 -25
  693. mat3ra-esse-2024.2.6.post0/schema/system/in_set.json +0 -28
  694. mat3ra-esse-2024.2.6.post0/schema/system/is_multi_material.json +0 -10
  695. mat3ra-esse-2024.2.6.post0/schema/system/is_outdated.json +0 -10
  696. mat3ra-esse-2024.2.6.post0/schema/system/job_extended.json +0 -39
  697. mat3ra-esse-2024.2.6.post0/schema/system/message.json +0 -67
  698. mat3ra-esse-2024.2.6.post0/schema/system/metadata.json +0 -10
  699. mat3ra-esse-2024.2.6.post0/schema/system/name.json +0 -11
  700. mat3ra-esse-2024.2.6.post0/schema/system/owner.json +0 -19
  701. mat3ra-esse-2024.2.6.post0/schema/system/path.json +0 -11
  702. mat3ra-esse-2024.2.6.post0/schema/system/path_entity.json +0 -13
  703. mat3ra-esse-2024.2.6.post0/schema/system/schema_version.json +0 -12
  704. mat3ra-esse-2024.2.6.post0/schema/system/scope.json +0 -10
  705. mat3ra-esse-2024.2.6.post0/schema/system/set.json +0 -16
  706. mat3ra-esse-2024.2.6.post0/schema/system/sharing.json +0 -10
  707. mat3ra-esse-2024.2.6.post0/schema/system/soft_removable.json +0 -15
  708. mat3ra-esse-2024.2.6.post0/schema/system/status.json +0 -31
  709. mat3ra-esse-2024.2.6.post0/schema/system/tags.json +0 -14
  710. mat3ra-esse-2024.2.6.post0/schema/system/timestampable.json +0 -37
  711. mat3ra-esse-2024.2.6.post0/schema/system/use_values.json +0 -10
  712. mat3ra-esse-2024.2.6.post0/schema/workflow/base.json +0 -39
  713. mat3ra-esse-2024.2.6.post0/schema/workflow/base_flow.json +0 -39
  714. mat3ra-esse-2024.2.6.post0/schema/workflow/scope.json +0 -20
  715. mat3ra-esse-2024.2.6.post0/schema/workflow/subworkflow.json +0 -37
  716. mat3ra-esse-2024.2.6.post0/schema/workflow/unit/assertion.json +0 -30
  717. mat3ra-esse-2024.2.6.post0/schema/workflow/unit/assignment.json +0 -38
  718. mat3ra-esse-2024.2.6.post0/schema/workflow/unit/condition.json +0 -52
  719. mat3ra-esse-2024.2.6.post0/schema/workflow/unit/execution.json +0 -40
  720. mat3ra-esse-2024.2.6.post0/schema/workflow/unit/input/_input.json +0 -22
  721. mat3ra-esse-2024.2.6.post0/schema/workflow/unit/input/_inputItem.json +0 -20
  722. mat3ra-esse-2024.2.6.post0/schema/workflow/unit/input/_inputItemId.json +0 -21
  723. mat3ra-esse-2024.2.6.post0/schema/workflow/unit/input/_inputItemScope.json +0 -20
  724. mat3ra-esse-2024.2.6.post0/schema/workflow/unit/io/api.json +0 -24
  725. mat3ra-esse-2024.2.6.post0/schema/workflow/unit/io/db.json +0 -39
  726. mat3ra-esse-2024.2.6.post0/schema/workflow/unit/io/object_storage.json +0 -25
  727. mat3ra-esse-2024.2.6.post0/schema/workflow/unit/io.json +0 -53
  728. mat3ra-esse-2024.2.6.post0/schema/workflow/unit/map.json +0 -67
  729. mat3ra-esse-2024.2.6.post0/schema/workflow/unit/processing.json +0 -34
  730. mat3ra-esse-2024.2.6.post0/schema/workflow/unit/reduce.json +0 -50
  731. mat3ra-esse-2024.2.6.post0/schema/workflow/unit/runtime/_runtime_item_full_object.json +0 -15
  732. mat3ra-esse-2024.2.6.post0/schema/workflow/unit/runtime/_runtime_item_name_object.json +0 -15
  733. mat3ra-esse-2024.2.6.post0/schema/workflow/unit/runtime/_runtime_item_string.json +0 -7
  734. mat3ra-esse-2024.2.6.post0/schema/workflow/unit/runtime/runtime_item.json +0 -13
  735. mat3ra-esse-2024.2.6.post0/schema/workflow/unit/runtime/runtime_items.json +0 -36
  736. mat3ra-esse-2024.2.6.post0/schema/workflow/unit.json +0 -65
  737. mat3ra-esse-2024.2.6.post0/schema/workflow.json +0 -63
  738. mat3ra-esse-2024.2.6.post0/src/js/esse/index.js +0 -57
  739. mat3ra-esse-2024.2.6.post0/src/js/esse/schemaUtils.js +0 -45
  740. mat3ra-esse-2024.2.6.post0/src/js/esse/utils.js +0 -52
  741. mat3ra-esse-2024.2.6.post0/src/js/json_include/index.js +0 -71
  742. mat3ra-esse-2024.2.6.post0/src/js/json_include/utils.js +0 -11
  743. mat3ra-esse-2024.2.6.post0/src/js/scripts/createEnumsFromYaml.mjs +0 -43
  744. mat3ra-esse-2024.2.6.post0/src/js/scripts/setSchemaIds.mjs +0 -34
  745. mat3ra-esse-2024.2.6.post0/src/py/mat3ra/esse/data/examples.py +0 -2
  746. mat3ra-esse-2024.2.6.post0/src/py/mat3ra/esse/data/properties.py +0 -3
  747. mat3ra-esse-2024.2.6.post0/src/py/mat3ra/esse/data/schemas.py +0 -2
  748. mat3ra-esse-2024.2.6.post0/src/py/mat3ra_esse.egg-info/PKG-INFO +0 -193
  749. mat3ra-esse-2024.2.6.post0/src/py/mat3ra_esse.egg-info/SOURCES.txt +0 -627
  750. mat3ra-esse-2024.2.6.post0/tests/js/validate.js +0 -42
  751. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/.babelrc +0 -0
  752. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/.github/workflows/cicd.yml +0 -0
  753. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/.gitignore +0 -0
  754. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/.husky/pre-commit +0 -0
  755. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/.pre-commit-config.yaml +0 -0
  756. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/.prettierrc +0 -0
  757. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/LICENSE.md +0 -0
  758. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/README.md +0 -0
  759. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/build_schemas.py +0 -0
  760. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/docs/README.md +0 -0
  761. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/3pse/file/applications/espresso/7.2/pw.x.json +0 -0
  762. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/core/abstract/2d_data.json +0 -0
  763. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/core/abstract/2d_plot.json +0 -0
  764. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/core/abstract/3d_grid.json +0 -0
  765. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/core/abstract/3d_tensor.json +0 -0
  766. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/core/abstract/3d_vector_basis.json +0 -0
  767. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/core/abstract/point.json +0 -0
  768. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/core/abstract/vector.json +0 -0
  769. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/core/primitive/1d_data_series.json +0 -0
  770. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/core/primitive/3d_lattice.json +0 -0
  771. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/core/primitive/array_of_3_booleans.json +0 -0
  772. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/core/primitive/array_of_3_numbers.json +0 -0
  773. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/core/primitive/array_of_ids.json +0 -0
  774. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/core/primitive/axis.json +0 -0
  775. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/core/primitive/scalar.json +0 -0
  776. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/core/primitive/string.json +0 -0
  777. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/core/reference/experiment/condition.json +0 -0
  778. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/core/reference/experiment/location.json +0 -0
  779. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/core/reference/experiment.json +0 -0
  780. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/core/reference/literature/name.json +0 -0
  781. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/core/reference/literature/pages.json +0 -0
  782. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/core/reference/literature.json +0 -0
  783. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/core/reference/modeling/exabyte.json +0 -0
  784. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/core/reference/modeling.json +0 -0
  785. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/core/reference.json +0 -0
  786. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/core/reusable/atomic_vectors.json +0 -0
  787. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/core/reusable/band_gap.json +0 -0
  788. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/core/reusable/energy.json +0 -0
  789. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/core/reusable/file_metadata.json +0 -0
  790. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/core/reusable/object_storage_container_data.json +0 -0
  791. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/element.json +0 -0
  792. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/job/compute.json +0 -0
  793. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/job.json +0 -0
  794. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/material.json +0 -0
  795. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/method/categorized_method.json +0 -0
  796. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/method/method_parameters.json +0 -0
  797. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/method.json +0 -0
  798. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/methods_directory/legacy/localorbital.json +0 -0
  799. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/methods_directory/legacy/pseudopotential.json +0 -0
  800. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/methods_directory/legacy/regression.json +0 -0
  801. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/methods_directory/legacy/unknown.json +0 -0
  802. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/methods_directory/mathematical/cg.json +0 -0
  803. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/methods_directory/mathematical/regression.json +0 -0
  804. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/methods_directory/physical/ao/dunning.json +0 -0
  805. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/methods_directory/physical/psp/file.json +0 -0
  806. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/methods_directory/physical/psp.json +0 -0
  807. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/methods_directory/physical/pw.json +0 -0
  808. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/methods_directory/physical/smearing.json +0 -0
  809. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/methods_directory/physical/tetrahedron.json +0 -0
  810. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/model/categorized_model.json +0 -0
  811. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/model/model_parameters.json +0 -0
  812. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/model.json +0 -0
  813. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/models_category/pb/qm/abin/gw.json +0 -0
  814. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/models_category/pb/qm/dft/ksdft.json +0 -0
  815. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/models_category/pb/qm/semp.json +0 -0
  816. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/models_directory/gga.json +0 -0
  817. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/models_directory/gw.json +0 -0
  818. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/models_directory/hybrid.json +0 -0
  819. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/models_directory/lda.json +0 -0
  820. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/models_directory/legacy/dft.json +0 -0
  821. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/models_directory/legacy/ml.json +0 -0
  822. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/models_directory/legacy/unknown.json +0 -0
  823. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/project.json +0 -0
  824. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/properties_directory/electronic_configuration.json +0 -0
  825. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/properties_directory/elemental/atomic_radius.json +0 -0
  826. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/properties_directory/elemental/electronegativity.json +0 -0
  827. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/properties_directory/elemental/ionization_potential.json +0 -0
  828. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/properties_directory/non-scalar/band_gaps.json +0 -0
  829. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/properties_directory/non-scalar/band_structure.json +0 -0
  830. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/properties_directory/non-scalar/charge_density_profile.json +0 -0
  831. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/properties_directory/non-scalar/density_of_states.json +0 -0
  832. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/properties_directory/non-scalar/dielectric_tensor.json +0 -0
  833. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/properties_directory/non-scalar/file_content.json +0 -0
  834. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/properties_directory/non-scalar/hubbard_u.json +0 -0
  835. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/properties_directory/non-scalar/hubbard_v.json +0 -0
  836. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/properties_directory/non-scalar/hubbard_v_nn.json +0 -0
  837. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/properties_directory/non-scalar/phonon_dispersions.json +0 -0
  838. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/properties_directory/non-scalar/phonon_dos.json +0 -0
  839. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/properties_directory/non-scalar/potential_profile.json +0 -0
  840. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/properties_directory/non-scalar/reaction_energy_profile.json +0 -0
  841. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/properties_directory/non-scalar/stress_tensor.json +0 -0
  842. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/properties_directory/non-scalar/total_energy_contributions.json +0 -0
  843. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/properties_directory/non-scalar/vibrational_spectrum.json +0 -0
  844. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/properties_directory/scalar/electron_affinity.json +0 -0
  845. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/properties_directory/scalar/fermi_energy.json +0 -0
  846. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/properties_directory/scalar/formation_energy.json +0 -0
  847. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/properties_directory/scalar/ionization_potential.json +0 -0
  848. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/properties_directory/scalar/pressure.json +0 -0
  849. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/properties_directory/scalar/reaction_energy_barrier.json +0 -0
  850. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/properties_directory/scalar/surface_energy.json +0 -0
  851. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/properties_directory/scalar/total_energy.json +0 -0
  852. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/properties_directory/scalar/total_force.json +0 -0
  853. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/properties_directory/scalar/valence_band_offset.json +0 -0
  854. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/properties_directory/scalar/zero_point_energy.json +0 -0
  855. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/properties_directory/structural/atomic_forces.json +0 -0
  856. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/properties_directory/structural/basis/atomic_constraints.json +0 -0
  857. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/properties_directory/structural/basis/atomic_coordinate.json +0 -0
  858. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/properties_directory/structural/basis/atomic_coordinates.json +0 -0
  859. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/properties_directory/structural/basis/atomic_element.json +0 -0
  860. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/properties_directory/structural/basis/bonds.json +0 -0
  861. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/properties_directory/structural/basis.json +0 -0
  862. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/properties_directory/structural/density.json +0 -0
  863. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/properties_directory/structural/elemental_ratio.json +0 -0
  864. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/properties_directory/structural/inchi.json +0 -0
  865. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/properties_directory/structural/inchi_key.json +0 -0
  866. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/properties_directory/structural/lattice/lattice_bravais.json +0 -0
  867. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/properties_directory/structural/lattice/lattice_vectors.json +0 -0
  868. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/properties_directory/structural/lattice.json +0 -0
  869. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/properties_directory/structural/magnetic_moments.json +0 -0
  870. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/properties_directory/structural/molecular_pattern.json +0 -0
  871. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/properties_directory/structural/p-norm.json +0 -0
  872. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/properties_directory/structural/symmetry.json +0 -0
  873. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/properties_directory/structural/volume.json +0 -0
  874. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/properties_directory/workflow/convergence/electronic.json +0 -0
  875. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/properties_directory/workflow/convergence/ionic.json +0 -0
  876. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/properties_directory/workflow/convergence/kpoint.json +0 -0
  877. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/property/base.json +0 -0
  878. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/software/application.json +0 -0
  879. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/software/executable.json +0 -0
  880. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/software/flavor.json +0 -0
  881. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/software/template.json +0 -0
  882. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/software_directory/ml/exabyteml.json +0 -0
  883. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/software_directory/ml/unit/execution/evaluate/cross-validate.json +0 -0
  884. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/software_directory/ml/unit/execution/initialize.json +0 -0
  885. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/software_directory/ml/unit/execution/score.json +0 -0
  886. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/software_directory/ml/unit/execution/train.json +0 -0
  887. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/software_directory/ml/unit/processing/data_transformation/manipulation.json +0 -0
  888. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/software_directory/ml/unit/processing/data_transformation/scale_and_reduce.json +0 -0
  889. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/software_directory/ml/unit/processing/feature_selection/filter_based.json +0 -0
  890. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/software_directory/modeling/espresso/arguments.json +0 -0
  891. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/software_directory/modeling/espresso.json +0 -0
  892. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/software_directory/modeling/nwchem.json +0 -0
  893. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/software_directory/modeling/unit/execution.json +0 -0
  894. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/software_directory/modeling/vasp.json +0 -0
  895. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/software_directory/scripting/jupyter-lab.json +0 -0
  896. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/software_directory/scripting/python.json +0 -0
  897. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/software_directory/scripting/shell.json +0 -0
  898. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/software_directory/scripting/unit/execution.json +0 -0
  899. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/system/_material.json +0 -0
  900. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/system/_parent_job.json +0 -0
  901. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/system/_project.json +0 -0
  902. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/system/consistency_check.json +0 -0
  903. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/system/creator.json +0 -0
  904. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/system/entity_reference.json +0 -0
  905. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/system/file_source.json +0 -0
  906. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/system/message.json +0 -0
  907. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/system/owner.json +0 -0
  908. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/workflow/unit/assignment.json +0 -0
  909. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/workflow/unit/condition.json +0 -0
  910. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/workflow/unit/execution.json +0 -0
  911. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/workflow/unit/input/_inputItemScope.json +0 -0
  912. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/workflow/unit/io/api.json +0 -0
  913. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/workflow/unit/io/db.json +0 -0
  914. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/workflow/unit/io/object_storage.json +0 -0
  915. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/workflow/unit/io.json +0 -0
  916. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/workflow/unit/map.json +0 -0
  917. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/workflow/unit/processing.json +0 -0
  918. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/workflow/unit/reduce.json +0 -0
  919. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/example/workflow/unit/runtime/runtime_items.json +0 -0
  920. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/manifest/dft_unit_functionals.yaml +0 -0
  921. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/manifest/functional_lookup_table.yaml +0 -0
  922. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/manifest/models.yaml +0 -0
  923. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/manifest/properties.yaml +0 -0
  924. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/npmignore +0 -0
  925. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/pyproject.toml +0 -0
  926. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/definitions/units.json +0 -0
  927. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/methods_category/mathematical/diff/enum_options.json +0 -0
  928. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/methods_category/mathematical/diff/enum_options.yml +0 -0
  929. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/methods_category/mathematical/discr/enum_options.json +0 -0
  930. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/methods_category/mathematical/discr/enum_options.yml +0 -0
  931. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/methods_category/mathematical/discr/mesh/enum_options.json +0 -0
  932. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/methods_category/mathematical/discr/mesh/enum_options.yml +0 -0
  933. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/methods_category/mathematical/discr/mesh/struct/enum_options.json +0 -0
  934. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/methods_category/mathematical/discr/mesh/struct/enum_options.yml +0 -0
  935. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/methods_category/mathematical/enum_options.json +0 -0
  936. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/methods_category/mathematical/enum_options.yml +0 -0
  937. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/methods_category/mathematical/fapprx/enum_options.json +0 -0
  938. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/methods_category/mathematical/fapprx/enum_options.yml +0 -0
  939. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/methods_category/mathematical/fapprx/ipol/enum_options.json +0 -0
  940. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/methods_category/mathematical/fapprx/ipol/enum_options.yml +0 -0
  941. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/methods_category/mathematical/intgr/analytic/enum_options.json +0 -0
  942. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/methods_category/mathematical/intgr/analytic/enum_options.yml +0 -0
  943. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/methods_category/mathematical/intgr/diffeq/enum_options.json +0 -0
  944. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/methods_category/mathematical/intgr/diffeq/enum_options.yml +0 -0
  945. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/methods_category/mathematical/intgr/enum_options.json +0 -0
  946. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/methods_category/mathematical/intgr/enum_options.yml +0 -0
  947. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/methods_category/mathematical/intgr/numquad/enum_options.json +0 -0
  948. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/methods_category/mathematical/intgr/numquad/enum_options.yml +0 -0
  949. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/methods_category/mathematical/intgr/transf/enum_options.json +0 -0
  950. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/methods_category/mathematical/intgr/transf/enum_options.yml +0 -0
  951. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/methods_category/mathematical/linalg/diag/enum_options.json +0 -0
  952. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/methods_category/mathematical/linalg/diag/enum_options.yml +0 -0
  953. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/methods_category/mathematical/linalg/enum_options.json +0 -0
  954. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/methods_category/mathematical/linalg/enum_options.yml +0 -0
  955. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/methods_category/mathematical/opt/diff/enum_options.json +0 -0
  956. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/methods_category/mathematical/opt/diff/enum_options.yml +0 -0
  957. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/methods_category/mathematical/opt/diff/ordern/enum_options.json +0 -0
  958. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/methods_category/mathematical/opt/diff/ordern/enum_options.yml +0 -0
  959. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/methods_category/mathematical/opt/enum_options.json +0 -0
  960. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/methods_category/mathematical/opt/enum_options.yml +0 -0
  961. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/methods_category/mathematical/opt/ndiff/enum_options.json +0 -0
  962. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/methods_category/mathematical/opt/ndiff/enum_options.yml +0 -0
  963. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/methods_category/mathematical/opt/root/enum_options.json +0 -0
  964. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/methods_category/mathematical/opt/root/enum_options.yml +0 -0
  965. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/methods_category/physical/enum_options.json +0 -0
  966. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/methods_category/physical/enum_options.yml +0 -0
  967. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/methods_category/physical/qm/enum_options.json +0 -0
  968. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/methods_category/physical/qm/enum_options.yml +0 -0
  969. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/methods_category/physical/qm/wf/enum_options.json +0 -0
  970. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/methods_category/physical/qm/wf/enum_options.yml +0 -0
  971. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/methods_directory/physical/ao/enum_options.json +0 -0
  972. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/methods_directory/physical/ao/enum_options.yml +0 -0
  973. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/model/mixins/dft/enum_options.json +0 -0
  974. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/model/mixins/dft/enum_options.yml +0 -0
  975. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/model/mixins/enum_options.json +0 -0
  976. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/model/mixins/enum_options.yml +0 -0
  977. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/models_category/enum_options.json +0 -0
  978. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/models_category/enum_options.yml +0 -0
  979. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/models_category/pb/enum_options.json +0 -0
  980. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/models_category/pb/enum_options.yml +0 -0
  981. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/models_category/pb/qm/abin/enum_options.json +0 -0
  982. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/models_category/pb/qm/abin/enum_options.yml +0 -0
  983. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/models_category/pb/qm/dft/enum_options.json +0 -0
  984. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/models_category/pb/qm/dft/enum_options.yml +0 -0
  985. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/models_category/pb/qm/dft/ksdft/enum_options.json +0 -0
  986. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/models_category/pb/qm/dft/ksdft/enum_options.yml +0 -0
  987. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/models_category/pb/qm/enum_options.json +0 -0
  988. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/models_category/pb/qm/enum_options.yml +0 -0
  989. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/models_category/st/det/enum_options.json +0 -0
  990. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/models_category/st/det/enum_options.yml +0 -0
  991. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/models_category/st/det/ml/enum_options.json +0 -0
  992. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/models_category/st/det/ml/enum_options.yml +0 -0
  993. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/models_category/st/enum_options.json +0 -0
  994. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/models_category/st/enum_options.yml +0 -0
  995. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/software_directory/ml/unit/execution.json +0 -0
  996. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/software_directory/ml/unit/processing/data_transformation.json +0 -0
  997. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/software_directory/ml/unit/processing/feature_selection.json +0 -0
  998. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/schema/software_directory/ml/unit/processing.json +0 -0
  999. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/setup.cfg +0 -0
  1000. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/src/__init__.py +0 -0
  1001. /mat3ra-esse-2024.2.6.post0/src/js/esse/settings.js → /mat3ra-esse-2024.2.19.post1/src/js/esse/settings.ts +0 -0
  1002. /mat3ra-esse-2024.2.6.post0/src/js/json_include/settings.js → /mat3ra-esse-2024.2.19.post1/src/js/json_include/settings.ts +0 -0
  1003. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/src/py/__init__.py +0 -0
  1004. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/src/py/mat3ra/__init__.py +0 -0
  1005. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/src/py/mat3ra/esse/__init__.py +0 -0
  1006. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/src/py/mat3ra/esse/data/__init__.py +0 -0
  1007. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/src/py/mat3ra/esse/utils.py +0 -0
  1008. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/src/py/mat3ra_esse.egg-info/dependency_links.txt +0 -0
  1009. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/src/py/mat3ra_esse.egg-info/requires.txt +0 -0
  1010. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/src/py/mat3ra_esse.egg-info/top_level.txt +0 -0
  1011. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/tests/py/__init__.py +0 -0
  1012. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/tests/py/esse/__init__.py +0 -0
  1013. {mat3ra-esse-2024.2.6.post0 → mat3ra-esse-2024.2.19.post1}/tests/py/esse/test_validate.py +0 -0
@@ -0,0 +1,11 @@
1
+ {
2
+ "extends": ["@exabyte-io/eslint-config"],
3
+ "ignorePatterns": ["lib/js/**/*.js", "lib/js/**/*.ts"],
4
+ "settings": {
5
+ "import/resolver": {
6
+ "node": {
7
+ "extensions": [".js", ".jsx", ".ts", ".tsx"]
8
+ }
9
+ }
10
+ }
11
+ }
@@ -0,0 +1,5 @@
1
+ {
2
+ "extension": ["ts"],
3
+ "spec": "tests/js/**/*.ts",
4
+ "require": "ts-node/register"
5
+ }
@@ -0,0 +1,193 @@
1
+ Metadata-Version: 2.1
2
+ Name: mat3ra-esse
3
+ Version: 2024.2.19.post1
4
+ Summary: Excellent Source of Schemas and Examples.
5
+ Author-email: "Exabyte Inc." <info@mat3ra.com>
6
+ License: # LICENSE
7
+
8
+ Copyright 2019 Exabyte Inc.
9
+
10
+ Licensed under the Apache License, Version 2.0 (the "License");
11
+ you may not use this file except in compliance with the License.
12
+ You may obtain a copy of the License at
13
+
14
+ http://www.apache.org/licenses/LICENSE-2.0
15
+
16
+ Unless required by applicable law or agreed to in writing, software
17
+ distributed under the License is distributed on an "AS IS" BASIS,
18
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19
+ See the License for the specific language governing permissions and
20
+ limitations under the License.
21
+
22
+ Classifier: Programming Language :: Python
23
+ Classifier: Programming Language :: Python :: 3
24
+ Classifier: Development Status :: 3 - Alpha
25
+ Classifier: Topic :: Software Development
26
+ Requires-Python: >=3.8
27
+ Description-Content-Type: text/markdown
28
+ License-File: LICENSE.md
29
+ Requires-Dist: exabyte-json-include>=2023.12.23.post0
30
+ Requires-Dist: jsonschema>=2.6.0
31
+ Provides-Extra: tests
32
+ Requires-Dist: coverage[toml]>=5.3; extra == "tests"
33
+ Requires-Dist: parameterized>=0.9.0; extra == "tests"
34
+ Provides-Extra: all
35
+ Requires-Dist: mat3ra-esse[tests]; extra == "all"
36
+
37
+ [![PyPI version](https://badge.fury.io/py/mat3ra-esse.svg)](https://badge.fury.io/py/mat3ra-esse)
38
+ [![npm version](https://badge.fury.io/js/@mat3ra%2Fesse.svg)](https://badge.fury.io/js/@mat3ra%2Fesse)
39
+ [![License: Apache](https://img.shields.io/badge/License-Apache-blue.svg)](https://www.apache.org/licenses/LICENSE-2.0)
40
+
41
+ # ESSE
42
+
43
+ Essential Source of Schemas and Examples (ESSE) contains data format definitions (schemas) and examples for common entities used in digital materials science (see refs. [^1], [^2] below).
44
+
45
+ Although the schemas are used to facilitate the operations of [mat3ra.com](https://mat3ra.com), they are designed to be generic and can be used in other applications. The open-source packages developed by Mat3ra.com use the schemas available in this repository.
46
+
47
+ The latest variants of schemas and examples are available at [schemas.mat3ra.com](https://schemas.mat3ra.com/).
48
+
49
+ ESSE has a dual-nature as both a Python and a Node.js package.
50
+
51
+
52
+ ## 1. Installation
53
+
54
+ ### 1.1. Python
55
+
56
+ ESSE is compatible with Python 3.8+.
57
+
58
+ #### 1.1.1. PyPI
59
+
60
+ ```bash
61
+ pip install mat3ra-esse
62
+ ```
63
+
64
+ #### 1.1.2. Repository
65
+
66
+ ```bash
67
+ virtualenv .venv
68
+ source .venv/bin/activate
69
+ pip install -e PATH_TO_ESSE_REPOSITORY
70
+ ```
71
+
72
+ ### 1.2. Node
73
+
74
+ #### 1.2.1. NPM
75
+
76
+ ```bash
77
+ npm install @mat3ra/esse
78
+ ```
79
+
80
+
81
+ ## 2. Usage
82
+
83
+ ESSE contains separate but equivalent interfaces for Python and Javascript.
84
+ The package provides `ESSE` class that can be initialized and used as below.
85
+
86
+ ### 2.1. Usage in Python
87
+
88
+ ```python
89
+ from mat3ra.esse import ESSE
90
+
91
+ helper = ESSE()
92
+ schema = helper.get_schema_by_id("material")
93
+ ```
94
+
95
+ ### 2.2. Usage in Node/JS/TS
96
+
97
+ ```javascript
98
+ const { ESSE } = require("@mat3ra/esse/lib/js/esse");
99
+
100
+ const helper = new ESSE();
101
+ const schema = helper.getSchemaById("material");
102
+ ```
103
+
104
+
105
+ ## 3. Directory Structure
106
+
107
+ ESSE contains 3 main directories, [schema](schema), [example](example) and [src](src) outlined below.
108
+
109
+ ### 3.1. Schema
110
+
111
+ The schema directory contains the schemas specifying the rules to structure data. A set of core schemas, outlined below, are defined to facilitate the schema modularity.
112
+
113
+ - [Primitive](schema/core/primitive) directory contains a set of custom primitives that extends default standard primitive types allowed by schema, such as String and Number.
114
+ Primitives are solely defined by the default primitives and can not be re-constructed from each other.
115
+ - [Abstract](schema/core/abstract) directory contains unit-less schemas that are constructed from default and custom primitives.
116
+ - [Reusable](schema/core/reusable) directory contains the schemas that are widely used in other schemas to avoid duplication, constructed from the abstract and primitive schemas.
117
+ - [Reference](schema/core/reference) directory contains the schemas defining the rules to structure the references to data sources.
118
+
119
+ ### 3.2. Example
120
+
121
+ This directory contains the examples formed according to the schemas and implements the same directory structure as the schema directory.
122
+
123
+ ### 3.3. src
124
+
125
+ This directory contains Python and Javascript interfaces implementing the functionality to access and validate schemas and examples.
126
+
127
+
128
+ ## 4. Conventions
129
+
130
+ ### 4.1. Generative vs Non-generative keys
131
+ Generative keys are the fields which allow for user input prior to calculation of the final property values. A flag is included in the schema comments on the fields in [property schemas](schema/properties_directory): `isGenerative:true` marks which fields to use as subschemas in the generation of a user input schema. On properties allowing user inputs, additional fields may be tagged, as in [the `file_content` property](schema/properties_directory/non-scalar/file_content.json)
132
+
133
+
134
+ ## 5. Development
135
+
136
+ The schemas and examples are stored as JSON assets. The JSON assets are used to generate JS/TS and PY modules that can be used to access the schemas and examples in the corresponding runtimes. The modules are generated using the [build_schemas.py](./build_schemas.py) and [build_schema.js](./build_schema.js) scripts. The JS modules are generated during the transpilation step of the npm. The PY modules are generated during the development and distributed within the pip package.
137
+
138
+ The following outlines the development process workflow:
139
+
140
+ 1. Setup: clone the repository and install the dependencies for both JS and PY (as explained below).
141
+ 2. Edit code and commit changes.
142
+ 3. Pre commit is used to regenerate the modules.
143
+ 4. Push the changes to GitHub.
144
+ 5. GH workflow is used to generate the fully resolved file (without "$ref"s and "$allOf" etc.) and examples and publish them to [schemas.mat3ra.com](http://schemas.mat3ra.com/).
145
+ 6. Publish the new version of the package to PyPI and npm.
146
+
147
+ The [pre-commit](.husky/pre-commit) is using both JS and PY runtime(s) to regenerate the schemas and examples.
148
+
149
+ [//]: # (TODO: consider reusing JS runtime and schemas build script for PY modules for consistency)
150
+ NOTE: The PY and JS modules are built from the same JSON sources, but using different runtimes (scripts) and thus may still be different. Only for JS the fully resolved schemas (with merged "$allOf") are created. They are used for the docs website.
151
+
152
+ ### 5.1. Development in Python
153
+
154
+ When developing in python the following should be taken into account:
155
+
156
+ 1. The modules containing the schemas and examples are generated using the [build-schemas.py](./build_schemas.py) script. There is a setup for it to be run automatically on every commit, but it is recommended to run it manually before committing to make sure that the changes are reflected in the modules. This can be done with `pre-commit run --all-files`. The pre-commit package can be installed with `pip install pre-commit`. To rebuild schemas manually, run (note `-e` in install):
157
+ ```bash
158
+ virtualenv .venv
159
+ source .venv/bin/activate
160
+ pip install -e ."[tests]"
161
+ python build_schemas.py
162
+ ```
163
+ 2. Tests can be run using the following commands:
164
+ ```bash
165
+ virtualenv .venv
166
+ source .venv/bin/activate
167
+ pip install ."[tests]"
168
+ python -m unittest discover --verbose --catch --start-directory tests/py/esse/
169
+ ```
170
+
171
+ ### 5.2. Development in Javascript/Typescript
172
+
173
+ See [package.json](package.json) for the list of available npm commands. The JS modules are generated using the [build_schema.js](./build_schema.js) script. There is a setup for it to be run automatically when the package is installed (see "transpile" directive). To rebuild schemas manually, run:
174
+ ```bash
175
+ npm install
176
+ npm run transpile
177
+ ```
178
+
179
+ ### 5.3. General Dev Suggestions
180
+
181
+ This repository is an [open-source](LICENSE.md) work-in-progress and we welcome contributions. We suggest forking this repository and introducing the adjustments there, the changes in the fork can further be considered for merging into this repository as it is commonly done on GitHub (see [^3] below).
182
+
183
+ Other suggestions:
184
+
185
+ - Use unique IDs for schemas
186
+ - Do not use circular references in the schemas, instead leave the type as object and add explanation to description.
187
+
188
+
189
+ ## Links
190
+
191
+ [^1]: [Data-centric online ecosystem for digital materials science](https://arxiv.org/pdf/1902.10838.pdf)
192
+ [^2]: [CateCom: A Practical Data-Centric Approach to Categorization of Computational Models](https://pubs.acs.org/doi/abs/10.1021/acs.jcim.2c00112)
193
+ [^3]: [GitHub Standard Fork & Pull Request Workflow](https://gist.github.com/Chaser324/ce0505fbed06b947d962)
@@ -0,0 +1,47 @@
1
+ /**
2
+ * build_schemas uses node API to read all schemas from the FS
3
+ * at build time and writes them out to a single schemas.js file for
4
+ * downstream consumption to avoid FS calls in the browser.
5
+ */
6
+ const fs = require("fs");
7
+ const JSONSchemasGenerator = require("./lib/js/esse/JSONSchemasGenerator").default;
8
+
9
+ // JS Modules
10
+
11
+ const generator = new JSONSchemasGenerator();
12
+ const { schemas, wrappedExamples, propertiesManifest, results } = generator;
13
+
14
+ if (process.env.BUILD_PYTHON_MODULES === "true") {
15
+ // PY Modules
16
+ fs.writeFileSync(
17
+ "./src/py/mat3ra/esse/data/examples.py",
18
+ ["import json", `EXAMPLES = json.loads(r'''${JSON.stringify(wrappedExamples)}''')`].join(
19
+ "\n",
20
+ ),
21
+ "utf8",
22
+ );
23
+ fs.writeFileSync(
24
+ "./src/py/mat3ra/esse/data/schemas.py",
25
+ ["import json", `SCHEMAS = json.loads(r'''${JSON.stringify(schemas)}''')`].join("\n"),
26
+ "utf8",
27
+ );
28
+ fs.writeFileSync(
29
+ "./src/py/mat3ra/esse/data/properties.py",
30
+ [
31
+ "import json",
32
+ `PROPERTIES_MANIFEST = json.loads(r'''${JSON.stringify(propertiesManifest)}''')`,
33
+ `RESULTS = json.loads(r'''${JSON.stringify(results)}''')`,
34
+ ].join("\n"),
35
+ "utf8",
36
+ );
37
+ }
38
+
39
+ if (process.env.BUILD_ASSETS !== "true") {
40
+ process.exit(0);
41
+ }
42
+
43
+ const subfolder = process.env.BUILD_PATH || "./docs/js/";
44
+ const skipMergeAllOff = process.env.SKIP_MERGE_ALLOF === "true";
45
+
46
+ generator.writeResolvedSchemas(subfolder, skipMergeAllOff);
47
+ generator.writeResolvedExamples(subfolder);
@@ -0,0 +1,3 @@
1
+ import compileTS from "./src/js/scripts/compileTs";
2
+
3
+ compileTS("./lib/js/schema", `./lib/js/types.ts`);
@@ -0,0 +1,10 @@
1
+ {
2
+ "name": "regression",
3
+ "categories": {
4
+ "tier1": "st",
5
+ "tier2": "det",
6
+ "tier3": "ml",
7
+ "type": "re"
8
+ },
9
+ "parameters": {}
10
+ }
@@ -0,0 +1,18 @@
1
+ {
2
+ "_id": "LCthJ6E2QabYCZqf4",
3
+ "application": {
4
+ "...": "include(../software/application.json)"
5
+ },
6
+ "model": {
7
+ "...": "include(../model.json)"
8
+ },
9
+ "name": "Band Structure",
10
+ "properties": [
11
+ "band_structure"
12
+ ],
13
+ "units": [
14
+ {
15
+ "...": "include(unit/execution.json)"
16
+ }
17
+ ]
18
+ }
@@ -0,0 +1,35 @@
1
+ {
2
+ "_id": "FPjAaKfuYAL7tiHbm",
3
+ "createdAt": "2018-11-19 06:41:46.877Z",
4
+ "creator": {
5
+ "...": "include(system/creator.json)"
6
+ },
7
+ "exabyteId": "qKtTzu9utCo6ac4n7",
8
+ "hash": "f4fd707d2e47c15f8d786cf159040954",
9
+ "isDefault": true,
10
+ "name": "workflow",
11
+ "owner": {
12
+ "...": "include(system/owner.json)"
13
+ },
14
+ "properties": [
15
+ "band_structure"
16
+ ],
17
+ "schemaVersion": "0.2.0",
18
+ "slug": "workflow",
19
+ "subworkflows": [
20
+ {
21
+ "...": "include(workflow/subworkflow.json)"
22
+ }
23
+ ],
24
+ "tags": [
25
+ "workflow"
26
+ ],
27
+ "units": [
28
+ {
29
+ "_id": "LCthJ6E2QabYCZqf4",
30
+ "flowchartId": "05c362dc27ff1bb98d16fd60",
31
+ "type": "subworkflow",
32
+ "name": "subworkflow unit"
33
+ }
34
+ ]
35
+ }
@@ -0,0 +1,5 @@
1
+ declare module "json-schema-deref-sync" {
2
+ import { JSONSchema7 } from "json-schema";
3
+
4
+ export default function deref(schema: JSONSchema, options: object): JSONSchema7;
5
+ }