summaryrefslogtreecommitdiff
path: root/lib/spack/spack/schema/database_index.py
blob: 4b25b415a3225d41ec30cdf96c784086eb47904f (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
37
38
39
40
41
42
43
44
45
46
47
48
# Copyright 2013-2024 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)

"""Schema for database index.json file

.. literalinclude:: _spack_root/lib/spack/spack/schema/database_index.py
   :lines: 36-
"""
import spack.schema.spec

# spack.schema.spec.properties

#: Full schema with metadata
schema = {
    "$schema": "http://json-schema.org/draft-07/schema#",
    "title": "Spack spec schema",
    "type": "object",
    "required": ["database"],
    "additionalProperties": False,
    "properties": {
        "database": {
            "type": "object",
            "required": ["installs", "version"],
            "additionalProperties": False,
            "properties": {
                "installs": {
                    "type": "object",
                    "patternProperties": {
                        r"^[\w\d]{32}$": {
                            "type": "object",
                            "properties": {
                                "spec": spack.schema.spec.properties,
                                "path": {"oneOf": [{"type": "string"}, {"type": "null"}]},
                                "installed": {"type": "boolean"},
                                "ref_count": {"type": "integer", "minimum": 0},
                                "explicit": {"type": "boolean"},
                                "installation_time": {"type": "number"},
                            },
                        }
                    },
                },
                "version": {"type": "string"},
            },
        }
    },
}