spdx_tools.spdx.jsonschema.json_property

 1# SPDX-FileCopyrightText: 2022 spdx contributors
 2#
 3# SPDX-License-Identifier: Apache-2.0
 4from enum import Enum
 5
 6
 7class JsonProperty(Enum):
 8    """
 9    Parent class for all json property classes. Not meant to be instantiated directly, only to have a common parent
10    type that can be used in type hints.
11    In general, all the child enums list the properties of the corresponding objects from the json schema.
12    """
13
14    pass
class JsonProperty(enum.Enum):
 8class JsonProperty(Enum):
 9    """
10    Parent class for all json property classes. Not meant to be instantiated directly, only to have a common parent
11    type that can be used in type hints.
12    In general, all the child enums list the properties of the corresponding objects from the json schema.
13    """
14
15    pass

Parent class for all json property classes. Not meant to be instantiated directly, only to have a common parent type that can be used in type hints. In general, all the child enums list the properties of the corresponding objects from the json schema.

Inherited Members
enum.Enum
name
value