spdx_tools.spdx.jsonschema.creation_info_properties

 1# SPDX-FileCopyrightText: 2022 spdx contributors
 2#
 3# SPDX-License-Identifier: Apache-2.0
 4from enum import auto
 5
 6from spdx_tools.spdx.jsonschema.json_property import JsonProperty
 7
 8
 9class CreationInfoProperty(JsonProperty):
10    CREATED = auto()
11    CREATORS = auto()
12    LICENSE_LIST_VERSION = auto()
13    COMMENT = auto()
class CreationInfoProperty(spdx_tools.spdx.jsonschema.json_property.JsonProperty):
10class CreationInfoProperty(JsonProperty):
11    CREATED = auto()
12    CREATORS = auto()
13    LICENSE_LIST_VERSION = auto()
14    COMMENT = auto()

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.

LICENSE_LIST_VERSION = <CreationInfoProperty.LICENSE_LIST_VERSION: 3>
Inherited Members
enum.Enum
name
value