├── .github └── workflows │ ├── mkdocs-deploy.yml │ ├── python-publish.yml │ └── python-test.yml ├── .gitignore ├── .vscode └── settings.json ├── CITATION.cff ├── LICENSE ├── README.md ├── docs ├── assets │ ├── .gitignore │ ├── favicon.png │ ├── levelsschema.png │ ├── nomad-logo.png │ ├── nomad-plugin-logo.png │ ├── use-built-in-schema-1.png │ └── use-built-in-schema-2.png ├── contact.md ├── explanation │ ├── data_model.md │ ├── levelsofschema.md │ └── schemas.md ├── how_to │ ├── develop.md │ ├── install.md │ ├── use_this_plugin.md │ └── use_this_plugin_old.md ├── index.md ├── main.py ├── reference │ ├── references.md │ ├── schemas.md │ ├── schemas │ │ ├── combinatorial.md │ │ ├── crystal_growth.md │ │ ├── epitaxy.md │ │ ├── general.md │ │ ├── solution │ │ │ └── general.md │ │ └── vapor_deposition │ │ │ ├── cvd │ │ │ ├── general.md │ │ │ └── movpe.md │ │ │ ├── general.md │ │ │ └── pvd │ │ │ ├── general.md │ │ │ ├── mbe.md │ │ │ ├── pld.md │ │ │ ├── sputtering.md │ │ │ └── thermal.md │ ├── solution.md │ └── vapor_depostion.md ├── stylesheets │ └── extra.css ├── theme │ └── partials │ │ └── header.html └── tutorial │ └── tutorial.md ├── mkdocs.yml ├── pyproject.toml ├── setup.py ├── src └── nomad_material_processing │ ├── __init__.py │ ├── combinatorial.py │ ├── crystal_growth.py │ ├── epitaxy.py │ ├── general.py │ ├── solution │ ├── __init__.py │ ├── general.py │ └── utils.py │ ├── utils.py │ └── vapor_deposition │ ├── __init__.py │ ├── cvd │ ├── __init__.py │ ├── general.py │ └── movpe.py │ ├── general.py │ └── pvd │ ├── __init__.py │ ├── general.py │ ├── mbe.py │ ├── pld.py │ ├── sputtering.py │ └── thermal.py └── tests ├── conftest.py ├── data ├── test_crystal_growth.archive.yaml ├── test_czochralski_process.archive.yaml ├── test_epitaxy.archive.yaml ├── test_metal_organic_vapor_phase_epitaxy.archive.yaml ├── test_molecular_beam_epitaxy.archive.yaml ├── test_physical_vapor_deposition.archive.yaml ├── test_pulsed_laser_deposition.archive.yaml ├── test_sample_deposition.archive.yaml ├── test_solution.archive.yaml ├── test_solution_component.archive.yaml ├── test_sputter_deposition.archive.yaml ├── test_substrate.archive.yaml ├── test_thermal_evaporation.archive.yaml ├── test_thin_film.archive.yaml ├── test_thin_film_stack.archive.yaml └── test_vapor_phase_epitaxy.archive.yaml ├── solution └── test_solution_schema.py └── test_schema.py /.github/workflows/mkdocs-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/.github/workflows/mkdocs-deploy.yml -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.github/workflows/python-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/.github/workflows/python-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/CITATION.cff -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/README.md -------------------------------------------------------------------------------- /docs/assets/.gitignore: -------------------------------------------------------------------------------- 1 | nomad-oasis*.zip -------------------------------------------------------------------------------- /docs/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/docs/assets/favicon.png -------------------------------------------------------------------------------- /docs/assets/levelsschema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/docs/assets/levelsschema.png -------------------------------------------------------------------------------- /docs/assets/nomad-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/docs/assets/nomad-logo.png -------------------------------------------------------------------------------- /docs/assets/nomad-plugin-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/docs/assets/nomad-plugin-logo.png -------------------------------------------------------------------------------- /docs/assets/use-built-in-schema-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/docs/assets/use-built-in-schema-1.png -------------------------------------------------------------------------------- /docs/assets/use-built-in-schema-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/docs/assets/use-built-in-schema-2.png -------------------------------------------------------------------------------- /docs/contact.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/docs/contact.md -------------------------------------------------------------------------------- /docs/explanation/data_model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/docs/explanation/data_model.md -------------------------------------------------------------------------------- /docs/explanation/levelsofschema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/docs/explanation/levelsofschema.md -------------------------------------------------------------------------------- /docs/explanation/schemas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/docs/explanation/schemas.md -------------------------------------------------------------------------------- /docs/how_to/develop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/docs/how_to/develop.md -------------------------------------------------------------------------------- /docs/how_to/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/docs/how_to/install.md -------------------------------------------------------------------------------- /docs/how_to/use_this_plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/docs/how_to/use_this_plugin.md -------------------------------------------------------------------------------- /docs/how_to/use_this_plugin_old.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/docs/how_to/use_this_plugin_old.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/main.py: -------------------------------------------------------------------------------- 1 | from nomad_docs import define_env # noqa: F401 2 | -------------------------------------------------------------------------------- /docs/reference/references.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/docs/reference/references.md -------------------------------------------------------------------------------- /docs/reference/schemas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/docs/reference/schemas.md -------------------------------------------------------------------------------- /docs/reference/schemas/combinatorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/docs/reference/schemas/combinatorial.md -------------------------------------------------------------------------------- /docs/reference/schemas/crystal_growth.md: -------------------------------------------------------------------------------- 1 | {{ metainfo_package('nomad_material_processing.crystal_growth') }} -------------------------------------------------------------------------------- /docs/reference/schemas/epitaxy.md: -------------------------------------------------------------------------------- 1 | {{ metainfo_package('nomad_material_processing.epitaxy') }} -------------------------------------------------------------------------------- /docs/reference/schemas/general.md: -------------------------------------------------------------------------------- 1 | {{ metainfo_package('nomad_material_processing.general') }} -------------------------------------------------------------------------------- /docs/reference/schemas/solution/general.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/docs/reference/schemas/solution/general.md -------------------------------------------------------------------------------- /docs/reference/schemas/vapor_deposition/cvd/general.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/docs/reference/schemas/vapor_deposition/cvd/general.md -------------------------------------------------------------------------------- /docs/reference/schemas/vapor_deposition/cvd/movpe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/docs/reference/schemas/vapor_deposition/cvd/movpe.md -------------------------------------------------------------------------------- /docs/reference/schemas/vapor_deposition/general.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/docs/reference/schemas/vapor_deposition/general.md -------------------------------------------------------------------------------- /docs/reference/schemas/vapor_deposition/pvd/general.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/docs/reference/schemas/vapor_deposition/pvd/general.md -------------------------------------------------------------------------------- /docs/reference/schemas/vapor_deposition/pvd/mbe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/docs/reference/schemas/vapor_deposition/pvd/mbe.md -------------------------------------------------------------------------------- /docs/reference/schemas/vapor_deposition/pvd/pld.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/docs/reference/schemas/vapor_deposition/pvd/pld.md -------------------------------------------------------------------------------- /docs/reference/schemas/vapor_deposition/pvd/sputtering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/docs/reference/schemas/vapor_deposition/pvd/sputtering.md -------------------------------------------------------------------------------- /docs/reference/schemas/vapor_deposition/pvd/thermal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/docs/reference/schemas/vapor_deposition/pvd/thermal.md -------------------------------------------------------------------------------- /docs/reference/solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/docs/reference/solution.md -------------------------------------------------------------------------------- /docs/reference/vapor_depostion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/docs/reference/vapor_depostion.md -------------------------------------------------------------------------------- /docs/stylesheets/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/docs/stylesheets/extra.css -------------------------------------------------------------------------------- /docs/theme/partials/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/docs/theme/partials/header.html -------------------------------------------------------------------------------- /docs/tutorial/tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/docs/tutorial/tutorial.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/setup.py -------------------------------------------------------------------------------- /src/nomad_material_processing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/src/nomad_material_processing/__init__.py -------------------------------------------------------------------------------- /src/nomad_material_processing/combinatorial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/src/nomad_material_processing/combinatorial.py -------------------------------------------------------------------------------- /src/nomad_material_processing/crystal_growth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/src/nomad_material_processing/crystal_growth.py -------------------------------------------------------------------------------- /src/nomad_material_processing/epitaxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/src/nomad_material_processing/epitaxy.py -------------------------------------------------------------------------------- /src/nomad_material_processing/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/src/nomad_material_processing/general.py -------------------------------------------------------------------------------- /src/nomad_material_processing/solution/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/src/nomad_material_processing/solution/__init__.py -------------------------------------------------------------------------------- /src/nomad_material_processing/solution/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/src/nomad_material_processing/solution/general.py -------------------------------------------------------------------------------- /src/nomad_material_processing/solution/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/src/nomad_material_processing/solution/utils.py -------------------------------------------------------------------------------- /src/nomad_material_processing/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/src/nomad_material_processing/utils.py -------------------------------------------------------------------------------- /src/nomad_material_processing/vapor_deposition/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/src/nomad_material_processing/vapor_deposition/__init__.py -------------------------------------------------------------------------------- /src/nomad_material_processing/vapor_deposition/cvd/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/src/nomad_material_processing/vapor_deposition/cvd/__init__.py -------------------------------------------------------------------------------- /src/nomad_material_processing/vapor_deposition/cvd/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/src/nomad_material_processing/vapor_deposition/cvd/general.py -------------------------------------------------------------------------------- /src/nomad_material_processing/vapor_deposition/cvd/movpe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/src/nomad_material_processing/vapor_deposition/cvd/movpe.py -------------------------------------------------------------------------------- /src/nomad_material_processing/vapor_deposition/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/src/nomad_material_processing/vapor_deposition/general.py -------------------------------------------------------------------------------- /src/nomad_material_processing/vapor_deposition/pvd/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/src/nomad_material_processing/vapor_deposition/pvd/__init__.py -------------------------------------------------------------------------------- /src/nomad_material_processing/vapor_deposition/pvd/general.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/src/nomad_material_processing/vapor_deposition/pvd/general.py -------------------------------------------------------------------------------- /src/nomad_material_processing/vapor_deposition/pvd/mbe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/src/nomad_material_processing/vapor_deposition/pvd/mbe.py -------------------------------------------------------------------------------- /src/nomad_material_processing/vapor_deposition/pvd/pld.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/src/nomad_material_processing/vapor_deposition/pvd/pld.py -------------------------------------------------------------------------------- /src/nomad_material_processing/vapor_deposition/pvd/sputtering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/src/nomad_material_processing/vapor_deposition/pvd/sputtering.py -------------------------------------------------------------------------------- /src/nomad_material_processing/vapor_deposition/pvd/thermal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/src/nomad_material_processing/vapor_deposition/pvd/thermal.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/data/test_crystal_growth.archive.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/tests/data/test_crystal_growth.archive.yaml -------------------------------------------------------------------------------- /tests/data/test_czochralski_process.archive.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/tests/data/test_czochralski_process.archive.yaml -------------------------------------------------------------------------------- /tests/data/test_epitaxy.archive.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/tests/data/test_epitaxy.archive.yaml -------------------------------------------------------------------------------- /tests/data/test_metal_organic_vapor_phase_epitaxy.archive.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/tests/data/test_metal_organic_vapor_phase_epitaxy.archive.yaml -------------------------------------------------------------------------------- /tests/data/test_molecular_beam_epitaxy.archive.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/tests/data/test_molecular_beam_epitaxy.archive.yaml -------------------------------------------------------------------------------- /tests/data/test_physical_vapor_deposition.archive.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/tests/data/test_physical_vapor_deposition.archive.yaml -------------------------------------------------------------------------------- /tests/data/test_pulsed_laser_deposition.archive.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/tests/data/test_pulsed_laser_deposition.archive.yaml -------------------------------------------------------------------------------- /tests/data/test_sample_deposition.archive.yaml: -------------------------------------------------------------------------------- 1 | data: 2 | m_def: nomad_material_processing.SampleDeposition 3 | -------------------------------------------------------------------------------- /tests/data/test_solution.archive.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/tests/data/test_solution.archive.yaml -------------------------------------------------------------------------------- /tests/data/test_solution_component.archive.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/tests/data/test_solution_component.archive.yaml -------------------------------------------------------------------------------- /tests/data/test_sputter_deposition.archive.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/tests/data/test_sputter_deposition.archive.yaml -------------------------------------------------------------------------------- /tests/data/test_substrate.archive.yaml: -------------------------------------------------------------------------------- 1 | data: 2 | m_def: nomad_material_processing.Substrate 3 | -------------------------------------------------------------------------------- /tests/data/test_thermal_evaporation.archive.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/tests/data/test_thermal_evaporation.archive.yaml -------------------------------------------------------------------------------- /tests/data/test_thin_film.archive.yaml: -------------------------------------------------------------------------------- 1 | data: 2 | m_def: nomad_material_processing.ThinFilm 3 | -------------------------------------------------------------------------------- /tests/data/test_thin_film_stack.archive.yaml: -------------------------------------------------------------------------------- 1 | data: 2 | m_def: nomad_material_processing.ThinFilmStack 3 | -------------------------------------------------------------------------------- /tests/data/test_vapor_phase_epitaxy.archive.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/tests/data/test_vapor_phase_epitaxy.archive.yaml -------------------------------------------------------------------------------- /tests/solution/test_solution_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/tests/solution/test_solution_schema.py -------------------------------------------------------------------------------- /tests/test_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FAIRmat-NFDI/nomad-material-processing/HEAD/tests/test_schema.py --------------------------------------------------------------------------------