summaryrefslogtreecommitdiff
path: root/lib/spack/spack/schema/upstreams.py
blob: e45d492d5fa58664e2c7839781dded04654efe95 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# Copyright 2013-2023 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)


#: Properties for inclusion in other schemas
properties = {
    "upstreams": {
        "type": "object",
        "default": {},
        "patternProperties": {
            r"\w[\w-]*": {
                "type": "object",
                "default": {},
                "additionalProperties": False,
                "properties": {
                    "install_tree": {"type": "string"},
                    "modules": {
                        "type": "object",
                        "properties": {"tcl": {"type": "string"}, "lmod": {"type": "string"}},
                    },
                },
            }
        },
    }
}

#: Full schema with metadata
schema = {
    "$schema": "http://json-schema.org/draft-07/schema#",
    "title": "Spack core configuration file schema",
    "type": "object",
    "additionalProperties": False,
    "properties": properties,
}